diff --git a/.Rbuildignore b/.Rbuildignore index 33cc41eb..91fb891d 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -3,3 +3,4 @@ ^_pkgdown\.yml$ ^docs$ ^pkgdown$ +^\.github$ diff --git a/.github/.gitignore b/.github/.gitignore new file mode 100644 index 00000000..2d19fc76 --- /dev/null +++ b/.github/.gitignore @@ -0,0 +1 @@ +*.html diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml new file mode 100644 index 00000000..d5676e77 --- /dev/null +++ b/.github/workflows/pkgdown.yaml @@ -0,0 +1,52 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [develop] + pull_request: + branches: [develop] + release: + types: [published] + workflow_dispatch: + +name: pkgdown + +jobs: + pkgdown: + runs-on: ubuntu-latest + # Only restrict concurrency for non-PR jobs + concurrency: + group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/checkout@v2 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::pkgdown, local::. + needs: website + + - name: Build site + run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) + shell: Rscript {0} + + - name: Deploy to GitHub pages 🚀 + if: github.event_name != 'pull_request' + uses: JamesIves/github-pages-deploy-action@4.1.4 + with: + clean: false + branch: gh-pages + folder: docs + +url: https://usepa.github.io/TADA/ + +template: + bootstrap: 5 + bootswatch: cerulean \ No newline at end of file diff --git a/DESCRIPTION b/DESCRIPTION index 821db8eb..05a90a77 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -24,7 +24,9 @@ Imports: stringr, utils, RColorBrewer, - stats + stats, + tidyverse, + lubridate Depends: R (>= 2.10) Suggests: @@ -40,3 +42,4 @@ Suggests: VignetteBuilder: knitr, rmarkdown Language: en-US Config/testthat/edition: 3 +URL: https://usepa.github.io/TADA/ diff --git a/NAMESPACE b/NAMESPACE index 062466f1..38a53e0b 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -23,6 +23,7 @@ export(PotentialDuplicateRowID) export(QAPPDocAvailable) export(QAPPapproved) export(RemoveEmptyColumns) +export(TADABigdataRetrieval) export(TADAdataRetrieval) export(WQXTargetUnits) export(readWQPwebservice) diff --git a/R/DataDiscoveryRetrieval.R b/R/DataDiscoveryRetrieval.R index f1dda227..593fb08c 100644 --- a/R/DataDiscoveryRetrieval.R +++ b/R/DataDiscoveryRetrieval.R @@ -2,16 +2,25 @@ #' #' Retrieve data from Water Quality Portal (WQP) and output a TADA-compatible #' dataset. +#' +#' Keep in mind that all the query filters for the WQP work as an AND +#' but within the fields there are ORs. So for example, +#' characteristics – if you choose pH & DO – it’s an OR. Similarly, if you +#' choose VA and IL, it’s an OR. But the combo of fields are ANDs. +#' Such as State/VA AND Characteristic/DO". +#' "Characteristic" and "Characteristic Group" also work as an AND. #' #' @param statecode Code that identifies a state #' @param startDate Start Date #' @param countycode Code that identifies a county #' @param siteid Unique monitoring station identifier #' @param siteType Type of waterbody -#' @param characteristicName Name of characteristic +#' @param characteristicName Name of parameter +#' @param ActivityMediaName Sampling substrate such as water, air, or sediment #' @param endDate End Date #' #' @return TADA-compatible dataframe +#' #' @export #' @@ -21,6 +30,7 @@ TADAdataRetrieval <- function(statecode = "null", siteid = "null", siteType = "null", characteristicName = "null", + ActivityMediaName = "null", endDate = "null" ) { @@ -62,6 +72,12 @@ TADAdataRetrieval <- function(statecode = "null", WQPquery <- c(WQPquery, characteristicName = characteristicName) } + if (length(ActivityMediaName)>1) { + WQPquery <- c(WQPquery, ActivityMediaName = list(ActivityMediaName)) + } else if (ActivityMediaName != "null") { + WQPquery <- c(WQPquery, ActivityMediaName = ActivityMediaName) + } + if (length(endDate)>1) { WQPquery <- c(WQPquery, endDate = list(endDate)) } else if (endDate != "null") { @@ -281,3 +297,184 @@ TADAprofileCheck <- function(.data) { stop("The dataframe does not contain the required fields to use TADA. Use either the full physical/chemical profile downloaded from WQP or download the TADA profile template available on the EPA TADA webpage.") } } + + + +#' Large WQP data pulls using dataRetrieval for all data from all sites in the contiguous United States. +#' +#' This function uses the WQP summary service to limit the amount +#' downloaded to only relevant data. For large data sets, that can +#' save a lot of time and ultimately reduce the complexity of subsequent +#' data processing. +#' +#' This function will join data from multiple WQP profiles and output a +#' TADA-compatible dataset. +#' +#' @param startDate Start Date YYYY-MM-DD format, for example, "1995-01-01" +#' @param endDate end date in YYYY-MM-DD format, for example, "2020-12-31" +#' @param characteristicName Name of water quality parameter +#' @param siteType Name of water body type (e.g., "Stream", "Lake, Reservoir, Impoundment") +#' +#' @return TADA-compatible dataframe +#' +#' @export +#' + +TADABigdataRetrieval <- function(startDate = "null", + endDate = "null", + characteristicName = "null", + siteType = "null" +) { + + startDate_Low = lubridate::ymd(startDate) + startYearLo = lubridate::year(startDate_Low) + + endDate_High = lubridate::ymd(endDate) + startYearHi = lubridate::year(endDate_High) + + if (length(characteristicName)>1) { + characteristicName = list(characteristicName) + } else if (characteristicName != "null") { + characteristicName = characteristicName + } + + if (length(siteType)>1) { + siteType = list(siteType) + } else if (siteType != "null") { + siteType = siteType + } + + state_cd_cont = utils::read.csv(file = "inst/extdata/statecode.csv") + + for(i in seq_len(nrow(state_cd_cont))){ + + state_cd = as.numeric(state_cd_cont$STATE[i]) + state_nm = state_cd_cont$STUSAB[i] + + df_summary = dataRetrieval::readWQPsummary(statecode = state_cd, + characteristicName = characteristicName, + siteType = siteType, + startDate = startDate) + + sites = df_summary %>% + dplyr::filter(YearSummarized >= startYearLo, + YearSummarized <= startYearHi) + + siteid_all = unique(sites$MonitoringLocationIdentifier) + + if(length(siteid_all) > 0) { + + l=length(siteid_all) #len(sites) + g=250 #grouping size + nl=ceiling(l/g) #number of queries + + i=0 + j=0 + k=0 + + while (i < nl) { + + j=i*g + k=j+g-1 + + if (k>l){k=l} + sites=siteid_all[j:k] + + results.DR <- dataRetrieval::readWQPdata(siteid = sites, + characteristicName = characteristicName) + #startDate = startDate) + + narrow.DR <- dataRetrieval::readWQPdata(siteid = sites, + characteristicName = characteristicName, + dataProfile = "narrowResult") + + sites.DR <- dataRetrieval::whatWQPsites(siteid = sites, + characteristicName = characteristicName) + + #projects.DR <- dataRetrieval::readWQPdata(siteid = siteid, + #characteristicName = characteristicName, + #service = "Project") + + #}) + + # Join station data to full phys/chem (results.DR) + join1 <- results.DR %>% + # join stations to results + dplyr::left_join(sites.DR, by = "MonitoringLocationIdentifier") %>% + # remove ".x" suffix from column names + dplyr::rename_at(dplyr::vars(ends_with(".x")), ~ stringr::str_replace(., "\\..$", "")) %>% + # remove columns with ".y" suffix + dplyr::select_at(dplyr::vars(-ends_with(".y"))) + + # Join Speciation column from narrow to full profile + join2 <- join1 %>% + dplyr::left_join(dplyr::select( + narrow.DR, ActivityIdentifier, MonitoringLocationIdentifier, + CharacteristicName, ResultMeasureValue, + MethodSpecificationName + ), + by = c( + "ActivityIdentifier", "MonitoringLocationIdentifier", + "CharacteristicName", "ResultMeasureValue" + ) + ) + + join2$ResultMeasureValue = as.character(join2$ResultMeasureValue) + + if (i==0){ + df = join2 } + else { + join2 = rbind(df, join2) + } + print(j) + print(k) + + i = i+1 + } + } + + if(nrow(join2) > 0){ + + ##### + #need to edit below if temporary rds files do not go away + #may be able to delete below + #https://stackoverflow.com/questions/47626331/saving-and-retrieving-temp-files-in-r-packages + ##### + + #original + #saveRDS(df_state, file = paste0(state_nm, "_raw_data.rds")) + + tempfilename = paste0(state_nm, "_raw_data.rds") + file.path(tempdir(), saveRDS(join2, file = paste0("inst/tempdata/", tempfilename))) + + } + } + all_data <- data.frame() + for(state in state_cd_cont$STUSAB){ + allstates_df <- tryCatch({ + ##### + #need to edit line below if rds files do not go away + ##### + + #original below + #readRDS(paste0(state, "_raw_data.rds")) + + readRDS(paste0("inst/tempdata/", tempfilename)) + }) + + if(nrow(allstates_df) > 0){ + all_data <- bind_rows(all_data, allstates_df) + } + + } + + finalprofile = all_data %>% + dplyr::filter(ActivityStartDate <= endDate, + ActivityStartDate >= startDate) + + finalprofile2 = autoclean(finalprofile) + #not sure if above is working correctly, thousands of "duplicated" rows are removed + # you will still need to filter on activity media subdivision now + + return(finalprofile2) +} diff --git a/R/Transformations.R b/R/Transformations.R index f9a8002c..7f17a72d 100644 --- a/R/Transformations.R +++ b/R/Transformations.R @@ -331,7 +331,7 @@ WQXTargetUnits <- function(.data, transform = TRUE) { #' #' @return When transform = FALSE and flag = TRUE, Harmonization Reference Table #' columns are appended to the dataset only. When transform = TRUE and flag = TRUE, -#' Harmoinzation columns are appended to the dataset and transformations are +#' Harmonization columns are appended to the dataset and transformations are #' executed. When transform = TRUE and flag = FALSE, transformations are executed #' only. When transform = FALSE and flag = FALSE, an error is returned (function #' would return the input dataframe unchanged if input was allowed). diff --git a/_pkgdown.yml b/_pkgdown.yml index 698e693f..8c983c4d 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -1,4 +1,4 @@ -url: https://pkgdown.r-lib.org +url: https://usepa.github.io/TADA/ template: bootstrap: 5 - bootswatch: cerulean + diff --git a/inst/extdata/statecode.csv b/inst/extdata/statecode.csv new file mode 100644 index 00000000..6a10e748 --- /dev/null +++ b/inst/extdata/statecode.csv @@ -0,0 +1,50 @@ +"STATE","STATE_NAME","STUSAB","STATENS" +"01","Alabama","AL","01779775" +"04","Arizona","AZ","01779777" +"05","Arkansas","AR","00068085" +"06","California","CA","01779778" +"08","Colorado","CO","01779779" +"09","Connecticut","CT","01779780" +"10","Delaware","DE","01779781" +"11","District of Columbia","DC","01702382" +"12","Florida","FL","00294478" +"13","Georgia","GA","01705317" +"16","Idaho","ID","01779783" +"17","Illinois","IL","01779784" +"18","Indiana","IN","00448508" +"19","Iowa","IA","01779785" +"20","Kansas","KS","00481813" +"21","Kentucky","KY","01779786" +"22","Louisiana","LA","01629543" +"23","Maine","ME","01779787" +"24","Maryland","MD","01714934" +"25","Massachusetts","MA","00606926" +"26","Michigan","MI","01779789" +"27","Minnesota","MN","00662849" +"28","Mississippi","MS","01779790" +"29","Missouri","MO","01779791" +"30","Montana","MT","00767982" +"31","Nebraska","NE","01779792" +"32","Nevada","NV","01779793" +"33","New Hampshire","NH","01779794" +"34","New Jersey","NJ","01779795" +"35","New Mexico","NM","00897535" +"36","New York","NY","01779796" +"37","North Carolina","NC","01027616" +"38","North Dakota","ND","01779797" +"39","Ohio","OH","01085497" +"40","Oklahoma","OK","01102857" +"41","Oregon","OR","01155107" +"42","Pennsylvania","PA","01779798" +"44","Rhode Island","RI","01219835" +"45","South Carolina","SC","01779799" +"46","South Dakota","SD","01785534" +"47","Tennessee","TN","01325873" +"48","Texas","TX","01779801" +"49","Utah","UT","01455989" +"50","Vermont","VT","01779802" +"51","Virginia","VA","01779803" +"53","Washington","WA","01779804" +"54","West Virginia","WV","01779805" +"55","Wisconsin","WI","01779806" +"56","Wyoming","WY","01779807" diff --git a/man/HarmonizeData.Rd b/man/HarmonizeData.Rd index 7e1ab4ce..00c730c9 100644 --- a/man/HarmonizeData.Rd +++ b/man/HarmonizeData.Rd @@ -26,7 +26,7 @@ Reference Table to the dataframe. Default is flag = TRUE.} \value{ When transform = FALSE and flag = TRUE, Harmonization Reference Table columns are appended to the dataset only. When transform = TRUE and flag = TRUE, -Harmoinzation columns are appended to the dataset and transformations are +Harmonization columns are appended to the dataset and transformations are executed. When transform = TRUE and flag = FALSE, transformations are executed only. When transform = FALSE and flag = FALSE, an error is returned (function would return the input dataframe unchanged if input was allowed). diff --git a/man/TADABigdataRetrieval.Rd b/man/TADABigdataRetrieval.Rd new file mode 100644 index 00000000..b0703336 --- /dev/null +++ b/man/TADABigdataRetrieval.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/DataDiscoveryRetrieval.R +\name{TADABigdataRetrieval} +\alias{TADABigdataRetrieval} +\title{Large WQP data pulls using dataRetrieval for all data from all sites in the contiguous United States. + +This function uses the WQP summary service to limit the amount +downloaded to only relevant data. For large data sets, that can +save a lot of time and ultimately reduce the complexity of subsequent +data processing.} +\usage{ +TADABigdataRetrieval( + startDate = "null", + endDate = "null", + characteristicName = "null", + siteType = "null" +) +} +\arguments{ +\item{startDate}{Start Date YYYY-MM-DD format, for example, "1995-01-01"} + +\item{endDate}{end date in YYYY-MM-DD format, for example, "2020-12-31"} + +\item{characteristicName}{Name of water quality parameter} + +\item{siteType}{Name of water body type (e.g., "Stream", "Lake, Reservoir, Impoundment")} +} +\value{ +TADA-compatible dataframe +} +\description{ +This function will join data from multiple WQP profiles and output a +TADA-compatible dataset. +} diff --git a/man/TADAdataRetrieval.Rd b/man/TADAdataRetrieval.Rd index 5214bd00..4d654e9b 100644 --- a/man/TADAdataRetrieval.Rd +++ b/man/TADAdataRetrieval.Rd @@ -11,6 +11,7 @@ TADAdataRetrieval( siteid = "null", siteType = "null", characteristicName = "null", + ActivityMediaName = "null", endDate = "null" ) } @@ -25,7 +26,9 @@ TADAdataRetrieval( \item{siteType}{Type of waterbody} -\item{characteristicName}{Name of characteristic} +\item{characteristicName}{Name of parameter} + +\item{ActivityMediaName}{Sampling substrate such as water, air, or sediment} \item{endDate}{End Date} } @@ -36,3 +39,11 @@ TADA-compatible dataframe Retrieve data from Water Quality Portal (WQP) and output a TADA-compatible dataset. } +\details{ +Keep in mind that all the query filters for the WQP work as an AND +but within the fields there are ORs. So for example, +characteristics – if you choose pH & DO – it’s an OR. Similarly, if you +choose VA and IL, it’s an OR. But the combo of fields are ANDs. +Such as State/VA AND Characteristic/DO". +"Characteristic" and "Characteristic Group" also work as an AND. +} diff --git a/tests/testdata/DE_raw_data.rds b/tests/testdata/DE_raw_data.rds new file mode 100644 index 00000000..f8d4a450 Binary files /dev/null and b/tests/testdata/DE_raw_data.rds differ diff --git a/tests/testdata/FL_raw_data.rds b/tests/testdata/FL_raw_data.rds new file mode 100644 index 00000000..82b6af85 Binary files /dev/null and b/tests/testdata/FL_raw_data.rds differ diff --git a/tests/testdata/LakeWaterT_AllUS_Jan2000toJuly2022.csv b/tests/testdata/LakeWaterT_AllUS_Jan2000toJuly2022.csv new file mode 100644 index 00000000..106a7658 --- /dev/null +++ b/tests/testdata/LakeWaterT_AllUS_Jan2000toJuly2022.csv @@ -0,0 +1,14238 @@ +OrganizationIdentifier,OrganizationFormalName,ActivityIdentifier,ActivityTypeCode,ActivityMediaName,ActivityMediaSubdivisionName,ActivityStartDate,ActivityStartTime.Time,ActivityStartTime.TimeZoneCode,ActivityEndDate,ActivityEndTime.Time,ActivityEndTime.TimeZoneCode,ActivityDepthHeightMeasure.MeasureValue,ActivityDepthHeightMeasure.MeasureUnitCode,ActivityDepthAltitudeReferencePointText,ActivityTopDepthHeightMeasure.MeasureValue,ActivityTopDepthHeightMeasure.MeasureUnitCode,ActivityBottomDepthHeightMeasure.MeasureValue,ActivityBottomDepthHeightMeasure.MeasureUnitCode,ProjectIdentifier,ActivityConductingOrganizationText,MonitoringLocationIdentifier,ActivityCommentText,SampleAquifer,HydrologicCondition,HydrologicEvent,SampleCollectionMethod.MethodIdentifier,SampleCollectionMethod.MethodIdentifierContext,SampleCollectionMethod.MethodName,SampleCollectionEquipmentName,ResultDetectionConditionText,CharacteristicName,ResultSampleFractionText,ResultMeasureValue,ResultMeasureValue.Original,TADA.ResultMeasureValue.Flag,ResultMeasure.MeasureUnitCode,MeasureQualifierCode,ResultStatusIdentifier,StatisticalBaseCode,ResultValueTypeName,ResultWeightBasisText,ResultTimeBasisText,ResultTemperatureBasisText,ResultParticleSizeBasisText,PrecisionValue,ResultCommentText,USGSPCode,ResultDepthHeightMeasure.MeasureValue,ResultDepthHeightMeasure.MeasureUnitCode,ResultDepthAltitudeReferencePointText,SubjectTaxonomicName,SampleTissueAnatomyName,ResultAnalyticalMethod.MethodIdentifier,ResultAnalyticalMethod.MethodIdentifierContext,ResultAnalyticalMethod.MethodName,MethodDescriptionText,LaboratoryName,AnalysisStartDate,ResultLaboratoryCommentText,DetectionQuantitationLimitTypeName,DetectionQuantitationLimitMeasure.MeasureValue,DetectionLimitMeasureValue.Original,TADA.DetectionLimitMeasureValue.Flag,DetectionQuantitationLimitMeasure.MeasureUnitCode,PreparationStartDate,ProviderName,ActivityStartDateTime,ActivityEndDateTime,MonitoringLocationName,MonitoringLocationTypeName,MonitoringLocationDescriptionText,HUCEightDigitCode,DrainageAreaMeasure.MeasureValue,DrainageAreaMeasure.MeasureUnitCode,ContributingDrainageAreaMeasure.MeasureValue,ContributingDrainageAreaMeasure.MeasureUnitCode,LatitudeMeasure,LongitudeMeasure,SourceMapScaleNumeric,HorizontalAccuracyMeasure.MeasureValue,HorizontalAccuracyMeasure.MeasureUnitCode,HorizontalCollectionMethodName,HorizontalCoordinateReferenceSystemDatumName,VerticalMeasure.MeasureValue,VerticalMeasure.MeasureUnitCode,VerticalAccuracyMeasure.MeasureValue,VerticalAccuracyMeasure.MeasureUnitCode,VerticalCollectionMethodName,VerticalCoordinateReferenceSystemDatumName,CountryCode,StateCode,CountyCode,AquiferName,LocalAqfrName,FormationTypeText,AquiferTypeName,ConstructionDateText,WellDepthMeasure.MeasureValue,WellDepthMeasure.MeasureUnitCode,WellHoleDepthMeasure.MeasureValue,WellHoleDepthMeasure.MeasureUnitCode,MethodSpecificationName +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20100915144104^01,Field Msr/Obs,WATER,NA,9/15/2010,14:41:00,MDT,9/16/2010,9:47:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0915101441 Organization ActivityID=YELL_1A_20100915144104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 20:41,9/16/2010 15:47,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20170802110802^01,Field Msr/Obs,WATER,NA,8/2/2017,11:08:00,MDT,8/3/2017,7:08:00,MDT,1.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0802171108 Organization ActivityID=YELL_YSL_058_20170802110802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:08,8/3/2017 13:08,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20150806113206^01,Field Msr/Obs,WATER,NA,8/6/2015,11:32:00,MDT,8/7/2015,7:16:00,MDT,41.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,No Fish Orig ID=0806151132 Organization ActivityID=YELL_YSL_059_20150806113206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:32,8/7/2015 13:16,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20140802105401^01,Field Msr/Obs,WATER,NA,8/2/2014,10:54:00,MDT,8/3/2014,7:59:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Small mesh 0.75 inches towards shore Orig ID=0802141054 Organization ActivityID=YELL_YSL_012_20140802105401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 16:54,8/3/2014 13:59,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20140807114303^01,Field Msr/Obs,WATER,NA,8/7/2014,11:43:00,MDT,8/8/2014,9:01:00,MDT,9.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0807141143 Organization ActivityID=YELL_YSL_153_20140807114303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:43,8/8/2014 15:01,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20190805102502^01,Field Msr/Obs,WATER,NA,8/5/2019,10:25:00,MDT,8/6/2019,7:11:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,large end to shore Organization ActivityID=YELL_YSL_168_20190805102502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 16:25,8/6/2019 13:11,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20170806100403^01,Field Msr/Obs,WATER,NA,8/6/2017,10:04:00,MDT,8/7/2017,9:04:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0806171004 Organization ActivityID=YELL_YSL_089_20170806100403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:04,8/7/2017 15:04,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20180801101705^01,Field Msr/Obs,WATER,NA,8/1/2018,10:17:00,MDT,8/2/2018,8:41:00,MDT,11,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,0.75 to Shore Orig ID=0801181017 Organization ActivityID=YELL_YSL_025_20180801101705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:17,8/2/2018 14:41,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20190803123601^01,Field Msr/Obs,WATER,NA,8/3/2019,12:36:00,MDT,8/4/2019,9:14:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,small to shore Organization ActivityID=YELL_YSL_003_20190803123601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 18:36,8/4/2019 15:14,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20180807112501^01,Field Msr/Obs,WATER,NA,8/7/2018,11:25:00,MDT,8/8/2018,8:43:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Organization ActivityID=YELL_YSL_210_20180807112501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:25,8/8/2018 14:43,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20150807122304^01,Field Msr/Obs,WATER,NA,8/7/2015,12:23:00,MDT,8/8/2015,8:54:00,MDT,13.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807151223 Organization ActivityID=YELL_YSL_029_20150807122304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.1,14.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 18:23,8/8/2015 14:54,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_202008010851_00^01,Field Msr/Obs,WATER,NA,8/1/2020,8:51:00,MDT,8/2/2020,7:33:00,MDT,39.45,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,"Activity Net, Buoy, Start/End UTMs: Small ETS|2025|20|553596|4906651|553678|4906664 Organization ActivityID=YELL_YSL_115_202008010851_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 14:51,8/2/2020 13:33,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_068_20100818173501^01,Field Msr/Obs,WATER,NA,8/18/2010,17:35:00,MDT,8/19/2010,8:38:00,MDT,4.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_068,Orig ID=0818101735 Organization ActivityID=YELL_YSL_068_20100818173501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 23:35,8/19/2010 14:38,Yellowstone Lake Shoreline KM 68,Lake,This station is located in the main basin in region 3. It is found along the east shore approximately 1 km south of Steamboat Point.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_106_20100803170003^01,Field Msr/Obs,WATER,NA,8/3/2010,17:00:00,MDT,8/4/2010,10:12:00,MDT,18.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_106,Orig ID=0803101700 Organization ActivityID=YELL_YSL_106_20100803170003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 23:00,8/4/2010 16:12,Yellowstone Lake Shoreline KM 106,Lake,This station is located in the South Arm of Yellowstone Lake along the east shore approximately one fourth the way between the main lake basin and the non-motorized zone.,10070001,NA,NA,NA,NA,44.3777623,-110.2979164,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20180803105306^01,Field Msr/Obs,WATER,NA,8/3/2018,10:53:00,MDT,8/4/2018,7:33:00,MDT,39.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Organization ActivityID=YELL_YSL_052_20180803105306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:53,8/4/2018 13:33,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20110809091501^01,Field Msr/Obs,WATER,NA,8/9/2011,9:15:00,MDT,8/10/2011,9:26:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0809110915 Organization ActivityID=YELL_YSL_153_20110809091501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 15:15,8/10/2011 15:26,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202008031017_00^01,Field Msr/Obs,WATER,NA,8/3/2020,10:17:00,MDT,8/4/2020,6:55:00,MDT,39.33,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: Large ETS|2024|17|546693|4919466|546776|4919513 Organization ActivityID=YELL_YSL_158_202008031017_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 16:17,8/4/2020 12:55,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_109_20100803182006^01,Field Msr/Obs,WATER,NA,8/3/2010,18:20:00,MDT,8/4/2010,8:25:00,MDT,42.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_109,Orig ID=0803101820 Organization ActivityID=YELL_YSL_109_20100803182006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 0:20,8/4/2010 14:25,Yellowstone Lake Shoreline KM 109,Lake,This station is located in the South Arm of Yellowstone lake along the east shoreline approximately midway from the lake main basin to the non-motorized zone.,10070001,NA,NA,NA,NA,44.3582804,-110.3195038,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20110803152503^01,Field Msr/Obs,WATER,NA,8/3/2011,15:25:00,MDT,8/4/2011,13:39:00,MDT,24.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0803111525 Organization ActivityID=YELL_YSL_115_20110803152503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 21:25,8/4/2011 19:39,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20180803111002^01,Field Msr/Obs,WATER,NA,8/3/2018,11:10:00,MDT,8/4/2018,8:52:00,MDT,2.15,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Organization ActivityID=YELL_YSL_158_20180803111002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:10,8/4/2018 14:52,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20140801081702^01,Field Msr/Obs,WATER,NA,8/1/2014,8:17:00,MDT,8/2/2014,8:11:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801140817 Organization ActivityID=YELL_YSL_190_20140801081702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 14:17,8/2/2014 14:11,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202008031005_00^01,Field Msr/Obs,WATER,NA,8/3/2020,10:05:00,MDT,8/4/2020,6:46:00,MDT,14.03,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: Large ETS|2026|20|546511|4919335|546576|4919373 Organization ActivityID=YELL_YSL_158_202008031005_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 16:05,8/4/2020 12:46,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20120809102301^01,Field Msr/Obs,WATER,NA,8/9/2012,10:23:00,MDT,8/10/2012,8:19:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0809121023 Organization ActivityID=YELL_YSL_041_20120809102301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 16:23,8/10/2012 14:19,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20140806120401^01,Field Msr/Obs,WATER,NA,8/6/2014,12:04:00,MDT,8/7/2014,10:07:00,MDT,3.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0806141204 Organization ActivityID=YELL_YSL_052_20140806120401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:04,8/7/2014 16:07,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20180803102602^01,Field Msr/Obs,WATER,NA,8/3/2018,10:26:00,MDT,8/4/2018,7:26:00,MDT,2.11,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Organization ActivityID=YELL_YSL_163_20180803102602,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:26,8/4/2018 13:26,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20050922173505^01,Field Msr/Obs,WATER,NA,9/22/2005,17:35:00,MDT,9/23/2005,9:35:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=922051735 Organization ActivityID=YELL_2A_20050922173505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 23:35,9/23/2005 15:35,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20150804102106^01,Field Msr/Obs,WATER,NA,8/4/2015,10:21:00,MDT,8/5/2015,8:23:00,MDT,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,No Fish Orig ID=0804151021 Organization ActivityID=YELL_YSL_158_20150804102106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:21,8/5/2015 14:23,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20170803103004^01,Field Msr/Obs,WATER,NA,8/3/2017,10:30:00,MDT,8/4/2017,11:10:00,MDT,10.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0803171030 Organization ActivityID=YELL_YSL_077_20170803103004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:30,8/4/2017 17:10,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20180803111403^01,Field Msr/Obs,WATER,NA,8/3/2018,11:14:00,MDT,8/4/2018,9:08:00,MDT,8.83,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Organization ActivityID=YELL_YSL_158_20180803111403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:14,8/4/2018 15:08,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202108021315_00^01,Field Msr/Obs,WATER,NA,8/2/2021,13:15:00,MDT,8/3/2021,13:44:00,MDT,45.21,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|4017|9|546568|4919676|546712|4919745 Organization ActivityID=YELL_YSL_158_202108021315_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 19:15,8/3/2021 19:44,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20061005162501^01,Field Msr/Obs,WATER,NA,10/5/2006,16:25:00,MDT,10/6/2006,8:25:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=1005061625 Organization ActivityID=YELL_1B_20061005162501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:25,10/6/2006 14:25,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20180807111804^01,Field Msr/Obs,WATER,NA,8/7/2018,11:18:00,MDT,8/8/2018,10:30:00,MDT,11.11,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Organization ActivityID=YELL_YSL_077_20180807111804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:18,8/8/2018 16:30,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20150801110302^01,Field Msr/Obs,WATER,NA,8/1/2015,11:03:00,MDT,8/1/2015,11:03:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0801151103 Organization ActivityID=YELL_YSL_218_20150801110302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:03,8/1/2015 17:03,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20120919115805^01,Field Msr/Obs,WATER,NA,9/19/2012,11:58:00,MDT,9/20/2012,10:26:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0919121158 Organization ActivityID=YELL_7C_20120919115805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 17:58,9/20/2012 16:26,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20150803142106^01,Field Msr/Obs,WATER,NA,8/3/2015,14:21:00,MDT,8/4/2015,11:52:00,MDT,29.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,3.5 mesh towards shore; No Fish Orig ID=0803151421 Organization ActivityID=YELL_YSL_144_20150803142106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 20:21,8/4/2015 17:52,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202008040909_00^01,Field Msr/Obs,WATER,NA,8/4/2020,9:09:00,MDT,8/5/2020,5:51:00,MDT,2.71,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: Small ETS|2021|18|539976|4919845|539918|4919920 Organization ActivityID=YELL_YSL_003_202008040909_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 15:09,8/5/2020 11:51,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20110810111703^01,Field Msr/Obs,WATER,NA,8/10/2011,11:17:00,MDT,8/11/2011,8:36:00,MDT,22.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0810111117 Organization ActivityID=YELL_YSL_009_20110810111703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.9,12.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 17:17,8/11/2011 14:36,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_018_20100811171501^01,Field Msr/Obs,WATER,NA,8/11/2010,17:15:00,MDT,8/12/2010,9:00:00,MDT,6.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_018,Orig ID=0811101715 Organization ActivityID=YELL_YSL_018_20100811171501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 23:15,8/12/2010 15:00,Yellowstone Lake Shoreline KM 18,Lake,This site is located in the West Thumb portion of Yellowstone Lake. It is on the western shoreline approximately 4 km from the West Thumb Geyser basin.,10070001,NA,NA,NA,NA,44.4151631,-110.5687369,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20140803092705^01,Field Msr/Obs,WATER,NA,8/3/2014,9:27:00,MDT,8/4/2014,7:04:00,MDT,41.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0803140927 Organization ActivityID=YELL_YSL_006_20140803092705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 15:27,8/4/2014 13:04,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20100805162804^01,Field Msr/Obs,WATER,NA,8/5/2010,16:28:00,MDT,8/6/2010,8:58:00,MDT,18.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0805101628 Organization ActivityID=YELL_YSL_082_20100805162804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 22:28,8/6/2010 14:58,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20190802121205^01,Field Msr/Obs,WATER,NA,8/2/2019,12:12:00,MDT,8/3/2019,8:32:00,MDT,36.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,small to shore Organization ActivityID=YELL_YSL_023_20190802121205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:12,8/3/2019 14:32,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_202108031531_00^01,Field Msr/Obs,WATER,NA,8/3/2021,15:31:00,MDT,8/4/2021,8:13:00,MDT,45.12,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|2024|19|546960|4921544|546982|4921475 Organization ActivityID=YELL_YSL_175_202108031531_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 21:31,8/4/2021 14:13,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20050920194005^01,Field Msr/Obs,WATER,NA,9/20/2005,19:40:00,MDT,9/21/2005,11:40:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=920051940 Organization ActivityID=YELL_4B_20050920194005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 1:40,9/21/2005 17:40,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20120917130704^01,Field Msr/Obs,WATER,NA,9/17/2012,13:07:00,MDT,9/18/2012,9:07:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0917121307 Organization ActivityID=YELL_6C_20120917130704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 19:07,9/18/2012 15:07,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20130805121307^01,Field Msr/Obs,WATER,NA,8/5/2013,12:13:00,MDT,8/5/2014,10:46:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0805141213 Organization ActivityID=YELL_YSL_041_20130805121307,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 18:13,8/5/2014 16:46,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202108021257_00^01,Field Msr/Obs,WATER,NA,8/2/2021,12:57:00,MDT,8/3/2021,13:01:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|4012|5|546344|4919525|546422|4919575 Organization ActivityID=YELL_YSL_158_202108021257_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 18:57,8/3/2021 19:01,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20120815113806^01,Field Msr/Obs,WATER,NA,8/15/2012,11:38:00,MDT,8/16/2012,7:09:00,MDT,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,No Fish Orig ID=0815121138 Organization ActivityID=YELL_YSL_163_20120815113806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 17:38,8/16/2012 13:09,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20110803134404^01,Field Msr/Obs,WATER,NA,8/3/2011,13:44:00,MDT,8/4/2011,11:30:00,MDT,24.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,No Fish Orig ID=0803111344 Organization ActivityID=YELL_YSL_121_20110803134404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:44,8/4/2011 17:30,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_202008050849_00^01,Field Msr/Obs,WATER,NA,8/5/2020,8:49:00,MDT,8/6/2020,5:57:00,MDT,2.75,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,"Activity Net, Buoy, Start/End UTMs: Small ETS|3001|13|537304|4915446|537305|4915524 Organization ActivityID=YELL_YSL_009_202008050849_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 14:49,8/6/2020 11:57,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_103_20100805154105^01,Field Msr/Obs,WATER,NA,8/5/2010,15:41:00,MDT,8/6/2010,8:00:00,MDT,42.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_103,one lose fish at 0.75 inches mesh Orig ID=0805101541 Organization ActivityID=YELL_YSL_103_20100805154105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 21:41,8/6/2010 14:00,Yellowstone Lake Shoreline KM 103,Lake,This site is located at the tip of the Promontory between the South and the Southeast arms of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3917251,-110.2833994,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20190802124602^01,Field Msr/Obs,WATER,NA,8/2/2019,12:46:00,MDT,8/3/2019,9:58:00,MDT,3.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,small to shore Organization ActivityID=YELL_YSL_021_20190802124602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:46,8/3/2019 15:58,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20110809121102^01,Field Msr/Obs,WATER,NA,8/9/2011,12:11:00,MDT,8/10/2011,11:29:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Net was placed between 2 large trap nets which could affect catch Orig ID=0809111211 Organization ActivityID=YELL_YSL_163_20110809121102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:11,8/10/2011 17:29,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20150807123305^01,Field Msr/Obs,WATER,NA,8/7/2015,12:33:00,MDT,8/8/2015,8:36:00,MDT,41.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807151233 Organization ActivityID=YELL_YSL_029_20150807123305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 18:33,8/8/2015 14:36,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20120809091602^01,Field Msr/Obs,WATER,NA,8/9/2012,9:16:00,MDT,8/10/2012,9:04:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Logger 17 Orig ID=0809120916 Organization ActivityID=YELL_YSL_080_20120809091602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 15:16,8/10/2012 15:04,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20061003193003^01,Field Msr/Obs,WATER,NA,10/3/2006,19:30:00,MDT,10/4/2006,11:30:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=1003061930 Organization ActivityID=YELL_7C_20061003193003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 1:30,10/4/2006 17:30,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_068_20100818172002^01,Field Msr/Obs,WATER,NA,8/18/2010,17:20:00,MDT,8/19/2010,8:12:00,MDT,6.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_068,Orig ID=0818101720 Organization ActivityID=YELL_YSL_068_20100818172002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 23:20,8/19/2010 14:12,Yellowstone Lake Shoreline KM 68,Lake,This station is located in the main basin in region 3. It is found along the east shore approximately 1 km south of Steamboat Point.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202008030955_00^01,Field Msr/Obs,WATER,NA,8/3/2020,9:55:00,MDT,8/4/2020,6:34:00,MDT,13.83,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: Small ETS|2027|24|546391|4919488|546475|4919566 Organization ActivityID=YELL_YSL_158_202008030955_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 15:55,8/4/2020 12:34,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20100914154704^01,Field Msr/Obs,WATER,NA,9/14/2010,15:47:00,MDT,9/15/2010,8:31:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0914101547 Organization ActivityID=YELL_2B_20100914154704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:47,9/15/2010 14:31,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20040913185005^01,Field Msr/Obs,WATER,NA,9/13/2004,18:50:00,MDT,9/14/2004,10:50:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=913041850 Organization ActivityID=YELL_3B_20040913185005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:50,9/14/2004 16:50,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20170805102001^01,Field Msr/Obs,WATER,NA,8/5/2017,10:20:00,MDT,8/6/2017,7:30:00,MDT,1.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0805171020 Organization ActivityID=YELL_YSL_168_20170805102001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:20,8/6/2017 13:30,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20170804095406^01,Field Msr/Obs,WATER,NA,8/4/2017,9:54:00,MDT,8/5/2017,8:30:00,MDT,41.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,no fish Orig ID=0804170954 Organization ActivityID=YELL_YSL_080_20170804095406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 15:54,8/5/2017 14:30,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20120809113401^01,Field Msr/Obs,WATER,NA,8/9/2012,11:34:00,MDT,8/10/2012,10:09:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0809121134 Organization ActivityID=YELL_YSL_045_20120809113401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 17:34,8/10/2012 16:09,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20120809092104^01,Field Msr/Obs,WATER,NA,8/9/2012,9:21:00,MDT,8/10/2012,8:35:00,MDT,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,logger 18 out 0840 Orig ID=0809120921 Organization ActivityID=YELL_YSL_080_20120809092104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.3,15.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 15:21,8/10/2012 14:35,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20100819171403^01,Field Msr/Obs,WATER,NA,8/19/2010,17:14:00,MDT,8/20/2010,9:48:00,MDT,18.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0819101714 Organization ActivityID=YELL_YSL_059_20100819171403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 23:14,8/20/2010 15:48,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20120807173406^01,Field Msr/Obs,WATER,NA,8/7/2012,17:34:00,MDT,8/8/2012,11:29:00,MDT,33.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,No Fish Orig ID=0807121734 Organization ActivityID=YELL_YSL_003_20120807173406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 23:34,8/8/2012 17:29,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_016_20100811161803^01,Field Msr/Obs,WATER,NA,8/11/2010,16:18:00,MDT,8/12/2010,10:32:00,MDT,21.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_016,Orig ID=0811101618 Organization ActivityID=YELL_YSL_016_20100811161803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 22:18,8/12/2010 16:32,Yellowstone Lake Shoreline KM 16,Lake,This station is located in the West Thumb portion of Yellowstone Lake primarily on the western shoreline but in the southwest corner of West Thumb approximately 2km north of the West Thumb geyser basin.,10070001,NA,NA,NA,NA,44.4002273,-110.5615431,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202108041123_00^01,Field Msr/Obs,WATER,NA,8/4/2021,11:23:00,MDT,8/5/2021,8:43:00,MDT,5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|4013|21|535255|4916031|535285|4916147 Organization ActivityID=YELL_YSL_012_202108041123_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 17:23,8/5/2021 14:43,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20140802113604^01,Field Msr/Obs,WATER,NA,8/2/2014,11:36:00,MDT,8/3/2014,9:45:00,MDT,8.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,No Fish Orig ID=0802141136 Organization ActivityID=YELL_YSL_089_20140802113604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:36,8/3/2014 15:45,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20190801105506^01,Field Msr/Obs,WATER,NA,8/1/2019,10:55:00,MDT,8/2/2019,9:50:00,MDT,40.59,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,small to shore Organization ActivityID=YELL_YSL_029_20190801105506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 16:55,8/2/2019 15:50,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20150802121606^01,Field Msr/Obs,WATER,NA,8/2/2015,12:16:00,MDT,8/3/2015,11:30:00,MDT,55.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,"Yellow, orange. Steep contour, net deeper than ideal. No fish. Orig ID=0802151216 Organization ActivityID=YELL_YSL_101_20150802121606",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 18:16,8/3/2015 17:30,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20140803112702^01,Field Msr/Obs,WATER,NA,8/3/2014,11:27:00,MDT,8/4/2014,9:30:00,MDT,3.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,South of Site due to Hazard bouys (100yds) Orig ID=0803141127 Organization ActivityID=YELL_YSL_079_20140803112702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 17:27,8/4/2014 15:30,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20190802122103^01,Field Msr/Obs,WATER,NA,8/2/2019,12:21:00,MDT,8/3/2019,10:01:00,MDT,14.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,big end to shore Organization ActivityID=YELL_YSL_059_20190802122103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:21,8/3/2019 16:01,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20150802111604^01,Field Msr/Obs,WATER,NA,8/2/2015,11:16:00,MDT,8/3/2015,9:22:00,MDT,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,"Blue, green. Orig ID=0802151116 Organization ActivityID=YELL_YSL_089_20150802111604",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:16,8/3/2015 15:22,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20170801150404^01,Field Msr/Obs,WATER,NA,8/1/2017,15:04:00,MDT,8/2/2017,9:32:00,MDT,8.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0801171504 Organization ActivityID=YELL_YSL_041_20170801150404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 21:04,8/2/2017 15:32,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202108041029_00^01,Field Msr/Obs,WATER,NA,8/4/2021,10:29:00,MDT,8/5/2021,7:17:00,MDT,9.56,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|2026|5|539494|4920010|539434|4920070 Organization ActivityID=YELL_YSL_003_202108041029_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 16:29,8/5/2021 13:17,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20120916104305^01,Field Msr/Obs,WATER,NA,9/16/2012,10:43:00,MDT,9/17/2012,10:58:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=0916121043 Organization ActivityID=YELL_4B_20120916104305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2012 16:43,9/17/2012 16:58,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20110809112001^01,Field Msr/Obs,WATER,NA,8/9/2011,11:20:00,MDT,8/10/2011,8:18:00,MDT,6.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0809111120 Organization ActivityID=YELL_YSL_003_20110809112001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.6,12.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 17:20,8/10/2011 14:18,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20180806113603^01,Field Msr/Obs,WATER,NA,8/6/2018,11:36:00,MDT,8/7/2018,9:08:00,MDT,8.71,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Organization ActivityID=YELL_YSL_115_20180806113603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:36,8/7/2018 15:08,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20180805110202^01,Field Msr/Obs,WATER,NA,8/5/2018,11:02:00,MDT,8/6/2018,9:40:00,MDT,2.57,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Organization ActivityID=YELL_YSL_128_20180805110202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:02,8/6/2018 15:40,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20150802114402^01,Field Msr/Obs,WATER,NA,8/2/2015,11:44:00,MDT,8/3/2015,10:46:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,"Yellow, red. Net set in steep contour, deeper than ideal. Orig ID=0802151144 Organization ActivityID=YELL_YSL_101_20150802114402",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:44,8/3/2015 16:46,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20100817182605^01,Field Msr/Obs,WATER,NA,8/17/2010,18:26:00,MDT,8/18/2010,9:28:00,MDT,43.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,one LKT Orig ID=0817101826 Organization ActivityID=YELL_YSL_153_20100817182605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 0:26,8/18/2010 15:28,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20140801082303^01,Field Msr/Obs,WATER,NA,8/1/2014,8:23:00,MDT,8/2/2014,8:00:00,MDT,16,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801140823 Organization ActivityID=YELL_YSL_190_20140801082303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 14:23,8/2/2014 14:00,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20150808100803^01,Field Msr/Obs,WATER,NA,8/8/2015,10:08:00,MDT,8/9/2015,7:30:00,MDT,8.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808151008 Organization ActivityID=YELL_YSL_175_20150808100803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2015 16:08,8/9/2015 13:30,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20100917163902^01,Field Msr/Obs,WATER,NA,9/17/2010,16:39:00,MDT,9/18/2010,8:24:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0917101639 Organization ActivityID=YELL_1C_20100917163902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 22:39,9/18/2010 14:24,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20170803105006^01,Field Msr/Obs,WATER,NA,8/3/2017,10:50:00,MDT,8/4/2017,11:30:00,MDT,39.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,no fish Orig ID=0803171050 Organization ActivityID=YELL_YSL_077_20170803105006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:50,8/4/2017 17:30,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20190802114504^01,Field Msr/Obs,WATER,NA,8/2/2019,11:45:00,MDT,8/3/2019,8:27:00,MDT,14.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,large end to shore Organization ActivityID=YELL_YSL_058_20190802114504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 17:45,8/3/2019 14:27,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20110803135405^01,Field Msr/Obs,WATER,NA,8/3/2011,13:54:00,MDT,8/4/2011,11:11:00,MDT,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,8 LKT Orig ID=0803111354 Organization ActivityID=YELL_YSL_121_20110803135405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:54,8/4/2011 17:11,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20120807131702^01,Field Msr/Obs,WATER,NA,8/7/2012,13:17:00,MDT,8/8/2012,8:45:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Logger 23 Orig ID=0807121317 Organization ActivityID=YELL_YSL_065_20120807131702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 19:17,8/8/2012 14:45,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20140803090004^01,Field Msr/Obs,WATER,NA,8/3/2014,9:00:00,MDT,8/4/2014,7:24:00,MDT,8.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Mesh 2.0 inches towards shore Orig ID=0803140900 Organization ActivityID=YELL_YSL_006_20140803090004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 15:00,8/4/2014 13:24,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20140807110106^01,Field Msr/Obs,WATER,NA,8/7/2014,11:01:00,MDT,8/8/2014,7:55:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,NO FISH Orig ID=0807141101 Organization ActivityID=YELL_YSL_115_20140807110106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:01,8/8/2014 13:55,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20190804112306^01,Field Msr/Obs,WATER,NA,8/4/2019,11:23:00,MDT,8/5/2019,8:45:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,small end to shore Organization ActivityID=YELL_YSL_082_20190804112306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:23,8/5/2019 14:45,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20150802112806^01,Field Msr/Obs,WATER,NA,8/2/2015,11:28:00,MDT,8/3/2015,8:46:00,MDT,41.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,"Blue, red. No fish. Orig ID=0802151128 Organization ActivityID=YELL_YSL_089_20150802112806",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:28,8/3/2015 14:46,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20110803133703^01,Field Msr/Obs,WATER,NA,8/3/2011,13:37:00,MDT,8/4/2011,11:38:00,MDT,28,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0803111337 Organization ActivityID=YELL_YSL_121_20110803133703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:37,8/4/2011 17:38,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20110915182504^01,Field Msr/Obs,WATER,NA,9/15/2011,18:25:00,MDT,9/16/2011,13:00:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915111825 Organization ActivityID=YELL_1A_20110915182504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2011 0:25,9/16/2011 19:00,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20180806120306^01,Field Msr/Obs,WATER,NA,8/6/2018,12:03:00,MDT,8/7/2018,10:07:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Organization ActivityID=YELL_YSL_091_20180806120306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 18:03,8/7/2018 16:07,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20190803115503^01,Field Msr/Obs,WATER,NA,8/3/2019,11:55:00,MDT,8/4/2019,9:03:00,MDT,12.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,small end to shore Organization ActivityID=YELL_YSL_077_20190803115503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:55,8/4/2019 15:03,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202108041105_00^01,Field Msr/Obs,WATER,NA,8/4/2021,11:05:00,MDT,8/5/2021,8:11:00,MDT,1.26,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|2029|3|535154|4915977|535243|4916019 Organization ActivityID=YELL_YSL_012_202108041105_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 17:05,8/5/2021 14:11,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20180806112401^01,Field Msr/Obs,WATER,NA,8/6/2018,11:24:00,MDT,8/7/2018,8:42:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Organization ActivityID=YELL_YSL_115_20180806112401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:24,8/7/2018 14:42,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20150807094506^01,Field Msr/Obs,WATER,NA,8/7/2015,9:45:00,MDT,8/8/2015,7:25:00,MDT,36,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,No Fish Orig ID=0807150945 Organization ActivityID=YELL_YSL_027_20150807094506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 15:45,8/8/2015 13:25,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20140802110202^01,Field Msr/Obs,WATER,NA,8/2/2014,11:02:00,MDT,8/3/2014,7:46:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,2.25-shore Orig ID=0802141102 Organization ActivityID=YELL_YSL_012_20140802110202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:02,8/3/2014 13:46,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202108031407_00^01,Field Msr/Obs,WATER,NA,8/3/2021,14:07:00,MDT,8/4/2021,8:35:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|H5004|11|542973|4920292|543063|4920290 Organization ActivityID=YELL_YSL_163_202108031407_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 20:07,8/4/2021 14:35,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20140806121804^01,Field Msr/Obs,WATER,NA,8/6/2014,12:18:00,MDT,8/7/2014,7:38:00,MDT,8.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0806141218 Organization ActivityID=YELL_YSL_144_20140806121804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:18,8/7/2014 13:38,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202108051021_00^01,Field Msr/Obs,WATER,NA,8/5/2021,10:21:00,MDT,8/6/2021,8:41:00,MDT,1.25,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|4018|19|535211|4922610|535269|4922548 Organization ActivityID=YELL_YSL_023_202108051021_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 16:21,8/6/2021 14:41,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_202008010953_00^01,Field Msr/Obs,WATER,NA,8/1/2020,9:53:00,MDT,8/2/2020,9:36:00,MDT,39.99,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,"Activity Net, Buoy, Start/End UTMs: Small ETS|4016|21|552229|4909654|552303|4909719 Organization ActivityID=YELL_YSL_121_202008010953_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 15:53,8/2/2020 15:36,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_202008050855_00^01,Field Msr/Obs,WATER,NA,8/5/2020,8:55:00,MDT,8/6/2020,6:09:00,MDT,2.81,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,"Activity Net, Buoy, Start/End UTMs: Small ETS|3029|15|537081|4915419|537074|4915512 Organization ActivityID=YELL_YSL_009_202008050855_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 14:55,8/6/2020 12:09,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20190805121401^01,Field Msr/Obs,WATER,NA,8/5/2019,12:14:00,MDT,8/6/2019,8:00:00,MDT,4.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,small end to shore Organization ActivityID=YELL_YSL_144_20190805121401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 18:14,8/6/2019 14:00,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20050921201001^01,Field Msr/Obs,WATER,NA,9/21/2005,20:10:00,MDT,9/22/2005,12:10:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=921052010 Organization ActivityID=YELL_7C_20050921201001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 2:10,9/22/2005 18:10,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20180803114505^01,Field Msr/Obs,WATER,NA,8/3/2018,11:45:00,MDT,8/4/2018,9:45:00,MDT,46.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Organization ActivityID=YELL_YSL_065_20180803114505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:45,8/4/2018 15:45,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_090_20100804171302^01,Field Msr/Obs,WATER,NA,8/4/2010,17:13:00,MDT,8/5/2010,9:50:00,MDT,12.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_090,Orig ID=0804101713 Organization ActivityID=YELL_YSL_090_20100804171302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 23:13,8/5/2010 15:50,Yellowstone Lake Shoreline KM 90,Lake,This station is located in the Southeast Arm of Yellowstone Lake along the east shoreline. It is approximately 4 km from the non-motorized zone along the east shore.,10070001,NA,NA,NA,NA,44.3808348,-110.2343213,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20120807103805^01,Field Msr/Obs,WATER,NA,8/7/2012,10:38:00,MDT,8/8/2012,7:57:00,MDT,35.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,No Fish Orig ID=0807121038 Organization ActivityID=YELL_YSL_006_20120807103805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:38,8/8/2012 13:57,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20170801152406^01,Field Msr/Obs,WATER,NA,8/1/2017,15:24:00,MDT,8/2/2017,9:50:00,MDT,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,No Fish Orig ID=0801171524 Organization ActivityID=YELL_YSL_041_20170801152406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 21:24,8/2/2017 15:50,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20180806113902^01,Field Msr/Obs,WATER,NA,8/6/2018,11:39:00,MDT,8/7/2018,9:05:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Organization ActivityID=YELL_YSL_091_20180806113902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:39,8/7/2018 15:05,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_202108031501_00^01,Field Msr/Obs,WATER,NA,8/3/2021,15:01:00,MDT,8/4/2021,7:27:00,MDT,1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|4018|7|546848|4921975|546811|4921899 Organization ActivityID=YELL_YSL_175_202108031501_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 21:01,8/4/2021 13:27,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20120807165001^01,Field Msr/Obs,WATER,NA,8/7/2012,16:50:00,MDT,8/8/2012,12:14:00,MDT,3.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Net covered with algae Orig ID=0807121650 Organization ActivityID=YELL_YSL_003_20120807165001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 22:50,8/8/2012 18:14,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20130802141402^01,Field Msr/Obs,WATER,NA,8/2/2013,14:14:00,MDT,8/3/2013,9:53:00,MDT,3.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0802131414 Organization ActivityID=YELL_YSL_128_20130802141402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:14,8/3/2013 15:53,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20110803120701^01,Field Msr/Obs,WATER,NA,8/3/2011,12:07:00,MDT,8/4/2011,11:00:00,MDT,13,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803111207 Organization ActivityID=YELL_YSL_080_20110803120701,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 18:07,8/4/2011 17:00,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20040916194501^01,Field Msr/Obs,WATER,NA,9/16/2004,19:45:00,MDT,9/17/2004,11:45:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=916041945 Organization ActivityID=YELL_6C_20040916194501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 1:45,9/17/2004 17:45,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20120813141402^01,Field Msr/Obs,WATER,NA,8/13/2012,14:14:00,MDT,8/14/2012,8:42:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0813121414 Organization ActivityID=YELL_YSL_190_20120813141402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 20:14,8/14/2012 14:42,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20190805081604^01,Field Msr/Obs,WATER,NA,8/5/2019,8:16:00,MDT,8/6/2019,8:20:00,MDT,30,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,small end to shore Organization ActivityID=YELL_YSL_144_20190805081604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 14:16,8/6/2019 14:20,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20170807143105^01,Field Msr/Obs,WATER,NA,8/7/2017,14:31:00,MDT,8/8/2017,10:29:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Orig ID=0807171431 Organization ActivityID=YELL_YSL_212_20170807143105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 20:31,8/8/2017 16:29,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20170804100005^01,Field Msr/Obs,WATER,NA,8/4/2017,10:00:00,MDT,8/5/2017,8:40:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0804171000 Organization ActivityID=YELL_YSL_080_20170804100005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 16:00,8/5/2017 14:40,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20150807113205^01,Field Msr/Obs,WATER,NA,8/7/2015,11:32:00,MDT,8/8/2015,9:12:00,MDT,38,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0807151132 Organization ActivityID=YELL_YSL_042_20150807113205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 17:32,8/8/2015 15:12,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20190805110101^01,Field Msr/Obs,WATER,NA,8/5/2019,11:01:00,MDT,8/6/2019,8:53:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,small end to shore Organization ActivityID=YELL_YSL_101_20190805110101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:01,8/6/2019 14:53,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20120808103604^01,Field Msr/Obs,WATER,NA,8/8/2012,10:36:00,MDT,8/9/2012,8:46:00,MDT,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Logger 18 Orig ID=0808121036 Organization ActivityID=YELL_YSL_077_20120808103604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:36,8/9/2012 14:46,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20160801095606^01,Field Msr/Obs,WATER,NA,8/1/2016,9:56:00,MDT,8/2/2016,11:27:00,MDT,41.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801160956 Organization ActivityID=YELL_YSL_209_20160801095606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:56,8/2/2016 17:27,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20120813142904^01,Field Msr/Obs,WATER,NA,8/13/2012,14:29:00,MDT,8/14/2012,9:06:00,MDT,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0813121429 Organization ActivityID=YELL_YSL_115_20120813142904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 20:29,8/14/2012 15:06,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20120815145804^01,Field Msr/Obs,WATER,NA,8/15/2012,14:58:00,MDT,8/16/2012,7:50:00,MDT,26.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0815121458 Organization ActivityID=YELL_YSL_144_20120815145804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 20:58,8/16/2012 13:50,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20150806100702^01,Field Msr/Obs,WATER,NA,8/6/2015,10:07:00,MDT,8/7/2015,8:18:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0806151007 Organization ActivityID=YELL_YSL_021_20150806100702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 16:07,8/7/2015 14:18,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_109_20100803180504^01,Field Msr/Obs,WATER,NA,8/3/2010,18:05:00,MDT,8/4/2010,9:00:00,MDT,22.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_109,Orig ID=0803101805 Organization ActivityID=YELL_YSL_109_20100803180504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 0:05,8/4/2010 15:00,Yellowstone Lake Shoreline KM 109,Lake,This station is located in the South Arm of Yellowstone lake along the east shoreline approximately midway from the lake main basin to the non-motorized zone.,10070001,NA,NA,NA,NA,44.3582804,-110.3195038,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20040913181002^01,Field Msr/Obs,WATER,NA,9/13/2004,18:10:00,MDT,9/14/2004,10:10:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Net Lost Orig ID=913041810 Organization ActivityID=YELL_3A_20040913181002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:10,9/14/2004 16:10,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_103_20100805160506^01,Field Msr/Obs,WATER,NA,8/5/2010,16:05:00,MDT,8/6/2010,8:35:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_103,No Fish Orig ID=0805101605 Organization ActivityID=YELL_YSL_103_20100805160506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 22:05,8/6/2010 14:35,Yellowstone Lake Shoreline KM 103,Lake,This site is located at the tip of the Promontory between the South and the Southeast arms of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3917251,-110.2833994,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20120813142403^01,Field Msr/Obs,WATER,NA,8/13/2012,14:24:00,MDT,8/14/2012,8:41:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0813121424 Organization ActivityID=YELL_YSL_115_20120813142403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 20:24,8/14/2012 14:41,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20150804110806^01,Field Msr/Obs,WATER,NA,8/4/2015,11:08:00,MDT,8/5/2015,13:14:00,MDT,41.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,No Fish Orig ID=0804151108 Organization ActivityID=YELL_YSL_171_20150804110806,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 17:08,8/5/2015 19:14,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20140807103201^01,Field Msr/Obs,WATER,NA,8/7/2014,10:32:00,MDT,8/8/2014,8:40:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,"""YCT 2.77 Mort in 1.00 mesh"" Fish could not be verified left out of database Orig ID=0807141032 Organization ActivityID=YELL_YSL_115_20140807103201",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 16:32,8/8/2014 14:40,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20130802143506^01,Field Msr/Obs,WATER,NA,8/2/2013,14:35:00,MDT,8/3/2013,8:41:00,MDT,39.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,no fish Orig ID=0802131435 Organization ActivityID=YELL_YSL_128_20130802143506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:35,8/3/2013 14:41,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20180804110506^01,Field Msr/Obs,WATER,NA,8/4/2018,11:05:00,MDT,8/5/2018,10:15:00,MDT,42.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Organization ActivityID=YELL_YSL_067_20180804110506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 17:05,8/5/2018 16:15,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_090_20100804170803^01,Field Msr/Obs,WATER,NA,8/4/2010,17:08:00,MDT,8/5/2010,9:44:00,MDT,18.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_090,Orig ID=0804101708 Organization ActivityID=YELL_YSL_090_20100804170803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 23:08,8/5/2010 15:44,Yellowstone Lake Shoreline KM 90,Lake,This station is located in the Southeast Arm of Yellowstone Lake along the east shoreline. It is approximately 4 km from the non-motorized zone along the east shore.,10070001,NA,NA,NA,NA,44.3808348,-110.2343213,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20120917114605^01,Field Msr/Obs,WATER,NA,9/17/2012,11:46:00,MDT,9/18/2012,12:09:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0917121146 Organization ActivityID=YELL_3B_20120917114605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 17:46,9/18/2012 18:09,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20170806105106^01,Field Msr/Obs,WATER,NA,8/6/2017,10:51:00,MDT,8/7/2017,10:15:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,no fish Orig ID=0806171051 Organization ActivityID=YELL_YSL_128_20170806105106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:51,8/7/2017 16:15,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20130801123002^01,Field Msr/Obs,WATER,NA,8/1/2013,12:30:00,MDT,8/2/2013,11:35:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801131230 Organization ActivityID=YELL_YSL_209_20130801123002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 18:30,8/2/2013 17:35,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20180803105905^01,Field Msr/Obs,WATER,NA,8/3/2018,10:59:00,MDT,8/4/2018,7:49:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Organization ActivityID=YELL_YSL_052_20180803105905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:59,8/4/2018 13:49,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20190805113104^01,Field Msr/Obs,WATER,NA,8/5/2019,11:31:00,MDT,8/6/2019,9:17:00,MDT,14.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,small end to shore Organization ActivityID=YELL_YSL_171_20190805113104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:31,8/6/2019 15:17,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20170803115006^01,Field Msr/Obs,WATER,NA,8/3/2017,11:50:00,MDT,8/4/2017,8:00:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,no fish Orig ID=0803171150 Organization ActivityID=YELL_YSL_177_20170803115006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:50,8/4/2017 14:00,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20140801105104^01,Field Msr/Obs,WATER,NA,8/1/2014,10:51:00,MDT,8/2/2014,9:26:00,MDT,7.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0801141051 Organization ActivityID=YELL_YSL_025_20140801105104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 16:51,8/2/2014 15:26,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20050922175504^01,Field Msr/Obs,WATER,NA,9/22/2005,17:55:00,MDT,9/23/2005,9:55:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=922051755 Organization ActivityID=YELL_2B_20050922175504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 23:55,9/23/2005 15:55,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20120916094903^01,Field Msr/Obs,WATER,NA,9/16/2012,9:49:00,MDT,9/17/2012,9:11:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0916120949 Organization ActivityID=YELL_4A_20120916094903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2012 15:49,9/17/2012 15:11,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20110809125906^01,Field Msr/Obs,WATER,NA,8/9/2011,12:59:00,MDT,8/10/2011,10:29:00,MDT,42.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,No Fish Orig ID=0809111259 Organization ActivityID=YELL_YSL_163_20110809125906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:59,8/10/2011 16:29,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20061001175504^01,Field Msr/Obs,WATER,NA,10/1/2006,17:55:00,MDT,10/2/2006,9:55:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=1001061755 Organization ActivityID=YELL_2B_20061001175504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/1/2006 23:55,10/2/2006 15:55,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20110803151401^01,Field Msr/Obs,WATER,NA,8/3/2011,15:14:00,MDT,8/4/2011,14:20:00,MDT,4.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0803111514 Organization ActivityID=YELL_YSL_115_20110803151401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 21:14,8/4/2011 20:20,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20170804111303^01,Field Msr/Obs,WATER,NA,8/4/2017,11:13:00,MDT,8/5/2017,7:59:00,MDT,13,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804171113 Organization ActivityID=YELL_YSL_163_20170804111303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 17:13,8/5/2017 13:59,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20150805160205^01,Field Msr/Obs,WATER,NA,8/5/2015,16:02:00,MDT,8/6/2015,9:50:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Note: needs weight Orig ID=0805151602 Organization ActivityID=YELL_YSL_177_20150805160205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 22:02,8/6/2015 15:50,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20120813124404^01,Field Msr/Obs,WATER,NA,8/13/2012,12:44:00,MDT,8/14/2012,10:34:00,MDT,10.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0813121244 Organization ActivityID=YELL_YSL_209_20120813124404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 18:44,8/14/2012 16:34,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20040913174502^01,Field Msr/Obs,WATER,NA,9/13/2004,17:45:00,MDT,9/14/2004,9:45:00,MDT,1.2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=913041745 Organization ActivityID=YELL_2B_20040913174502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2004 23:45,9/14/2004 15:45,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20120815143401^01,Field Msr/Obs,WATER,NA,8/15/2012,14:34:00,MDT,8/16/2012,8:23:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0815121434 Organization ActivityID=YELL_YSL_144_20120815143401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 20:34,8/16/2012 14:23,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20150804121702^01,Field Msr/Obs,WATER,NA,8/4/2015,12:17:00,MDT,8/5/2015,11:19:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804151217 Organization ActivityID=YELL_YSL_163_20150804121702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 18:17,8/5/2015 17:19,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20170807123003^01,Field Msr/Obs,WATER,NA,8/7/2017,12:30:00,MDT,8/8/2017,10:15:00,MDT,11.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Orig ID=0807171230 Organization ActivityID=YELL_YSL_210_20170807123003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 18:30,8/8/2017 16:15,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20170801095501^01,Field Msr/Obs,WATER,NA,8/1/2017,9:55:00,MDT,8/2/2017,8:05:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0801170955 Organization ActivityID=YELL_YSL_029_20170801095501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 15:55,8/2/2017 14:05,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20190802114802^01,Field Msr/Obs,WATER,NA,8/2/2019,11:48:00,MDT,8/3/2019,8:26:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Organization ActivityID=YELL_YSL_023_20190802114802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 17:48,8/3/2019 14:26,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20150807100704^01,Field Msr/Obs,WATER,NA,8/7/2015,10:07:00,MDT,8/8/2015,7:05:00,MDT,44.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,No Fish Orig ID=0807151007 Organization ActivityID=YELL_YSL_027_20150807100704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 16:07,8/8/2015 13:05,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20130801124403^01,Field Msr/Obs,WATER,NA,8/1/2013,12:44:00,MDT,8/2/2013,10:44:00,MDT,11.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0801131244 Organization ActivityID=YELL_YSL_221_20130801124403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 18:44,8/2/2013 16:44,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20120917130103^01,Field Msr/Obs,WATER,NA,9/17/2012,13:01:00,MDT,9/18/2012,8:44:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0917121301 Organization ActivityID=YELL_6C_20120917130103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 19:01,9/18/2012 14:44,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20140806130502^01,Field Msr/Obs,WATER,NA,8/6/2014,13:05:00,MDT,8/7/2014,9:50:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806141305 Organization ActivityID=YELL_YSL_128_20140806130502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 19:05,8/7/2014 15:50,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20190805133202^01,Field Msr/Obs,WATER,NA,8/5/2019,13:32:00,MDT,8/6/2019,9:16:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,small to shore Organization ActivityID=YELL_YSL_148_20190805133202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 19:32,8/6/2019 15:16,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20061002184504^01,Field Msr/Obs,WATER,NA,10/2/2006,18:45:00,MDT,10/3/2006,10:45:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=1002061845 Organization ActivityID=YELL_4A_20061002184504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.8,8.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 0:45,10/3/2006 16:45,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20120808111904^01,Field Msr/Obs,WATER,NA,8/8/2012,11:19:00,MDT,8/9/2012,10:50:00,MDT,10.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0808121119 Organization ActivityID=YELL_YSL_079_20120808111904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 17:19,8/9/2012 16:50,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20120815110802^01,Field Msr/Obs,WATER,NA,8/15/2012,11:08:00,MDT,8/16/2012,8:32:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0815121108 Organization ActivityID=YELL_YSL_163_20120815110802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 17:08,8/16/2012 14:32,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_202108021227_00^01,Field Msr/Obs,WATER,NA,8/2/2021,12:27:00,MDT,8/3/2021,12:18:00,MDT,42.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|2025|7|549492|4916483|549588|4916517 Organization ActivityID=YELL_YSL_148_202108021227_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.5,19.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 18:27,8/3/2021 18:18,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20150805144601^01,Field Msr/Obs,WATER,NA,8/5/2015,14:46:00,MDT,8/6/2015,9:02:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0805151446 Organization ActivityID=YELL_YSL_077_20150805144601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 20:46,8/6/2015 15:02,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20040916203005^01,Field Msr/Obs,WATER,NA,9/16/2004,20:30:00,MDT,9/17/2004,12:30:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=916042030 Organization ActivityID=YELL_7C_20040916203005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 2:30,9/17/2004 18:30,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20040915162005^01,Field Msr/Obs,WATER,NA,9/15/2004,16:20:00,MDT,9/17/2004,8:20:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915041620 Organization ActivityID=YELL_1A_20040915162005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:20,9/17/2004 14:20,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20120808134106^01,Field Msr/Obs,WATER,NA,8/8/2012,13:41:00,MDT,8/9/2012,8:30:00,MDT,32.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,No Fish Orig ID=0808121341 Organization ActivityID=YELL_YSL_025_20120808134106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 19:41,8/9/2012 14:30,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20170802121503^01,Field Msr/Obs,WATER,NA,8/2/2017,12:15:00,MDT,8/3/2017,9:37:00,MDT,17.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0802171215 Organization ActivityID=YELL_YSL_021_20170802121503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:15,8/3/2017 15:37,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20110809111101^01,Field Msr/Obs,WATER,NA,8/3/2011,11:11:00,MDT,8/10/2011,8:40:00,MDT,16.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0809111111 Organization ActivityID=YELL_YSL_158_20110809111101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.7,12.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 17:11,8/10/2011 14:40,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20180802100705^01,Field Msr/Obs,WATER,NA,8/2/2018,10:07:00,MDT,8/3/2018,7:29:00,MDT,7.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,2.25 to Shore Orig ID=0802181007 Organization ActivityID=YELL_YSL_041_20180802100705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:07,8/3/2018 13:29,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20040913173505^01,Field Msr/Obs,WATER,NA,9/13/2004,17:35:00,MDT,9/14/2004,9:35:00,MDT,0.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=913041735 Organization ActivityID=YELL_2A_20040913173505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.8,11.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2004 23:35,9/14/2004 15:35,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20040915192001^01,Field Msr/Obs,WATER,NA,9/15/2004,19:20:00,MDT,9/16/2004,11:20:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=915041920 Organization ActivityID=YELL_4B_20040915192001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2004 1:20,9/16/2004 17:20,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20120917095001^01,Field Msr/Obs,WATER,NA,9/17/2012,9:50:00,MDT,9/18/2012,8:26:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917120950 Organization ActivityID=YELL_3A_20120917095001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 15:50,9/18/2012 14:26,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20140807112301^01,Field Msr/Obs,WATER,NA,8/7/2014,11:23:00,MDT,8/8/2014,9:16:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0807141123 Organization ActivityID=YELL_YSL_153_20140807112301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:23,8/8/2014 15:16,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20140802111503^01,Field Msr/Obs,WATER,NA,8/2/2014,11:15:00,MDT,8/3/2014,7:29:00,MDT,8.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,No Fish; 2.25 to shore Orig ID=0802141115 Organization ActivityID=YELL_YSL_012_20140802111503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:15,8/3/2014 13:29,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20190801101506^01,Field Msr/Obs,WATER,NA,8/1/2019,10:15:00,MDT,8/2/2019,9:23:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,small end to shore Organization ActivityID=YELL_YSL_042_20190801101506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 16:15,8/2/2019 15:23,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20150807120102^01,Field Msr/Obs,WATER,NA,8/7/2015,12:01:00,MDT,8/8/2015,9:20:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807151201 Organization ActivityID=YELL_YSL_029_20150807120102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 18:01,8/8/2015 15:20,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20120814153606^01,Field Msr/Obs,WATER,NA,8/14/2012,15:36:00,MDT,8/15/2012,10:46:00,MDT,35.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,No Fish Orig ID=0814121536 Organization ActivityID=YELL_YSL_221_20120814153606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 21:36,8/15/2012 16:46,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20140801101805^01,Field Msr/Obs,WATER,NA,8/1/2014,10:18:00,MDT,8/2/2014,8:12:00,MDT,45.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Mesh 0.75 to shore Orig ID=0801141018 Organization ActivityID=YELL_YSL_023_20140801101805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 16:18,8/2/2014 14:12,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20040916195002^01,Field Msr/Obs,WATER,NA,9/16/2004,19:50:00,MDT,9/17/2004,11:50:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=916041950 Organization ActivityID=YELL_6C_20040916195002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 1:50,9/17/2004 17:50,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_106_20100803172506^01,Field Msr/Obs,WATER,NA,8/3/2010,17:25:00,MDT,8/4/2010,10:04:00,MDT,42.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_106,Orig ID=0803101725 Organization ActivityID=YELL_YSL_106_20100803172506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 23:25,8/4/2010 16:04,Yellowstone Lake Shoreline KM 106,Lake,This station is located in the South Arm of Yellowstone Lake along the east shore approximately one fourth the way between the main lake basin and the non-motorized zone.,10070001,NA,NA,NA,NA,44.3777623,-110.2979164,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20190803112601^01,Field Msr/Obs,WATER,NA,8/3/2019,11:26:00,MDT,8/4/2019,7:56:00,MDT,1.97,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,small to shore Organization ActivityID=YELL_YSL_012_20190803112601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,1.97,1.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:26,8/4/2019 13:56,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20110802152501^01,Field Msr/Obs,WATER,NA,8/2/2011,15:25:00,MDT,8/3/2011,11:11:00,MDT,12.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Lots of LKT Orig ID=0802111525 Organization ActivityID=YELL_YSL_079_20110802152501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 21:25,8/3/2011 17:11,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_150_20100809170101^01,Field Msr/Obs,WATER,NA,8/9/2010,17:01:00,MDT,8/10/2010,9:52:00,MDT,4.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_150,1 fish lost in 1 inch; 1 fish lost in 1.25; and 2 fish lost in 1.5 inch. Orig ID=0809101701 Organization ActivityID=YELL_YSL_150_20100809170101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 23:01,8/10/2010 15:52,Yellowstone Lake Shoreline KM 150,Lake,This station is located in region 2 near the north and west side of Flat Mountain Arm of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20110808091004^01,Field Msr/Obs,WATER,NA,8/8/2011,9:10:00,MDT,8/9/2011,7:34:00,MDT,22.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,No Fish Orig ID=0808110910 Organization ActivityID=YELL_YSL_152_20110808091004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:10,8/9/2011 13:34,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20110809115104^01,Field Msr/Obs,WATER,NA,8/9/2011,11:51:00,MDT,8/10/2011,7:49:00,MDT,41.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0809111151 Organization ActivityID=YELL_YSL_003_20110809115104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.9,12.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 17:51,8/10/2011 13:49,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20150803134502^01,Field Msr/Obs,WATER,NA,8/3/2015,13:45:00,MDT,8/4/2015,10:37:00,MDT,5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,No Fish Orig ID=0803151345 Organization ActivityID=YELL_YSL_144_20150803134502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 19:45,8/4/2015 16:37,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20170806115705^01,Field Msr/Obs,WATER,NA,8/6/2017,11:57:00,MDT,8/7/2017,12:15:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Orig ID=0806171157 Organization ActivityID=YELL_YSL_120_20170806115705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:57,8/7/2017 18:15,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20170805114303^01,Field Msr/Obs,WATER,NA,8/5/2017,11:43:00,MDT,8/6/2017,9:53:00,MDT,30.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0805171143 Organization ActivityID=YELL_YSL_144_20170805114303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:43,8/6/2017 15:53,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20110802130103^01,Field Msr/Obs,WATER,NA,8/2/2011,13:01:00,MDT,8/3/2011,8:20:00,MDT,23.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Alternate Site Orig ID=0802111301 Organization ActivityID=YELL_YSL_052_20110802130103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 19:01,8/3/2011 14:20,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20050922172002^01,Field Msr/Obs,WATER,NA,9/22/2005,17:20:00,MDT,9/23/2005,9:20:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=922051720 Organization ActivityID=YELL_2A_20050922172002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 23:20,9/23/2005 15:20,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20120815111404^01,Field Msr/Obs,WATER,NA,8/15/2012,11:14:00,MDT,8/16/2012,7:40:00,MDT,10.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0815121114 Organization ActivityID=YELL_YSL_163_20120815111404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 17:14,8/16/2012 13:40,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20110808091305^01,Field Msr/Obs,WATER,NA,8/8/2011,9:13:00,MDT,8/9/2011,7:30:00,MDT,41.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Only 2 fish in net. No fish for numbers 1 and 2 Orig ID=0808110913 Organization ActivityID=YELL_YSL_171_20110808091305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:13,8/9/2011 13:30,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20170802112604^01,Field Msr/Obs,WATER,NA,8/2/2017,11:26:00,MDT,8/3/2017,7:30:00,MDT,10.15,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0802171126 Organization ActivityID=YELL_YSL_058_20170802112604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:26,8/3/2017 13:30,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_202108031525_00^01,Field Msr/Obs,WATER,NA,8/3/2021,15:25:00,MDT,8/4/2021,8:03:00,MDT,48.95,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|2025|21|546797|4921493|546816|4921415 Organization ActivityID=YELL_YSL_175_202108031525_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 21:25,8/4/2021 14:03,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_202108031507_00^01,Field Msr/Obs,WATER,NA,8/3/2021,15:07:00,MDT,8/4/2021,7:33:00,MDT,1.32,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|2029|17|546986|4921931|546955|4921835 Organization ActivityID=YELL_YSL_175_202108031507_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 21:07,8/4/2021 13:33,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202008030943_00^01,Field Msr/Obs,WATER,NA,8/3/2020,9:43:00,MDT,8/4/2020,5:58:00,MDT,2.18,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: Large ETS|3001|23|546328|4919259|546423|4919301 Organization ActivityID=YELL_YSL_158_202008030943_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 15:43,8/4/2020 11:58,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20170802115502^01,Field Msr/Obs,WATER,NA,8/2/2017,11:55:00,MDT,8/3/2017,9:13:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0802171155 Organization ActivityID=YELL_YSL_021_20170802115502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:55,8/3/2017 15:13,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20110809094204^01,Field Msr/Obs,WATER,NA,8/9/2011,9:42:00,MDT,8/10/2011,7:56:00,MDT,22.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,No Fish Orig ID=0809110942 Organization ActivityID=YELL_YSL_153_20110809094204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 15:42,8/10/2011 13:56,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20120809123403^01,Field Msr/Obs,WATER,NA,8/9/2012,12:34:00,MDT,8/10/2012,10:30:00,MDT,10.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0809121234 Organization ActivityID=YELL_YSL_089_20120809123403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 18:34,8/10/2012 16:30,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20061001170504^01,Field Msr/Obs,WATER,NA,10/1/2006,17:05:00,MDT,10/2/2006,9:05:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=1001061705 Organization ActivityID=YELL_1C_20061001170504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/1/2006 23:05,10/2/2006 15:05,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20150804123504^01,Field Msr/Obs,WATER,NA,8/4/2015,12:35:00,MDT,8/5/2015,10:51:00,MDT,8.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804151235 Organization ActivityID=YELL_YSL_163_20150804123504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 18:35,8/5/2015 16:51,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20140804112402^01,Field Msr/Obs,WATER,NA,8/4/2014,11:24:00,MDT,8/5/2014,11:18:00,MDT,3.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0804141124 Organization ActivityID=YELL_YSL_077_20140804112402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:24,8/5/2014 17:18,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20150802102501^01,Field Msr/Obs,WATER,NA,8/2/2015,10:25:00,MDT,8/3/2015,8:32:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Large mesh towards shore. Orig ID=0802151025 Organization ActivityID=YELL_YSL_120_20150802102501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 16:25,8/3/2015 14:32,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20180805104501^01,Field Msr/Obs,WATER,NA,8/5/2018,10:45:00,MDT,8/6/2018,8:35:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Organization ActivityID=YELL_YSL_079_20180805104501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 16:45,8/6/2018 14:35,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20120808102903^01,Field Msr/Obs,WATER,NA,8/8/2012,10:29:00,MDT,8/9/2012,7:30:00,MDT,10.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0808121029 Organization ActivityID=YELL_YSL_077_20120808102903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:29,8/9/2012 13:30,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20180804101503^01,Field Msr/Obs,WATER,NA,8/4/2018,10:15:00,MDT,8/5/2018,7:45:00,MDT,9.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Organization ActivityID=YELL_YSL_058_20180804101503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:15,8/5/2018 13:45,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20150801095402^01,Field Msr/Obs,WATER,NA,8/1/2015,9:54:00,MDT,8/2/2015,8:30:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801150954 Organization ActivityID=YELL_YSL_190_20150801095402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 15:54,8/2/2015 14:30,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20050919162501^01,Field Msr/Obs,WATER,NA,9/19/2005,16:25:00,MDT,9/20/2005,8:25:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=919051625 Organization ActivityID=YELL_1B_20050919162501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:25,9/20/2005 14:25,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20110802111204^01,Field Msr/Obs,WATER,NA,8/2/2011,11:12:00,MDT,8/3/2011,8:08:00,MDT,28.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0802111112 Organization ActivityID=YELL_YSL_067_20110802111204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 17:12,8/3/2011 14:08,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20180806112105^01,Field Msr/Obs,WATER,NA,8/6/2018,11:21:00,MDT,8/7/2018,8:31:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Organization ActivityID=YELL_YSL_089_20180806112105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:21,8/7/2018 14:31,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20190803120004^01,Field Msr/Obs,WATER,NA,8/3/2019,12:00:00,MDT,8/4/2019,8:28:00,MDT,12.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,small to shore Organization ActivityID=YELL_YSL_012_20190803120004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 18:00,8/4/2019 14:28,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20120807120502^01,Field Msr/Obs,WATER,NA,8/7/2012,12:05:00,MDT,8/8/2012,9:04:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Logger 26. No Fish Orig ID=0807121205 Organization ActivityID=YELL_YSL_067_20120807120502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:05,8/8/2012 15:04,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20110803120802^01,Field Msr/Obs,WATER,NA,8/3/2011,12:08:00,MDT,8/4/2011,10:39:00,MDT,14.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Fixed Site Orig ID=0803111208 Organization ActivityID=YELL_YSL_080_20110803120802,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 18:08,8/4/2011 16:39,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20120813125905^01,Field Msr/Obs,WATER,NA,8/13/2012,12:59:00,MDT,8/14/2012,9:52:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0813121259 Organization ActivityID=YELL_YSL_209_20120813125905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 18:59,8/14/2012 15:52,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20050920183001^01,Field Msr/Obs,WATER,NA,9/20/2005,18:30:00,MDT,9/21/2005,10:30:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=920051830 Organization ActivityID=YELL_3B_20050920183001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 0:30,9/21/2005 16:30,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20190804110303^01,Field Msr/Obs,WATER,NA,8/4/2019,11:03:00,MDT,8/5/2019,9:21:00,MDT,13.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,large end to shore Organization ActivityID=YELL_YSL_082_20190804110303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:03,8/5/2019 15:21,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20150806131303^01,Field Msr/Obs,WATER,NA,8/6/2015,13:13:00,MDT,8/7/2015,10:47:00,MDT,6.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806151313 Organization ActivityID=YELL_YSL_023_20150806131303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 19:13,8/7/2015 16:47,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20120807123605^01,Field Msr/Obs,WATER,NA,8/7/2012,12:36:00,MDT,8/8/2012,9:42:00,MDT,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Logger 24 Orig ID=0807121236 Organization ActivityID=YELL_YSL_067_20120807123605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:36,8/8/2012 15:42,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20190806104706^01,Field Msr/Obs,WATER,NA,8/6/2019,10:47:00,MDT,8/7/2019,8:31:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,small end to shore Organization ActivityID=YELL_YSL_089_20190806104706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 16:47,8/7/2019 14:31,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_150_20100809165503^01,Field Msr/Obs,WATER,NA,8/9/2010,16:55:00,MDT,8/10/2010,9:29:00,MDT,18.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_150,Orig ID=0809101655 Organization ActivityID=YELL_YSL_150_20100809165503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 22:55,8/10/2010 15:29,Yellowstone Lake Shoreline KM 150,Lake,This station is located in region 2 near the north and west side of Flat Mountain Arm of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20140806121602^01,Field Msr/Obs,WATER,NA,8/6/2014,12:16:00,MDT,8/7/2014,9:57:00,MDT,3.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0806141216 Organization ActivityID=YELL_YSL_052_20140806121602,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:16,8/7/2014 15:57,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20110801111603^01,Field Msr/Obs,WATER,NA,8/1/2011,11:16:00,MDT,8/2/2011,14:00:00,MDT,22.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,No Fish Orig ID=0801111116 Organization ActivityID=YELL_YSL_041_20110801111603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 17:16,8/2/2011 20:00,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20130802125502^01,Field Msr/Obs,WATER,NA,8/2/2013,12:55:00,MDT,8/3/2013,7:18:00,MDT,3.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0802131255 Organization ActivityID=YELL_YSL_082_20130802125502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 18:55,8/3/2013 13:18,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20140805123904^01,Field Msr/Obs,WATER,NA,8/5/2014,12:39:00,MDT,8/6/2014,9:57:00,MDT,8.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805141239 Organization ActivityID=YELL_YSL_065_20140805123904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:39,8/6/2014 15:57,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20140804123202^01,Field Msr/Obs,WATER,NA,8/4/2014,12:32:00,MDT,8/5/2014,9:43:00,MDT,47.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,No Fish Orig ID=0804141232 Organization ActivityID=YELL_YSL_158_20140804123202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 18:32,8/5/2014 15:43,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20150801114104^01,Field Msr/Obs,WATER,NA,8/1/2015,11:41:00,MDT,8/2/2015,9:11:00,MDT,10.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Small mesh towards shore Orig ID=0801151141 Organization ActivityID=YELL_YSL_221_20150801114104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:41,8/2/2015 15:11,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_013_20100816153101^01,Field Msr/Obs,WATER,NA,8/16/2010,15:31:00,MDT,8/17/2010,8:34:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_013,Orig ID=0816101531 Organization ActivityID=YELL_YSL_013_20100816153101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 21:31,8/17/2010 14:34,Yellowstone Lake Shoreline KM 13,Lake,This site is located in the West Thumb of Yellowstone Lake within region 1 near the West Thumb Geyser Basin.,10070001,NA,NA,NA,NA,44.3955718,-110.5587041,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20140805123702^01,Field Msr/Obs,WATER,NA,8/5/2014,12:37:00,MDT,8/6/2014,9:49:00,MDT,3.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805141237 Organization ActivityID=YELL_YSL_065_20140805123702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:37,8/6/2014 15:49,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20190802123305^01,Field Msr/Obs,WATER,NA,8/2/2019,12:33:00,MDT,8/3/2019,10:23:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,small end to shore Organization ActivityID=YELL_YSL_059_20190802123305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:33,8/3/2019 16:23,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20180801105805^01,Field Msr/Obs,WATER,NA,8/1/2018,10:58:00,MDT,8/2/2018,10:26:00,MDT,41.17,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,2.0 to shore Orig ID=0801181058 Organization ActivityID=YELL_YSL_009_20180801105805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:58,8/2/2018 16:26,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20190805114905^01,Field Msr/Obs,WATER,NA,8/5/2019,11:49:00,MDT,8/6/2019,9:43:00,MDT,66.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,small end to shore Organization ActivityID=YELL_YSL_101_20190805114905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:49,8/6/2019 15:43,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20110801132203^01,Field Msr/Obs,WATER,NA,8/1/2011,13:22:00,MDT,8/2/2011,12:56:00,MDT,28.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0801111322 Organization ActivityID=YELL_YSL_065_20110801132203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 19:22,8/2/2011 18:56,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20190806111405^01,Field Msr/Obs,WATER,NA,8/6/2019,11:14:00,MDT,8/7/2019,9:06:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,small end to shore Organization ActivityID=YELL_YSL_120_20190806111405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 17:14,8/7/2019 15:06,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20170804094001^01,Field Msr/Obs,WATER,NA,8/4/2017,9:40:00,MDT,8/5/2017,7:44:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0804170940 Organization ActivityID=YELL_YSL_080_20170804094001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 15:40,8/5/2017 13:44,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20140806114105^01,Field Msr/Obs,WATER,NA,8/6/2014,11:41:00,MDT,8/7/2014,7:12:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0806141141 Organization ActivityID=YELL_YSL_058_20140806114105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 17:41,8/7/2014 13:12,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20130801125304^01,Field Msr/Obs,WATER,NA,8/1/2013,12:53:00,MDT,8/2/2013,11:00:00,MDT,9.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0801131253 Organization ActivityID=YELL_YSL_221_20130801125304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 18:53,8/2/2013 17:00,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20040913180501^01,Field Msr/Obs,WATER,NA,9/13/2004,18:05:00,MDT,9/14/2004,10:05:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,No Fish Orig ID=913041805 Organization ActivityID=YELL_3A_20040913180501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:05,9/14/2004 16:05,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20110802155905^01,Field Msr/Obs,WATER,NA,8/2/2011,15:59:00,MDT,8/3/2011,10:00:00,MDT,43.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0802111559 Organization ActivityID=YELL_YSL_079_20110802155905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 21:59,8/3/2011 16:00,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20100916170004^01,Field Msr/Obs,WATER,NA,9/16/2010,17:00:00,MDT,9/17/2010,8:28:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Dropped 1 LNS from 1 inch mesh Orig ID=0916101700 Organization ActivityID=YELL_3A_20100916170004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 23:00,9/17/2010 14:28,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_202008010941_00^01,Field Msr/Obs,WATER,NA,8/1/2020,9:41:00,MDT,8/2/2020,8:56:00,MDT,12.17,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,"Activity Net, Buoy, Start/End UTMs: Large ETS|4012|14|551693|4909095|551724|4909175 Organization ActivityID=YELL_YSL_121_202008010941_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 15:41,8/2/2020 14:56,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20110809122104^01,Field Msr/Obs,WATER,NA,8/9/2011,12:21:00,MDT,8/10/2011,9:54:00,MDT,20.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,No Fish Orig ID=0809111221 Organization ActivityID=YELL_YSL_006_20110809122104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.1,13.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:21,8/10/2011 15:54,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20140803122205^01,Field Msr/Obs,WATER,NA,8/3/2014,12:22:00,MDT,8/4/2014,8:52:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,No Fish; Mesh 3.5 towards shore Orig ID=0803141222 Organization ActivityID=YELL_YSL_003_20140803122205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 18:22,8/4/2014 14:52,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20170801115006^01,Field Msr/Obs,WATER,NA,8/1/2017,11:50:00,MDT,8/2/2017,10:43:00,MDT,43.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,duplicate net number Orig ID=0801171150 Organization ActivityID=YELL_YSL_027_20170801115006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 17:50,8/2/2017 16:43,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20120807095402^01,Field Msr/Obs,WATER,NA,8/7/2012,9:54:00,MDT,8/8/2012,9:30:00,MDT,3.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0807120954 Organization ActivityID=YELL_YSL_006_20120807095402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:54,8/8/2012 15:30,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20140804114203^01,Field Msr/Obs,WATER,NA,8/4/2014,11:42:00,MDT,8/5/2014,10:34:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0804141142 Organization ActivityID=YELL_YSL_077_20140804114203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:42,8/5/2014 16:34,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20120916093901^01,Field Msr/Obs,WATER,NA,9/16/2012,9:39:00,MDT,9/17/2012,8:42:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0916120939 Organization ActivityID=YELL_4A_20120916093901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2012 15:39,9/17/2012 14:42,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20140802110804^01,Field Msr/Obs,WATER,NA,8/2/2014,11:08:00,MDT,8/3/2014,7:36:00,MDT,10.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Mesh 0.75 to shore Orig ID=0802141108 Organization ActivityID=YELL_YSL_012_20140802110804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:08,8/3/2014 13:36,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_036_20100817191502^01,Field Msr/Obs,WATER,NA,8/17/2010,19:15:00,MDT,8/18/2010,8:40:00,MDT,5.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_036,dropped yct at 2.75 inch mesh Orig ID=0817101915 Organization ActivityID=YELL_YSL_036_20100817191502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 1:15,8/18/2010 14:40,Yellowstone Lake Shoreline KM 36,Lake,This site is located in the Breeze Channel portion of Yellowstone Lake in region 2. It is on the north shore of the channel approximately midway between Pumice and Rock points.,10070001,NA,NA,NA,NA,44.4716928,-110.4539624,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20170803111502^01,Field Msr/Obs,WATER,NA,8/3/2017,11:15:00,MDT,8/4/2017,9:01:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0803171115 Organization ActivityID=YELL_YSL_003_20170803111502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:15,8/4/2017 15:01,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20150803121204^01,Field Msr/Obs,WATER,NA,8/3/2015,12:12:00,MDT,8/4/2015,7:44:00,MDT,14.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0803151212 Organization ActivityID=YELL_YSL_082_20150803121204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 18:12,8/4/2015 13:44,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_202008040955_00^01,Field Msr/Obs,WATER,NA,8/4/2020,9:55:00,MDT,8/5/2020,7:13:00,MDT,2.19,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,"Activity Net, Buoy, Start/End UTMs: Small ETS|3029|16|539595|4917056|539499|4917102 Organization ActivityID=YELL_YSL_006_202008040955_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 15:55,8/5/2020 13:13,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20190805130005^01,Field Msr/Obs,WATER,NA,8/5/2019,13:00:00,MDT,8/6/2019,8:36:00,MDT,28,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,small end to shore Organization ActivityID=YELL_YSL_144_20190805130005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 19:00,8/6/2019 14:36,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20140803114802^01,Field Msr/Obs,WATER,NA,8/3/2014,11:48:00,MDT,8/4/2014,10:18:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Mesh 0.75 towards shore Orig ID=0803141148 Organization ActivityID=YELL_YSL_003_20140803114802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 17:48,8/4/2014 16:18,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20180802105502^01,Field Msr/Obs,WATER,NA,8/2/2018,10:55:00,MDT,8/3/2018,9:09:00,MDT,39.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,2.0 to Shore; No Fish Orig ID=0802181055 Organization ActivityID=YELL_YSL_045_20180802105502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:55,8/3/2018 15:09,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20120806093201^01,Field Msr/Obs,WATER,NA,8/6/2012,9:32:00,MDT,8/7/2012,8:59:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Logger 21 Orig ID=0806120932 Organization ActivityID=YELL_YSL_052_20120806093201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 15:32,8/7/2012 14:59,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20180802103506^01,Field Msr/Obs,WATER,NA,8/2/2018,10:35:00,MDT,8/3/2018,8:19:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,0.75 to Shore; 1.0 LNS fell out Orig ID=0802181035 Organization ActivityID=YELL_YSL_045_20180802103506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:35,8/3/2018 14:19,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20170803104504^01,Field Msr/Obs,WATER,NA,8/3/2017,10:45:00,MDT,8/4/2017,8:19:00,MDT,21.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,no fish Orig ID=0803171045 Organization ActivityID=YELL_YSL_012_20170803104504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:45,8/4/2017 14:19,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202008021011_00^01,Field Msr/Obs,WATER,NA,8/2/2020,10:11:00,MDT,8/3/2020,6:40:00,MDT,2.57,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: Small ETS|2020|18|551578|4914226|551666|4914213 Organization ActivityID=YELL_YSL_128_202008021011_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 16:11,8/3/2020 12:40,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20180806105401^01,Field Msr/Obs,WATER,NA,8/6/2018,10:54:00,MDT,8/7/2018,7:36:00,MDT,2.18,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Organization ActivityID=YELL_YSL_121_20180806105401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 16:54,8/7/2018 13:36,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20120809121005^01,Field Msr/Obs,WATER,NA,8/9/2012,12:10:00,MDT,8/10/2012,9:29:00,MDT,28.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0809121210 Organization ActivityID=YELL_YSL_045_20120809121005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 18:10,8/10/2012 15:29,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20050922181503^01,Field Msr/Obs,WATER,NA,9/22/2005,18:15:00,MDT,9/23/2005,10:15:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=922051815 Organization ActivityID=YELL_3A_20050922181503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2005 0:15,9/23/2005 16:15,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20061004172503^01,Field Msr/Obs,WATER,NA,10/4/2006,17:25:00,MDT,10/5/2006,9:25:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=1001061725 Organization ActivityID=YELL_2A_20061004172503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 23:25,10/5/2006 15:25,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20100917144403^01,Field Msr/Obs,WATER,NA,9/17/2010,14:44:00,MDT,9/18/2010,8:27:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0917101444 Organization ActivityID=YELL_1C_20100917144403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 20:44,9/18/2010 14:27,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20190805134103^01,Field Msr/Obs,WATER,NA,8/5/2019,13:41:00,MDT,8/6/2019,9:42:00,MDT,13.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,small end to shore Organization ActivityID=YELL_YSL_148_20190805134103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 19:41,8/6/2019 15:42,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20140804103202^01,Field Msr/Obs,WATER,NA,8/4/2014,10:32:00,MDT,8/5/2014,9:18:00,MDT,3.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804141032 Organization ActivityID=YELL_YSL_171_20140804103202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 16:32,8/5/2014 15:18,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20170805104606^01,Field Msr/Obs,WATER,NA,8/5/2017,10:46:00,MDT,8/6/2017,8:10:00,MDT,41.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,no fish Orig ID=0805171046 Organization ActivityID=YELL_YSL_168_20170805104606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:46,8/6/2017 14:10,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20150802120605^01,Field Msr/Obs,WATER,NA,8/2/2015,12:06:00,MDT,8/3/2015,11:16:00,MDT,62.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,"Yellow, orange. Steep contour, net deeper than ideal. Orig ID=0802151206 Organization ActivityID=YELL_YSL_101_20150802120605",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 18:06,8/3/2015 17:16,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20170804121705^01,Field Msr/Obs,WATER,NA,8/4/2017,12:17:00,MDT,8/5/2017,9:45:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804171217 Organization ActivityID=YELL_YSL_158_20170804121705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 18:17,8/5/2017 15:45,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20150801115706^01,Field Msr/Obs,WATER,NA,8/1/2015,11:57:00,MDT,8/2/2015,9:37:00,MDT,39.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,2.25 to shore. No Fish. Orig ID=0801151157 Organization ActivityID=YELL_YSL_221_20150801115706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:57,8/2/2015 15:37,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20150806125902^01,Field Msr/Obs,WATER,NA,8/6/2015,12:59:00,MDT,8/7/2015,11:18:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806151259 Organization ActivityID=YELL_YSL_023_20150806125902,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 18:59,8/7/2015 17:18,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20110803140106^01,Field Msr/Obs,WATER,NA,8/3/2011,14:01:00,MDT,8/4/2011,10:58:00,MDT,42.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,No Fish Orig ID=0803111401 Organization ActivityID=YELL_YSL_121_20110803140106,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 20:01,8/4/2011 16:58,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_202008050923_00^01,Field Msr/Obs,WATER,NA,8/5/2020,9:23:00,MDT,8/6/2020,7:13:00,MDT,40.16,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,"Activity Net, Buoy, Start/End UTMs: Large ETS|2025|16|537979|4916440|536905|4916522 Organization ActivityID=YELL_YSL_009_202008050923_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 15:23,8/6/2020 13:13,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20140803115903^01,Field Msr/Obs,WATER,NA,8/3/2014,11:59:00,MDT,8/4/2014,9:16:00,MDT,8.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Mesh 2.25 towards shore Orig ID=0803141159 Organization ActivityID=YELL_YSL_003_20140803115903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 17:59,8/4/2014 15:16,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20110803123805^01,Field Msr/Obs,WATER,NA,8/3/2011,12:38:00,MDT,8/4/2011,9:44:00,MDT,42.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803111238 Organization ActivityID=YELL_YSL_080_20110803123805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 18:38,8/4/2011 15:44,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20120815131301^01,Field Msr/Obs,WATER,NA,8/15/2012,13:13:00,MDT,8/16/2012,10:00:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0815121313 Organization ActivityID=YELL_YSL_158_20120815131301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 19:13,8/16/2012 16:00,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20040915193003^01,Field Msr/Obs,WATER,NA,9/15/2004,19:30:00,MDT,9/16/2004,11:30:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=915041930 Organization ActivityID=YELL_4B_20040915193003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2004 1:30,9/16/2004 17:30,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20150801113503^01,Field Msr/Obs,WATER,NA,8/1/2015,11:35:00,MDT,8/2/2015,9:00:00,MDT,10.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Small mesh towards shore 0.75 Orig ID=0801151135 Organization ActivityID=YELL_YSL_221_20150801113503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:35,8/2/2015 15:00,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20180803104304^01,Field Msr/Obs,WATER,NA,8/3/2018,10:43:00,MDT,8/4/2018,7:19:00,MDT,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Organization ActivityID=YELL_YSL_052_20180803104304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:43,8/4/2018 13:19,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20180806103502^01,Field Msr/Obs,WATER,NA,8/6/2018,10:35:00,MDT,8/7/2018,7:39:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Organization ActivityID=YELL_YSL_089_20180806103502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 16:35,8/7/2018 13:39,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20150802105303^01,Field Msr/Obs,WATER,NA,8/2/2015,10:53:00,MDT,8/3/2015,9:17:00,MDT,9.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Large mesh towards shore. Orig ID=0802151053 Organization ActivityID=YELL_YSL_120_20150802105303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 16:53,8/3/2015 15:17,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_024_20100810165401^01,Field Msr/Obs,WATER,NA,8/10/2010,16:54:00,MDT,8/11/2010,10:02:00,MDT,4.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_024,one YCT lost in 1.25 Orig ID=0810101654 Organization ActivityID=YELL_YSL_024_20100810165401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 22:54,8/11/2010 16:02,Yellowstone Lake Shoreline KM 24,Lake,Station 24 is located in the West Thumb portion of Yellowstone Lake along the western shoreline near the vicinity of Carrington Island.,10070001,NA,NA,NA,NA,44.4562099,-110.5580606,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20150803110304^01,Field Msr/Obs,WATER,NA,8/3/2015,11:03:00,MDT,8/4/2015,8:26:00,MDT,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,No dead fish Orig ID=0803151103 Organization ActivityID=YELL_YSL_148_20150803110304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 17:03,8/4/2015 14:26,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20040916202504^01,Field Msr/Obs,WATER,NA,9/16/2004,20:25:00,MDT,9/17/2004,12:25:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=916042025 Organization ActivityID=YELL_7C_20040916202504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 2:25,9/17/2004 18:25,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20140803084802^01,Field Msr/Obs,WATER,NA,8/3/2014,8:48:00,MDT,8/4/2014,8:00:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Mesh 2.25 towards shore Orig ID=0803140848 Organization ActivityID=YELL_YSL_006_20140803084802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 14:48,8/4/2014 14:00,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20110801140105^01,Field Msr/Obs,WATER,NA,8/1/2011,14:01:00,MDT,8/2/2011,12:04:00,MDT,52,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0801111401 Organization ActivityID=YELL_YSL_065_20110801140105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 20:01,8/2/2011 18:04,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20140803104303^01,Field Msr/Obs,WATER,NA,8/3/2014,10:43:00,MDT,8/4/2014,8:10:00,MDT,3.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803141043 Organization ActivityID=YELL_YSL_080_20140803104303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 16:43,8/4/2014 14:10,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_202008061053_00^01,Field Msr/Obs,WATER,NA,8/6/2020,10:53:00,MDT,8/7/2020,7:36:00,MDT,12.82,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,"Activity Net, Buoy, Start/End UTMs: Large ETS|2026|20|535966|4924031|536011|4923959 Organization ActivityID=YELL_YSL_025_202008061053_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 16:53,8/7/2020 13:36,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20170801144601^01,Field Msr/Obs,WATER,NA,8/1/2017,14:46:00,MDT,8/2/2017,8:42:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Small to shore Orig ID=0801171446 Organization ActivityID=YELL_YSL_041_20170801144601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 20:46,8/2/2017 14:42,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20180803113206^01,Field Msr/Obs,WATER,NA,8/3/2018,11:32:00,MDT,8/4/2018,9:34:00,MDT,39.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Organization ActivityID=YELL_YSL_158_20180803113206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:32,8/4/2018 15:34,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20140804111706^01,Field Msr/Obs,WATER,NA,8/4/2014,11:17:00,MDT,8/5/2014,7:55:00,MDT,38.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804141117 Organization ActivityID=YELL_YSL_163_20140804111706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:17,8/5/2014 13:55,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20100916162104^01,Field Msr/Obs,WATER,NA,9/16/2010,16:21:00,MDT,9/17/2010,8:02:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0916101621 Organization ActivityID=YELL_3B_20100916162104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 22:21,9/17/2010 14:02,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20150804120701^01,Field Msr/Obs,WATER,NA,8/4/2015,12:07:00,MDT,8/5/2015,11:31:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804151207 Organization ActivityID=YELL_YSL_163_20150804120701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 18:07,8/5/2015 17:31,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20110801122702^01,Field Msr/Obs,WATER,NA,8/1/2011,12:27:00,MDT,8/2/2011,9:29:00,MDT,13.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0801111227 Organization ActivityID=YELL_YSL_058_20110801122702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 18:27,8/2/2011 15:29,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20120816115805^01,Field Msr/Obs,WATER,NA,8/16/2012,11:58:00,MDT,8/17/2012,7:33:00,MDT,36.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0816121158 Organization ActivityID=YELL_YSL_171_20120816115805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2012 17:58,8/17/2012 13:33,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202008040943_00^01,Field Msr/Obs,WATER,NA,8/4/2020,9:43:00,MDT,8/5/2020,6:58:00,MDT,41.14,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: Large ETS|4017|23|539344|4920452|539308|4920513 Organization ActivityID=YELL_YSL_003_202008040943_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 15:43,8/5/2020 12:58,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20180807113102^01,Field Msr/Obs,WATER,NA,8/7/2018,11:31:00,MDT,8/8/2018,9:21:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Organization ActivityID=YELL_YSL_210_20180807113102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:31,8/8/2018 15:21,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20120814151803^01,Field Msr/Obs,WATER,NA,8/14/2012,15:18:00,MDT,8/15/2012,11:12:00,MDT,11.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0814121518 Organization ActivityID=YELL_YSL_221_20120814151803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 21:18,8/15/2012 17:12,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20150804122703^01,Field Msr/Obs,WATER,NA,8/4/2015,12:27:00,MDT,8/5/2015,11:01:00,MDT,9.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804151227 Organization ActivityID=YELL_YSL_163_20150804122703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 18:27,8/5/2015 17:01,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20100802183805^01,Field Msr/Obs,WATER,NA,8/2/2010,18:38:00,MDT,8/3/2010,9:47:00,MDT,43.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0802101838 Organization ActivityID=YELL_YSL_052_20100802183805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 0:38,8/3/2010 15:47,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20190806120004^01,Field Msr/Obs,WATER,NA,8/6/2019,12:00:00,MDT,8/7/2019,10:34:00,MDT,13.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,small end to shore Organization ActivityID=YELL_YSL_128_20190806120004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 18:00,8/7/2019 16:34,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20100913182604^01,Field Msr/Obs,WATER,NA,9/13/2010,18:26:00,MDT,9/14/2010,9:09:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,One YCT fell out of 1.5 inch mesh Orig ID=0913101826 Organization ActivityID=YELL_4B_20100913182604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 0:26,9/14/2010 15:09,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20120816114503^01,Field Msr/Obs,WATER,NA,8/16/2012,11:45:00,MDT,8/17/2012,7:50:00,MDT,11.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0816121145 Organization ActivityID=YELL_YSL_171_20120816114503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2012 17:45,8/17/2012 13:50,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20110808102705^01,Field Msr/Obs,WATER,NA,8/8/2011,10:27:00,MDT,8/9/2011,9:10:00,MDT,42.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0808111027 Organization ActivityID=YELL_YSL_128_20110808102705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.1,13.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 16:27,8/9/2011 15:10,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20170807133006^01,Field Msr/Obs,WATER,NA,8/7/2017,13:30:00,MDT,8/8/2017,8:56:00,MDT,38.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,no fish Orig ID=0807171330 Organization ActivityID=YELL_YSL_190_20170807133006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:30,8/8/2017 14:56,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_106_20100803163004^01,Field Msr/Obs,WATER,NA,8/3/2010,16:30:00,MDT,8/4/2010,9:42:00,MDT,26.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_106,Orig ID=0803101630 Organization ActivityID=YELL_YSL_106_20100803163004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 22:30,8/4/2010 15:42,Yellowstone Lake Shoreline KM 106,Lake,This station is located in the South Arm of Yellowstone Lake along the east shore approximately one fourth the way between the main lake basin and the non-motorized zone.,10070001,NA,NA,NA,NA,44.3777623,-110.2979164,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20140801104201^01,Field Msr/Obs,WATER,NA,8/1/2014,10:42:00,MDT,8/2/2014,8:57:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Mesh 2.0 inch towards shore Orig ID=0801141042 Organization ActivityID=YELL_YSL_025_20140801104201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 16:42,8/2/2014 14:57,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20190802120204^01,Field Msr/Obs,WATER,NA,8/2/2019,12:02:00,MDT,8/3/2019,8:44:00,MDT,13.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,small to shore Organization ActivityID=YELL_YSL_023_20190802120204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:02,8/3/2019 14:44,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20140804114905^01,Field Msr/Obs,WATER,NA,8/4/2014,11:49:00,MDT,8/5/2014,10:22:00,MDT,42.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,No Fish Orig ID=0804141149 Organization ActivityID=YELL_YSL_077_20140804114905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:49,8/5/2014 16:22,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20120816120306^01,Field Msr/Obs,WATER,NA,8/16/2012,12:03:00,MDT,8/17/2012,7:27:00,MDT,35.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,No Fish Caught Orig ID=0816121203 Organization ActivityID=YELL_YSL_171_20120816120306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2012 18:03,8/17/2012 13:27,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20170805103903^01,Field Msr/Obs,WATER,NA,8/5/2017,10:39:00,MDT,8/6/2017,8:13:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0805171039 Organization ActivityID=YELL_YSL_148_20170805103903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:39,8/6/2017 14:13,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20140803121104^01,Field Msr/Obs,WATER,NA,8/3/2014,12:11:00,MDT,8/4/2014,9:31:00,MDT,8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Mesh 2.0 inches towards shore Orig ID=0803141211 Organization ActivityID=YELL_YSL_003_20140803121104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 18:11,8/4/2014 15:31,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20170803102302^01,Field Msr/Obs,WATER,NA,8/3/2017,10:23:00,MDT,8/4/2017,7:25:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0803171023 Organization ActivityID=YELL_YSL_012_20170803102302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:23,8/4/2017 13:25,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20180804105005^01,Field Msr/Obs,WATER,NA,8/4/2018,10:50:00,MDT,8/5/2018,9:50:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Organization ActivityID=YELL_YSL_171_20180804105005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:50,8/5/2018 15:50,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20061002191505^01,Field Msr/Obs,WATER,NA,10/2/2006,19:15:00,MDT,10/3/2006,11:15:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=1002061915 Organization ActivityID=YELL_4B_20061002191505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 1:15,10/3/2006 17:15,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20130802132305^01,Field Msr/Obs,WATER,NA,8/2/2013,13:23:00,MDT,8/3/2013,8:20:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0802131324 Organization ActivityID=YELL_YSL_082_20130802132305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 19:23,8/3/2013 14:20,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20120808104203^01,Field Msr/Obs,WATER,NA,8/8/2012,10:42:00,MDT,8/9/2012,7:39:00,MDT,18,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0808121042 Organization ActivityID=YELL_YSL_023_20120808104203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:42,8/9/2012 13:39,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20100819172006^01,Field Msr/Obs,WATER,NA,8/19/2010,17:20:00,MDT,8/20/2010,10:28:00,MDT,42.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,No Fish Caught Orig ID=0819101720 Organization ActivityID=YELL_YSL_059_20100819172006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 23:20,8/20/2010 16:28,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20120806113303^01,Field Msr/Obs,WATER,NA,8/6/2012,11:33:00,MDT,8/7/2012,10:38:00,MDT,12.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Logger 20 Orig ID=0806121133 Organization ActivityID=YELL_YSL_058_20120806113303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 17:33,8/7/2012 16:38,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20140803122906^01,Field Msr/Obs,WATER,NA,8/3/2014,12:29:00,MDT,8/4/2014,9:01:00,MDT,42.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Mesh 0.75 towards shore Orig ID=0803141229 Organization ActivityID=YELL_YSL_003_20140803122906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 18:29,8/4/2014 15:01,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20190805135404^01,Field Msr/Obs,WATER,NA,8/5/2019,13:54:00,MDT,8/6/2019,9:50:00,MDT,16.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,large end to shore Organization ActivityID=YELL_YSL_148_20190805135404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 19:54,8/6/2019 15:50,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20170803105106^01,Field Msr/Obs,WATER,NA,8/3/2017,10:51:00,MDT,8/4/2017,8:31:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,no fish Orig ID=0803171051 Organization ActivityID=YELL_YSL_012_20170803105106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:51,8/4/2017 14:31,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20040915162501^01,Field Msr/Obs,WATER,NA,9/15/2004,16:25:00,MDT,9/16/2004,8:25:00,MDT,0.98,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=915041625 Organization ActivityID=YELL_1B_20040915162501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:25,9/16/2004 14:25,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20050919164004^01,Field Msr/Obs,WATER,NA,9/19/2005,16:40:00,MDT,9/20/2005,8:40:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=919051640 Organization ActivityID=YELL_1B_20050919164004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:40,9/20/2005 14:40,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20100805163505^01,Field Msr/Obs,WATER,NA,8/5/2010,16:35:00,MDT,8/6/2010,8:53:00,MDT,42.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0805101635 Organization ActivityID=YELL_YSL_082_20100805163505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 22:35,8/6/2010 14:53,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20150806132304^01,Field Msr/Obs,WATER,NA,8/6/2015,13:23:00,MDT,8/7/2015,10:39:00,MDT,5.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806151323 Organization ActivityID=YELL_YSL_023_20150806132304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 19:23,8/7/2015 16:39,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20110808083202^01,Field Msr/Obs,WATER,NA,8/8/2011,8:32:00,MDT,8/9/2011,8:30:00,MDT,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0808110832 Organization ActivityID=YELL_YSL_171_20110808083202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 14:32,8/9/2011 14:30,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20050919171005^01,Field Msr/Obs,WATER,NA,9/19/2005,17:10:00,MDT,9/20/2005,9:10:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=919051710 Organization ActivityID=YELL_1C_20050919171005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 23:10,9/20/2005 15:10,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_202108050953_00^01,Field Msr/Obs,WATER,NA,8/5/2021,9:53:00,MDT,8/6/2021,7:33:00,MDT,6.47,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|4013|3|534020|4919725|534118|4919748 Organization ActivityID=YELL_YSL_021_202108050953_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 15:53,8/6/2021 13:33,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20130801122602^01,Field Msr/Obs,WATER,NA,8/1/2013,12:26:00,MDT,8/2/2013,11:58:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0801131226 Organization ActivityID=YELL_YSL_221_20130801122602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 18:26,8/2/2013 17:58,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20120919095605^01,Field Msr/Obs,WATER,NA,9/19/2012,9:56:00,MDT,9/20/2012,7:30:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=0919120956 Organization ActivityID=YELL_2A_20120919095605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 15:56,9/20/2012 13:30,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20110801121004^01,Field Msr/Obs,WATER,NA,8/1/2011,12:10:00,MDT,8/2/2011,9:16:00,MDT,23,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,No Fish Orig ID=0801111210 Organization ActivityID=YELL_YSL_058_20110801121004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 18:10,8/2/2011 15:16,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20120809122001^01,Field Msr/Obs,WATER,NA,8/9/2012,12:20:00,MDT,8/10/2012,10:54:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0809121220 Organization ActivityID=YELL_YSL_089_20120809122001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 18:20,8/10/2012 16:54,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20190803111304^01,Field Msr/Obs,WATER,NA,8/3/2019,11:13:00,MDT,8/4/2019,7:47:00,MDT,14.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,large end to shore Organization ActivityID=YELL_YSL_177_20190803111304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:13,8/4/2019 13:47,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20130802151003^01,Field Msr/Obs,WATER,NA,8/2/2013,15:10:00,MDT,8/3/2013,12:16:00,MDT,26.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Northing from end UTM is missing a digit. Orig ID=0802131510 Organization ActivityID=YELL_YSL_144_20130802151003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 21:10,8/3/2013 18:16,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20061005162005^01,Field Msr/Obs,WATER,NA,10/5/2006,16:20:00,MDT,10/6/2006,8:20:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=1005061620 Organization ActivityID=YELL_1A_20061005162005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:20,10/6/2006 14:20,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20190806121606^01,Field Msr/Obs,WATER,NA,8/6/2019,12:16:00,MDT,8/7/2019,11:08:00,MDT,36,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Large end to shore Organization ActivityID=YELL_YSL_128_20190806121606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 18:16,8/7/2019 17:08,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20130801132405^01,Field Msr/Obs,WATER,NA,8/1/2013,13:24:00,MDT,8/2/2013,10:19:00,MDT,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0801131324 Organization ActivityID=YELL_YSL_221_20130801132405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 19:24,8/2/2013 16:19,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20140801111306^01,Field Msr/Obs,WATER,NA,8/1/2014,11:13:00,MDT,8/2/2014,10:22:00,MDT,38.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Mesh 0.75 towards shore Orig ID=0801141113 Organization ActivityID=YELL_YSL_025_20140801111306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 17:13,8/2/2014 16:22,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20150803105101^01,Field Msr/Obs,WATER,NA,8/3/2015,10:51:00,MDT,8/4/2015,7:55:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,0.75 mesh towards shore Orig ID=0803151051 Organization ActivityID=YELL_YSL_148_20150803105101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 16:51,8/4/2015 13:55,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20180804100403^01,Field Msr/Obs,WATER,NA,8/4/2018,10:04:00,MDT,8/5/2018,7:56:00,MDT,8.95,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Organization ActivityID=YELL_YSL_153_20180804100403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:04,8/5/2018 13:56,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20190803114803^01,Field Msr/Obs,WATER,NA,8/3/2019,11:48:00,MDT,8/4/2019,8:16:00,MDT,12.71,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,small to shore Organization ActivityID=YELL_YSL_012_20190803114803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:48,8/4/2019 14:16,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20190805113904^01,Field Msr/Obs,WATER,NA,8/5/2019,11:39:00,MDT,8/6/2019,9:33:00,MDT,39.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,large end to shore Organization ActivityID=YELL_YSL_101_20190805113904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:39,8/6/2019 15:33,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20170802111102^01,Field Msr/Obs,WATER,NA,8/2/2017,11:11:00,MDT,8/3/2017,7:57:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0802171111 Organization ActivityID=YELL_YSL_023_20170802111102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:11,8/3/2017 13:57,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_004_20100816161002^01,Field Msr/Obs,WATER,NA,8/16/2010,16:10:00,MDT,8/17/2010,9:50:00,MDT,3.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_004,One YCT dropped from 2 inch mesh; One sucker dropped from 1 inch mesh; one YCT dropped from 1 inch mesh Orig ID=0816101610 Organization ActivityID=YELL_YSL_004_20100816161002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 22:10,8/17/2010 15:50,Yellowstone Lake Shoreline KM 4,Lake,Station located on the southeast corner of West Thumb of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_051_20100802152002^01,Field Msr/Obs,WATER,NA,8/2/2010,15:20:00,MDT,8/3/2010,9:30:00,MDT,6.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_051,Orig ID=0802101520 Organization ActivityID=YELL_YSL_051_20100802152002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2010 21:20,8/3/2010 15:30,Yellowstone Lake Shoreline KM 51,Lake,Station located on north shore of Yellowstone Lake approximately 2 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.5367389,-110.4310425,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20150802112205^01,Field Msr/Obs,WATER,NA,8/2/2015,11:22:00,MDT,8/3/2015,8:32:00,MDT,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802151122 Organization ActivityID=YELL_YSL_089_20150802112205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:22,8/3/2015 14:32,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20170805110001^01,Field Msr/Obs,WATER,NA,8/5/2017,11:00:00,MDT,8/6/2017,9:16:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0805171100 Organization ActivityID=YELL_YSL_171_20170805110001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:00,8/6/2017 15:16,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20150807112606^01,Field Msr/Obs,WATER,NA,8/7/2015,11:26:00,MDT,8/8/2015,9:26:00,MDT,38.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,No Fish Orig ID=0807151126 Organization ActivityID=YELL_YSL_042_20150807112606,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 17:26,8/8/2015 15:26,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20140803104805^01,Field Msr/Obs,WATER,NA,8/3/2014,10:48:00,MDT,8/4/2014,7:48:00,MDT,3.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,1 dropped cutt Orig ID=0803141048 Organization ActivityID=YELL_YSL_080_20140803104805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 16:48,8/4/2014 13:48,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20050920191004^01,Field Msr/Obs,WATER,NA,9/20/2005,19:10:00,MDT,9/21/2005,11:10:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=920051910 Organization ActivityID=YELL_4A_20050920191004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 1:10,9/21/2005 17:10,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_202108010927_00^01,Field Msr/Obs,WATER,NA,8/1/2021,9:27:00,MDT,8/2/2021,9:27:00,MDT,11.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|4012|13|552076|4908809|552149|4908834 Organization ActivityID=YELL_YSL_120_202108010927_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 15:27,8/2/2021 15:27,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20120809124805^01,Field Msr/Obs,WATER,NA,8/9/2012,12:48:00,MDT,8/10/2012,10:22:00,MDT,41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,logger 19 Orig ID=0809121248 Organization ActivityID=YELL_YSL_089_20120809124805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 18:48,8/10/2012 16:22,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20150805124503^01,Field Msr/Obs,WATER,NA,8/5/2015,12:45:00,MDT,8/6/2015,12:07:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0805151245 Organization ActivityID=YELL_YSL_012_20150805124503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 18:45,8/6/2015 18:07,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20050921202003^01,Field Msr/Obs,WATER,NA,9/21/2005,20:20:00,MDT,9/22/2005,12:20:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=921052020 Organization ActivityID=YELL_7C_20050921202003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 2:20,9/22/2005 18:20,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20150801120505^01,Field Msr/Obs,WATER,NA,8/1/2015,12:05:00,MDT,8/2/2015,9:25:00,MDT,38.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0801151205 Organization ActivityID=YELL_YSL_221_20150801120505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 18:05,8/2/2015 15:25,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20110808083901^01,Field Msr/Obs,WATER,NA,8/8/2011,8:39:00,MDT,8/9/2011,8:36:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0808110839 Organization ActivityID=YELL_YSL_152_20110808083901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 14:39,8/9/2011 14:36,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20160801093905^01,Field Msr/Obs,WATER,NA,8/1/2016,9:39:00,MDT,8/2/2016,9:42:00,MDT,42.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0801160939 Organization ActivityID=YELL_YSL_218_20160801093905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:39,8/2/2016 15:42,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20120917095802^01,Field Msr/Obs,WATER,NA,9/17/2012,9:58:00,MDT,9/18/2012,8:40:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917120958 Organization ActivityID=YELL_3A_20120917095802,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 15:58,9/18/2012 14:40,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20140805114801^01,Field Msr/Obs,WATER,NA,8/5/2014,11:48:00,MDT,8/6/2014,8:59:00,MDT,4.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805141148 Organization ActivityID=YELL_YSL_067_20140805114801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 17:48,8/6/2014 14:59,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20150802122106^01,Field Msr/Obs,WATER,NA,8/2/2015,12:21:00,MDT,8/3/2015,13:19:00,MDT,41.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Small mesh towards shore, no fish. Orig ID=0802151221 Organization ActivityID=YELL_YSL_128_20150802122106",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 18:21,8/3/2015 19:19,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20150805091302^01,Field Msr/Obs,WATER,NA,8/5/2015,9:13:00,MDT,8/6/2015,9:18:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0805150913 Organization ActivityID=YELL_YSL_003_20150805091302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 15:13,8/6/2015 15:18,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20100912171203^01,Field Msr/Obs,WATER,NA,9/12/2010,17:12:00,MDT,9/13/2010,7:55:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0912101712 Organization ActivityID=YELL_6C_20100912171203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2010 23:12,9/13/2010 13:55,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20180801103202^01,Field Msr/Obs,WATER,NA,8/1/2018,10:32:00,MDT,8/2/2018,9:32:00,MDT,3.03,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,2.25 To Shore; new net Orig ID=0801181032 Organization ActivityID=YELL_YSL_009_20180801103202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:32,8/2/2018 15:32,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_AMP01_071761330G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,6/25/2007,13:25:00,MDT,6/25/2007,14:31:00,MDT,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_AMP01,Duplicate water column parameters Organization ActivityID=GRTE_AMP01_071761330G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.99,11.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/25/2007 19:25,6/25/2007 20:31,Amphitheater Lake,Lake,The hiking trial will lead you right up to the outlet of the lake. Our site is located on the right side of the outlet when you are looking at the lake. The site is at the first sign of running water in the outlet.,17040101,NA,NA,NA,NA,43.72922327,-110.7798475,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9663.09,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20120917113302^01,Field Msr/Obs,WATER,NA,9/17/2012,11:33:00,MDT,9/18/2012,11:29:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0917121133 Organization ActivityID=YELL_3B_20120917113302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 17:33,9/18/2012 17:29,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20150804103606^01,Field Msr/Obs,WATER,NA,8/4/2015,10:36:00,MDT,8/5/2015,7:18:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804151036 Organization ActivityID=YELL_YSL_168_20150804103606,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:36,8/5/2015 13:18,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20180804110105^01,Field Msr/Obs,WATER,NA,8/4/2018,11:01:00,MDT,8/5/2018,10:05:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Organization ActivityID=YELL_YSL_067_20180804110105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 17:01,8/5/2018 16:05,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20040915192502^01,Field Msr/Obs,WATER,NA,9/15/2004,19:25:00,MDT,9/16/2004,11:25:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=915041925 Organization ActivityID=YELL_4B_20040915192502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2004 1:25,9/16/2004 17:25,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20150803124002^01,Field Msr/Obs,WATER,NA,8/3/2015,12:40:00,MDT,8/4/2015,9:22:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803151240 Organization ActivityID=YELL_YSL_080_20150803124002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 18:40,8/4/2015 15:22,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20120918110805^01,Field Msr/Obs,WATER,NA,9/18/2012,11:08:00,MDT,9/19/2012,9:53:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0918121108 Organization ActivityID=YELL_1A_20120918110805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 17:08,9/19/2012 15:53,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20110809121701^01,Field Msr/Obs,WATER,NA,8/9/2011,12:17:00,MDT,8/10/2011,10:07:00,MDT,7.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0809111217 Organization ActivityID=YELL_YSL_006_20110809121701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:17,8/10/2011 16:07,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20140807115105^01,Field Msr/Obs,WATER,NA,8/7/2014,11:51:00,MDT,8/8/2014,8:10:00,MDT,41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0807141151 Organization ActivityID=YELL_YSL_153_20140807115105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:51,8/8/2014 14:10,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20150807102002^01,Field Msr/Obs,WATER,NA,8/7/2015,10:20:00,MDT,8/8/2015,7:58:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0807151020 Organization ActivityID=YELL_YSL_041_20150807102002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 16:20,8/8/2015 13:58,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20180806111303^01,Field Msr/Obs,WATER,NA,8/6/2018,11:13:00,MDT,8/7/2018,8:11:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Organization ActivityID=YELL_YSL_089_20180806111303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:13,8/7/2018 14:11,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20170803111001^01,Field Msr/Obs,WATER,NA,8/3/2017,11:10:00,MDT,8/4/2017,7:00:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0803171110 Organization ActivityID=YELL_YSL_177_20170803111001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:10,8/4/2017 13:00,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20170807140902^01,Field Msr/Obs,WATER,NA,8/7/2017,14:09:00,MDT,8/8/2017,9:51:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,no fish Orig ID=0807171409 Organization ActivityID=YELL_YSL_212_20170807140902,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 20:09,8/8/2017 15:51,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20120806115702^01,Field Msr/Obs,WATER,NA,8/6/2012,11:57:00,MDT,8/7/2012,8:25:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Logger 12 Orig ID=0806121157 Organization ActivityID=YELL_YSL_009_20120806115702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 17:57,8/7/2012 14:25,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20180804105704^01,Field Msr/Obs,WATER,NA,8/4/2018,10:57:00,MDT,8/5/2018,9:13:00,MDT,6.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Organization ActivityID=YELL_YSL_067_20180804105704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:57,8/5/2018 15:13,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20140805115504^01,Field Msr/Obs,WATER,NA,8/5/2014,11:55:00,MDT,8/6/2014,8:18:00,MDT,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805141155 Organization ActivityID=YELL_YSL_067_20140805115504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 17:55,8/6/2014 14:18,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20100818162302^01,Field Msr/Obs,WATER,NA,8/18/2010,16:23:00,MDT,8/19/2010,10:20:00,MDT,6.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0818101623 Organization ActivityID=YELL_YSL_042_20100818162302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 22:23,8/19/2010 16:20,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_013_20100816151603^01,Field Msr/Obs,WATER,NA,8/16/2010,15:16:00,MDT,8/17/2010,8:48:00,MDT,23.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_013,2 LKT escaped Orig ID=0816101516 Organization ActivityID=YELL_YSL_013_20100816151603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 21:16,8/17/2010 14:48,Yellowstone Lake Shoreline KM 13,Lake,This site is located in the West Thumb of Yellowstone Lake within region 1 near the West Thumb Geyser Basin.,10070001,NA,NA,NA,NA,44.3955718,-110.5587041,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20150805151406^01,Field Msr/Obs,WATER,NA,8/5/2015,15:14:00,MDT,8/6/2015,7:32:00,MDT,39.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0805151514 Organization ActivityID=YELL_YSL_077_20150805151406,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 21:14,8/6/2015 13:32,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20120917113803^01,Field Msr/Obs,WATER,NA,9/17/2012,11:38:00,MDT,9/18/2012,11:41:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0917121138 Organization ActivityID=YELL_3B_20120917113803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 17:38,9/18/2012 17:41,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20110808101406^01,Field Msr/Obs,WATER,NA,8/8/2011,10:14:00,MDT,8/9/2011,9:20:00,MDT,42.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,No Fish Orig ID=0808111014 Organization ActivityID=YELL_YSL_128_20110808101406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 16:14,8/9/2011 15:20,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20150807110801^01,Field Msr/Obs,WATER,NA,8/7/2015,11:08:00,MDT,8/8/2015,8:32:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0807151108 Organization ActivityID=YELL_YSL_042_20150807110801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 17:08,8/8/2015 14:32,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20190802122504^01,Field Msr/Obs,WATER,NA,8/2/2019,12:25:00,MDT,8/3/2019,10:13:00,MDT,14.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,small end to shore Organization ActivityID=YELL_YSL_059_20190802122504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:25,8/3/2019 16:13,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20110803153304^01,Field Msr/Obs,WATER,NA,8/3/2011,15:33:00,MDT,8/4/2011,13:33:00,MDT,23.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,No Fish Orig ID=0803111533 Organization ActivityID=YELL_YSL_115_20110803153304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 21:33,8/4/2011 19:33,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20100817182104^01,Field Msr/Obs,WATER,NA,8/17/2010,18:21:00,MDT,8/18/2010,9:37:00,MDT,19.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0817101821 Organization ActivityID=YELL_YSL_153_20100817182104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 0:21,8/18/2010 15:37,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202008031045_00^01,Field Msr/Obs,WATER,NA,8/3/2020,10:45:00,MDT,8/4/2020,7:25:00,MDT,2.43,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: Small ETS|2020|13|543009|4920079|543111|4920084 Organization ActivityID=YELL_YSL_163_202008031045_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 16:45,8/4/2020 13:25,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20100812171003^01,Field Msr/Obs,WATER,NA,8/12/2010,17:10:00,MDT,8/13/2010,8:50:00,MDT,18,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0812101710 Organization ActivityID=YELL_YSL_128_20100812171003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 23:10,8/13/2010 14:50,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20180801100205^01,Field Msr/Obs,WATER,NA,8/1/2018,10:02:00,MDT,8/2/2018,8:40:00,MDT,38.69,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,0.75 to shore Orig ID=0801181002 Organization ActivityID=YELL_YSL_012_20180801100205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:02,8/2/2018 14:40,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20120919094803^01,Field Msr/Obs,WATER,NA,9/19/2012,9:48:00,MDT,9/20/2012,7:11:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=0919120948 Organization ActivityID=YELL_2A_20120919094803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 15:48,9/20/2012 13:11,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20170805110402^01,Field Msr/Obs,WATER,NA,8/5/2017,11:04:00,MDT,8/6/2017,9:30:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0805171104 Organization ActivityID=YELL_YSL_171_20170805110402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:04,8/6/2017 15:30,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_024_20100810165904^01,Field Msr/Obs,WATER,NA,8/10/2010,16:59:00,MDT,8/11/2010,9:55:00,MDT,23.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_024,No fish were caught Orig ID=0810101659 Organization ActivityID=YELL_YSL_024_20100810165904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 22:59,8/11/2010 15:55,Yellowstone Lake Shoreline KM 24,Lake,Station 24 is located in the West Thumb portion of Yellowstone Lake along the western shoreline near the vicinity of Carrington Island.,10070001,NA,NA,NA,NA,44.4562099,-110.5580606,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202108031421_00^01,Field Msr/Obs,WATER,NA,8/3/2021,14:21:00,MDT,8/4/2021,8:57:00,MDT,8.65,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|4013|13|543205|4920495|543304|4920480 Organization ActivityID=YELL_YSL_163_202108031421_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 20:21,8/4/2021 14:57,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20140804112703^01,Field Msr/Obs,WATER,NA,8/4/2014,11:27:00,MDT,8/5/2014,7:56:00,MDT,8.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804141127 Organization ActivityID=YELL_YSL_163_20140804112703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:27,8/5/2014 13:56,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20050921201502^01,Field Msr/Obs,WATER,NA,9/21/2005,20:15:00,MDT,9/22/2005,12:15:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=921052015 Organization ActivityID=YELL_7C_20050921201502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 2:15,9/22/2005 18:15,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20130801125906^01,Field Msr/Obs,WATER,NA,8/1/2013,12:59:00,MDT,8/2/2013,9:56:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,No Fish Orig ID=0801131259 Organization ActivityID=YELL_YSL_209_20130801125906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 18:59,8/2/2013 15:56,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20170801155105^01,Field Msr/Obs,WATER,NA,8/1/2017,15:51:00,MDT,8/2/2017,10:53:00,MDT,41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,only 5 panels Orig ID=0801171551 Organization ActivityID=YELL_YSL_027_20170801155105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 21:51,8/2/2017 16:53,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20170804115601^01,Field Msr/Obs,WATER,NA,8/4/2017,11:56:00,MDT,8/5/2017,9:40:00,MDT,1.74,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0804171156 Organization ActivityID=YELL_YSL_082_20170804115601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 17:56,8/5/2017 15:40,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20110802150005^01,Field Msr/Obs,WATER,NA,8/2/2011,15:00:00,MDT,8/3/2011,10:21:00,MDT,42.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Fixed Site Orig ID=0802111500 Organization ActivityID=YELL_YSL_077_20110802150005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 21:00,8/3/2011 16:21,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20110915181201^01,Field Msr/Obs,WATER,NA,9/15/2011,18:12:00,MDT,9/16/2011,11:15:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915111812 Organization ActivityID=YELL_1A_20110915181201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2011 0:12,9/16/2011 17:15,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20150808102006^01,Field Msr/Obs,WATER,NA,8/8/2015,10:20:00,MDT,8/9/2015,7:04:00,MDT,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,No Fish Orig ID=0808151020 Organization ActivityID=YELL_YSL_175_20150808102006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2015 16:20,8/9/2015 13:04,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20160801100605^01,Field Msr/Obs,WATER,NA,8/1/2016,10:06:00,MDT,8/2/2016,11:36:00,MDT,41.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801161006 Organization ActivityID=YELL_YSL_209_20160801100605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 16:06,8/2/2016 17:36,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20180803105206^01,Field Msr/Obs,WATER,NA,8/3/2018,10:52:00,MDT,8/4/2018,8:10:00,MDT,41.43,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Organization ActivityID=YELL_YSL_163_20180803105206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:52,8/4/2018 14:10,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20140801084006^01,Field Msr/Obs,WATER,NA,8/1/2014,8:40:00,MDT,8/2/2014,7:40:00,MDT,39.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,No Fish Orig ID=0801140840 Organization ActivityID=YELL_YSL_190_20140801084006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,4,4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 14:40,8/2/2014 13:40,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20120919115004^01,Field Msr/Obs,WATER,NA,9/19/2012,11:50:00,MDT,9/20/2012,10:08:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0919121150 Organization ActivityID=YELL_7C_20120919115004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 17:50,9/20/2012 16:08,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20110801110704^01,Field Msr/Obs,WATER,NA,8/1/2011,11:07:00,MDT,8/2/2011,13:57:00,MDT,25.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,No Fish Orig ID=0801111107 Organization ActivityID=YELL_YSL_041_20110801110704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 17:07,8/2/2011 19:57,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20040914170504^01,Field Msr/Obs,WATER,NA,9/14/2004,17:05:00,MDT,9/15/2004,9:05:00,MDT,1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=914041705 Organization ActivityID=YELL_1C_20040914170504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 23:05,9/15/2004 15:05,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_202008010829_00^01,Field Msr/Obs,WATER,NA,8/1/2020,8:29:00,MDT,8/2/2020,7:12:00,MDT,26.82,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,"Activity Net, Buoy, Start/End UTMs: Large ETS|2026|17|553188|4906283|553235|4904324 Organization ActivityID=YELL_YSL_115_202008010829_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 14:29,8/2/2020 13:12,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202008021041_00^01,Field Msr/Obs,WATER,NA,8/2/2020,10:41:00,MDT,8/3/2020,7:20:00,MDT,46.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: Large ETS|4016|24|553321|4914552|553421|4914585 Organization ActivityID=YELL_YSL_128_202008021041_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 16:41,8/3/2020 13:20,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20140803114101^01,Field Msr/Obs,WATER,NA,8/3/2014,11:41:00,MDT,8/4/2014,10:10:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Mesh 2.25 towards shore Orig ID=0803141141 Organization ActivityID=YELL_YSL_003_20140803114101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 17:41,8/4/2014 16:10,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20190802122406^01,Field Msr/Obs,WATER,NA,8/2/2019,12:24:00,MDT,8/3/2019,9:08:00,MDT,38,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,large to shore Organization ActivityID=YELL_YSL_023_20190802122406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:24,8/3/2019 15:08,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20140805125405^01,Field Msr/Obs,WATER,NA,8/5/2014,12:54:00,MDT,8/6/2014,10:39:00,MDT,39.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805141254 Organization ActivityID=YELL_YSL_065_20140805125405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:54,8/6/2014 16:39,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20180802111203^01,Field Msr/Obs,WATER,NA,8/2/2018,11:12:00,MDT,8/3/2018,8:22:00,MDT,40.55,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,2.25 to Shore; No Fish Orig ID=0802181112 Organization ActivityID=YELL_YSL_006_20180802111203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 17:12,8/3/2018 14:22,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20190803132006^01,Field Msr/Obs,WATER,NA,8/3/2019,13:20:00,MDT,8/4/2019,10:16:00,MDT,34,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,small to shore Organization ActivityID=YELL_YSL_003_20190803132006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 19:20,8/4/2019 16:16,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20150805153602^01,Field Msr/Obs,WATER,NA,8/5/2015,15:36:00,MDT,8/6/2015,10:16:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0805151536 Organization ActivityID=YELL_YSL_177_20150805153602,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 21:36,8/6/2015 16:16,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20150808102605^01,Field Msr/Obs,WATER,NA,8/8/2015,10:26:00,MDT,8/9/2015,7:10:00,MDT,41.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808151026 Organization ActivityID=YELL_YSL_175_20150808102605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2015 16:26,8/9/2015 13:10,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202008060941_00^01,Field Msr/Obs,WATER,NA,8/6/2020,9:41:00,MDT,8/7/2020,5:51:00,MDT,2.12,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: Small ETS|2021|16|535236|4922600|536338|4922575 Organization ActivityID=YELL_YSL_023_202008060941_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 15:41,8/7/2020 11:51,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20190805110902^01,Field Msr/Obs,WATER,NA,8/5/2019,11:09:00,MDT,8/6/2019,9:11:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,small end to shore Organization ActivityID=YELL_YSL_101_20190805110902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:09,8/6/2019 15:11,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20110802115206^01,Field Msr/Obs,WATER,NA,8/2/2011,11:52:00,MDT,8/3/2011,7:47:00,MDT,42.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,No Fish Orig ID=0802111152 Organization ActivityID=YELL_YSL_067_20110802115206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 17:52,8/3/2011 13:47,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_202108031517_00^01,Field Msr/Obs,WATER,NA,8/3/2021,15:17:00,MDT,8/4/2021,7:51:00,MDT,7.76,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|2026|3|546813|4921678|546817|4921567 Organization ActivityID=YELL_YSL_175_202108031517_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 21:17,8/4/2021 13:51,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20120813134406^01,Field Msr/Obs,WATER,NA,8/13/2012,13:44:00,MDT,8/14/2012,7:31:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,No Fish Orig ID=0813121344 Organization ActivityID=YELL_YSL_190_20120813134406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 19:44,8/14/2012 13:31,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_154_20100809175703^01,Field Msr/Obs,WATER,NA,8/9/2010,17:57:00,MDT,8/10/2010,8:47:00,MDT,20.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_154,small mesh on deep side Orig ID=0809101757 Organization ActivityID=YELL_YSL_154_20100809175703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 23:57,8/10/2010 14:47,Yellowstone Lake Shoreline KM 154,Lake,This site is located within the main basin of Yellowstone Lake within region 2. It is located southwest of Frank Island on the western shoreline of the lake.,10070001,NA,NA,NA,NA,44.4068074,-110.4040786,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_068_20100818172506^01,Field Msr/Obs,WATER,NA,8/18/2010,17:25:00,MDT,8/19/2010,8:27:00,MDT,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_068,Orig ID=0818101725 Organization ActivityID=YELL_YSL_068_20100818172506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 23:25,8/19/2010 14:27,Yellowstone Lake Shoreline KM 68,Lake,This station is located in the main basin in region 3. It is found along the east shore approximately 1 km south of Steamboat Point.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20120807121404^01,Field Msr/Obs,WATER,NA,8/7/2012,12:14:00,MDT,8/8/2012,9:11:00,MDT,12.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Logger 18. No Fish Orig ID=0807121214 Organization ActivityID=YELL_YSL_067_20120807121404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:14,8/8/2012 15:11,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20180804102906^01,Field Msr/Obs,WATER,NA,8/4/2018,10:29:00,MDT,8/5/2018,8:21:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Organization ActivityID=YELL_YSL_058_20180804102906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:29,8/5/2018 14:21,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20180803112302^01,Field Msr/Obs,WATER,NA,8/3/2018,11:23:00,MDT,8/4/2018,8:47:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Organization ActivityID=YELL_YSL_065_20180803112302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:23,8/4/2018 14:47,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20110810145706^01,Field Msr/Obs,WATER,NA,8/10/2011,14:57:00,MDT,8/11/2011,9:38:00,MDT,33.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0810111457 Organization ActivityID=YELL_YSL_025_20110810145706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 20:57,8/11/2011 15:38,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20140806125701^01,Field Msr/Obs,WATER,NA,8/6/2014,12:57:00,MDT,8/7/2014,9:17:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806141257 Organization ActivityID=YELL_YSL_128_20140806125701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:57,8/7/2014 15:17,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202108051045_00^01,Field Msr/Obs,WATER,NA,8/5/2021,10:45:00,MDT,8/6/2021,9:17:00,MDT,40.34,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|2025|23|535627|4922386|535715|4922336 Organization ActivityID=YELL_YSL_023_202108051045_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 16:45,8/6/2021 15:17,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20150805152205^01,Field Msr/Obs,WATER,NA,8/5/2015,15:22:00,MDT,8/6/2015,7:44:00,MDT,39.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0805151522 Organization ActivityID=YELL_YSL_077_20150805152205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 21:22,8/6/2015 13:44,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20180802112204^01,Field Msr/Obs,WATER,NA,8/2/2018,11:22:00,MDT,8/3/2018,8:46:00,MDT,2.09,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,3.5 to Shore Orig ID=0802181122 Organization ActivityID=YELL_YSL_003_20180802112204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 17:22,8/3/2018 14:46,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_004_20100816154801^01,Field Msr/Obs,WATER,NA,8/16/2010,15:48:00,MDT,8/17/2010,9:20:00,MDT,4.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_004,Orig ID=0816101548 Organization ActivityID=YELL_YSL_004_20100816154801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 21:48,8/17/2010 15:20,Yellowstone Lake Shoreline KM 4,Lake,Station located on the southeast corner of West Thumb of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20120919094302^01,Field Msr/Obs,WATER,NA,9/19/2012,9:43:00,MDT,9/20/2012,7:03:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=0919120943 Organization ActivityID=YELL_2A_20120919094302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 15:43,9/20/2012 13:03,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20130801121201^01,Field Msr/Obs,WATER,NA,8/1/2013,12:12:00,MDT,8/2/2013,11:16:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0801131212 Organization ActivityID=YELL_YSL_221_20130801121201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 18:12,8/2/2013 17:16,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20120815151601^01,Field Msr/Obs,WATER,NA,8/15/2012,15:16:00,MDT,8/16/2012,10:42:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0815121516 Organization ActivityID=YELL_YSL_128_20120815151601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 21:16,8/16/2012 16:42,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20190806104305^01,Field Msr/Obs,WATER,NA,8/6/2019,10:43:00,MDT,8/7/2019,8:23:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,large end to shore Organization ActivityID=YELL_YSL_089_20190806104305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 16:43,8/7/2019 14:23,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20180807101605^01,Field Msr/Obs,WATER,NA,8/7/2018,10:16:00,MDT,8/8/2018,8:40:00,MDT,41.63,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Organization ActivityID=YELL_YSL_212_20180807101605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 16:16,8/8/2018 14:40,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20180802112903^01,Field Msr/Obs,WATER,NA,8/2/2018,11:29:00,MDT,8/3/2018,9:17:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,3.5 to Shore; No Fish Orig ID=0802181129 Organization ActivityID=YELL_YSL_045_20180802112903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 17:29,8/3/2018 15:17,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20110802155204^01,Field Msr/Obs,WATER,NA,8/2/2011,15:52:00,MDT,8/3/2011,10:49:00,MDT,23.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0802111552 Organization ActivityID=YELL_YSL_079_20110802155204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 21:52,8/3/2011 16:49,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20140805130006^01,Field Msr/Obs,WATER,NA,8/5/2014,13:00:00,MDT,8/6/2014,10:31:00,MDT,36.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,NO FISH Orig ID=0805141300 Organization ActivityID=YELL_YSL_065_20140805130006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 19:00,8/6/2014 16:31,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20140801084705^01,Field Msr/Obs,WATER,NA,8/1/2014,8:47:00,MDT,8/2/2014,7:28:00,MDT,39.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,No Fish Orig ID=0801140847 Organization ActivityID=YELL_YSL_190_20140801084705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,4,4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 14:47,8/2/2014 13:28,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20190803125603^01,Field Msr/Obs,WATER,NA,8/3/2019,12:56:00,MDT,8/4/2019,9:40:00,MDT,7.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,small to shore Organization ActivityID=YELL_YSL_003_20190803125603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 18:56,8/4/2019 15:40,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20170808113703^01,Field Msr/Obs,WATER,NA,8/8/2017,11:37:00,MDT,8/9/2017,7:37:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808171137 Organization ActivityID=YELL_YSL_175_20170808113703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2017 17:37,8/9/2017 13:37,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20180805110505^01,Field Msr/Obs,WATER,NA,8/5/2018,11:05:00,MDT,8/6/2018,9:13:00,MDT,42.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Organization ActivityID=YELL_YSL_079_20180805110505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:05,8/6/2018 15:13,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20050922171501^01,Field Msr/Obs,WATER,NA,9/22/2005,17:15:00,MDT,9/23/2005,9:15:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=922051715 Organization ActivityID=YELL_2A_20050922171501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 23:15,9/23/2005 15:15,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20120916103604^01,Field Msr/Obs,WATER,NA,9/16/2012,10:36:00,MDT,9/17/2012,10:51:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=0916121036 Organization ActivityID=YELL_4B_20120916103604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2012 16:36,9/17/2012 16:51,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20120808104206^01,Field Msr/Obs,WATER,NA,8/8/2012,10:42:00,MDT,8/9/2012,7:07:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,No Fish Orig ID=0808121042 Organization ActivityID=YELL_YSL_077_20120808104206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:42,8/9/2012 13:07,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20150805095305^01,Field Msr/Obs,WATER,NA,8/5/2015,9:53:00,MDT,8/6/2015,8:36:00,MDT,42.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0805150953 Organization ActivityID=YELL_YSL_003_20150805095305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 15:53,8/6/2015 14:36,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20180807115106^01,Field Msr/Obs,WATER,NA,8/7/2018,11:51:00,MDT,8/8/2018,10:01:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Organization ActivityID=YELL_YSL_210_20180807115106,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:51,8/8/2018 16:01,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20170801102703^01,Field Msr/Obs,WATER,NA,8/1/2017,10:27:00,MDT,8/2/2017,9:01:00,MDT,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0801171027 Organization ActivityID=YELL_YSL_029_20170801102703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 16:27,8/2/2017 15:01,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20190804111204^01,Field Msr/Obs,WATER,NA,8/4/2019,11:12:00,MDT,8/5/2019,9:24:00,MDT,14.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,large to shore Organization ActivityID=YELL_YSL_163_20190804111204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:12,8/5/2019 15:24,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20120919112401^01,Field Msr/Obs,WATER,NA,9/19/2012,11:24:00,MDT,9/20/2012,9:20:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0919121124 Organization ActivityID=YELL_7C_20120919112401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 17:24,9/20/2012 15:20,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20180807114505^01,Field Msr/Obs,WATER,NA,8/7/2018,11:45:00,MDT,8/8/2018,9:49:00,MDT,40.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Organization ActivityID=YELL_YSL_210_20180807114505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:45,8/8/2018 15:49,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20120806121101^01,Field Msr/Obs,WATER,NA,8/6/2012,12:11:00,MDT,8/7/2012,8:52:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Temp logger 13 Orig ID=0806121211 Organization ActivityID=YELL_YSL_009_20120806121101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 18:11,8/7/2012 14:52,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20150803135501^01,Field Msr/Obs,WATER,NA,8/3/2015,13:55:00,MDT,8/4/2015,10:45:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Mesh size 0.75 towards shore Orig ID=0803151355 Organization ActivityID=YELL_YSL_144_20150803135501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 19:55,8/4/2015 16:45,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20180807095601^01,Field Msr/Obs,WATER,NA,8/7/2018,9:56:00,MDT,8/8/2018,7:52:00,MDT,1.96,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Organization ActivityID=YELL_YSL_212_20180807095601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 15:56,8/8/2018 13:52,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20170801104805^01,Field Msr/Obs,WATER,NA,8/1/2017,10:48:00,MDT,8/2/2017,9:25:00,MDT,38.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0801171048 Organization ActivityID=YELL_YSL_029_20170801104805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 16:48,8/2/2017 15:25,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20100818164701^01,Field Msr/Obs,WATER,NA,8/18/2010,16:47:00,MDT,8/19/2010,9:53:00,MDT,10.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0818101647 Organization ActivityID=YELL_YSL_042_20100818164701,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 22:47,8/19/2010 15:53,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20110809101306^01,Field Msr/Obs,WATER,NA,8/9/2011,10:13:00,MDT,8/10/2011,7:29:00,MDT,41.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,No Fish Orig ID=0809111013 Organization ActivityID=YELL_YSL_153_20110809101306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 16:13,8/10/2011 13:29,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20110802160706^01,Field Msr/Obs,WATER,NA,8/2/2011,16:07:00,MDT,8/3/2011,10:14:00,MDT,42.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,No Fish Orig ID=0802111607 Organization ActivityID=YELL_YSL_079_20110802160706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 22:07,8/3/2011 16:14,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_150_20100809172106^01,Field Msr/Obs,WATER,NA,8/9/2010,17:21:00,MDT,8/10/2010,8:55:00,MDT,42.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_150,No Fish Caught Orig ID=0809101721 Organization ActivityID=YELL_YSL_150_20100809172106,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 23:21,8/10/2010 14:55,Yellowstone Lake Shoreline KM 150,Lake,This station is located in region 2 near the north and west side of Flat Mountain Arm of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20120813123101^01,Field Msr/Obs,WATER,NA,8/13/2012,12:31:00,MDT,8/14/2012,11:00:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0813121231 Organization ActivityID=YELL_YSL_209_20120813123101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 18:31,8/14/2012 17:00,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20120808110005^01,Field Msr/Obs,WATER,NA,8/8/2012,11:00:00,MDT,8/9/2012,7:18:00,MDT,38.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0808121100 Organization ActivityID=YELL_YSL_023_20120808110005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 17:00,8/9/2012 13:18,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_109_20100803183005^01,Field Msr/Obs,WATER,NA,8/3/2010,18:30:00,MDT,8/4/2010,9:05:00,MDT,42.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_109,Orig ID=0803101830 Organization ActivityID=YELL_YSL_109_20100803183005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 0:30,8/4/2010 15:05,Yellowstone Lake Shoreline KM 109,Lake,This station is located in the South Arm of Yellowstone lake along the east shoreline approximately midway from the lake main basin to the non-motorized zone.,10070001,NA,NA,NA,NA,44.3582804,-110.3195038,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20150805144002^01,Field Msr/Obs,WATER,NA,8/5/2015,14:40:00,MDT,8/6/2015,8:46:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0805151440 Organization ActivityID=YELL_YSL_077_20150805144002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 20:40,8/6/2015 14:46,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20120813154102^01,Field Msr/Obs,WATER,NA,8/13/2012,15:41:00,MDT,8/14/2012,14:28:00,MDT,0.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,3 Goldeneye and 1 hen bufflehead caught in net Orig ID=0813121541 Organization ActivityID=YELL_YSL_218_20120813154102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 21:41,8/14/2012 20:28,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20120814121203^01,Field Msr/Obs,WATER,NA,8/14/2012,12:12:00,MDT,8/15/2012,8:40:00,MDT,10.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0814121212 Organization ActivityID=YELL_YSL_091_20120814121203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 18:12,8/15/2012 14:40,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20170806112006^01,Field Msr/Obs,WATER,NA,8/6/2017,11:20:00,MDT,8/7/2017,11:50:00,MDT,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,no fish Orig ID=0806171120 Organization ActivityID=YELL_YSL_101_20170806112006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:20,8/7/2017 17:50,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20180805110803^01,Field Msr/Obs,WATER,NA,8/5/2018,11:08:00,MDT,8/6/2018,9:50:00,MDT,12.18,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Organization ActivityID=YELL_YSL_128_20180805110803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:08,8/6/2018 15:50,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20140801105903^01,Field Msr/Obs,WATER,NA,8/1/2014,10:59:00,MDT,8/2/2014,9:42:00,MDT,8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,0.75 to shore Orig ID=0801141059 Organization ActivityID=YELL_YSL_025_20140801105903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 16:59,8/2/2014 15:42,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20140804121806^01,Field Msr/Obs,WATER,NA,8/4/2014,12:18:00,MDT,8/5/2014,9:54:00,MDT,7.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804141218 Organization ActivityID=YELL_YSL_158_20140804121806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 18:18,8/5/2014 15:54,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20120918133503^01,Field Msr/Obs,WATER,NA,9/18/2012,13:35:00,MDT,9/19/2012,8:57:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0918121335 Organization ActivityID=YELL_1C_20120918133503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 19:35,9/19/2012 14:57,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20140801095303^01,Field Msr/Obs,WATER,NA,8/1/2014,9:53:00,MDT,8/2/2014,7:55:00,MDT,10.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Mesh 2 inch towards shore Orig ID=0801140953 Organization ActivityID=YELL_YSL_023_20140801095303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 15:53,8/2/2014 13:55,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20140806122004^01,Field Msr/Obs,WATER,NA,8/6/2014,12:20:00,MDT,8/7/2014,9:24:00,MDT,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0806141220 Organization ActivityID=YELL_YSL_052_20140806122004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:20,8/7/2014 15:24,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20190801093103^01,Field Msr/Obs,WATER,NA,8/1/2019,9:31:00,MDT,8/2/2019,8:53:00,MDT,13.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,large end to shore Organization ActivityID=YELL_YSL_042_20190801093103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 15:31,8/2/2019 14:53,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20180802104505^01,Field Msr/Obs,WATER,NA,8/2/2018,10:45:00,MDT,8/3/2018,8:51:00,MDT,19.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,0.75 to Shore Orig ID=0802181045 Organization ActivityID=YELL_YSL_045_20180802104505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:45,8/3/2018 14:51,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20150806111603^01,Field Msr/Obs,WATER,NA,8/6/2015,11:16:00,MDT,8/7/2015,7:32:00,MDT,12.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0806151116 Organization ActivityID=YELL_YSL_059_20150806111603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:16,8/7/2015 13:32,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20140805113902^01,Field Msr/Obs,WATER,NA,8/5/2014,11:39:00,MDT,8/6/2014,8:53:00,MDT,3.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805141139 Organization ActivityID=YELL_YSL_067_20140805113902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 17:39,8/6/2014 14:53,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_068_20100818175505^01,Field Msr/Obs,WATER,NA,8/18/2010,17:55:00,MDT,8/19/2010,9:00:00,MDT,48.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_068,windy and waves Orig ID=0818101755 Organization ActivityID=YELL_YSL_068_20100818175505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 23:55,8/19/2010 15:00,Yellowstone Lake Shoreline KM 68,Lake,This station is located in the main basin in region 3. It is found along the east shore approximately 1 km south of Steamboat Point.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20120814120802^01,Field Msr/Obs,WATER,NA,8/14/2012,12:08:00,MDT,8/15/2012,9:11:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0814121208 Organization ActivityID=YELL_YSL_091_20120814120802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 18:08,8/15/2012 15:11,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20180805110103^01,Field Msr/Obs,WATER,NA,8/5/2018,11:01:00,MDT,8/6/2018,8:55:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Organization ActivityID=YELL_YSL_079_20180805110103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:01,8/6/2018 14:55,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20110810110201^01,Field Msr/Obs,WATER,NA,8/10/2011,11:02:00,MDT,8/11/2011,9:17:00,MDT,6.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0810111102 Organization ActivityID=YELL_YSL_009_20110810110201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 17:02,8/11/2011 15:17,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20140806121201^01,Field Msr/Obs,WATER,NA,8/6/2014,12:12:00,MDT,8/7/2014,7:48:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0806141212 Organization ActivityID=YELL_YSL_144_20140806121201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:12,8/7/2014 13:48,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20110809114405^01,Field Msr/Obs,WATER,NA,8/9/2011,11:44:00,MDT,8/10/2011,7:35:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,No Fish Orig ID=0809111144 Organization ActivityID=YELL_YSL_003_20110809114405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.8,12.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 17:44,8/10/2011 13:35,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20110808100503^01,Field Msr/Obs,WATER,NA,8/8/2011,10:05:00,MDT,8/9/2011,10:54:00,MDT,24.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0808111005 Organization ActivityID=YELL_YSL_158_20110808100503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 16:05,8/9/2011 16:54,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20120806115405^01,Field Msr/Obs,WATER,NA,8/6/2012,11:54:00,MDT,8/7/2012,9:50:00,MDT,31.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Logger 24. Not Fish Orig ID=0806121154 Organization ActivityID=YELL_YSL_058_20120806115405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 17:54,8/7/2012 15:50,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20120815131802^01,Field Msr/Obs,WATER,NA,8/15/2012,13:18:00,MDT,8/16/2012,9:52:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0815121318 Organization ActivityID=YELL_YSL_158_20120815131802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 19:18,8/16/2012 15:52,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_051_20100802150901^01,Field Msr/Obs,WATER,NA,8/2/2010,15:09:00,MDT,8/3/2010,9:10:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_051,Orig ID=0802101509 Organization ActivityID=YELL_YSL_051_20100802150901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2010 21:09,8/3/2010 15:10,Yellowstone Lake Shoreline KM 51,Lake,Station located on north shore of Yellowstone Lake approximately 2 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.5367389,-110.4310425,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20100812172801^01,Field Msr/Obs,WATER,NA,8/12/2010,17:28:00,MDT,8/13/2010,9:08:00,MDT,7.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0812101728 Organization ActivityID=YELL_YSL_128_20100812172801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 23:28,8/13/2010 15:08,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20140801092101^01,Field Msr/Obs,WATER,NA,8/1/2014,9:21:00,MDT,8/2/2014,7:03:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,mesh 2.25 inches to shore Orig ID=0801140921 Organization ActivityID=YELL_YSL_023_20140801092101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 15:21,8/2/2014 13:03,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20190802124001^01,Field Msr/Obs,WATER,NA,8/2/2019,12:40:00,MDT,8/3/2019,9:30:00,MDT,3.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,large to shore Organization ActivityID=YELL_YSL_021_20190802124001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:40,8/3/2019 15:30,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20150804104802^01,Field Msr/Obs,WATER,NA,8/4/2015,10:48:00,MDT,8/5/2015,14:12:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804151048 Organization ActivityID=YELL_YSL_171_20150804104802,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:48,8/5/2015 20:12,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202108041021_00^01,Field Msr/Obs,WATER,NA,8/4/2021,10:21:00,MDT,8/5/2021,7:07:00,MDT,1.37,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|H5004|23|539891|4919670|539840|4919761 Organization ActivityID=YELL_YSL_003_202108041021_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 16:21,8/5/2021 13:07,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20050922180501^01,Field Msr/Obs,WATER,NA,9/22/2005,18:05:00,MDT,9/23/2005,10:05:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=922051805 Organization ActivityID=YELL_3A_20050922180501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2005 0:05,9/23/2005 16:05,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20170806110604^01,Field Msr/Obs,WATER,NA,8/6/2017,11:06:00,MDT,8/7/2017,11:26:00,MDT,8.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,no fish Orig ID=0806171106 Organization ActivityID=YELL_YSL_101_20170806110604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:06,8/7/2017 17:26,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20110810134105^01,Field Msr/Obs,WATER,NA,8/10/2011,13:41:00,MDT,8/11/2011,8:01:00,MDT,47.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0810111341 Organization ActivityID=YELL_YSL_023_20110810134105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 19:41,8/11/2011 14:01,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20140804103504^01,Field Msr/Obs,WATER,NA,8/4/2014,10:35:00,MDT,8/5/2014,9:11:00,MDT,10.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804141035 Organization ActivityID=YELL_YSL_171_20140804103504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 16:35,8/5/2014 15:11,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20140801094204^01,Field Msr/Obs,WATER,NA,8/1/2014,9:42:00,MDT,8/2/2014,8:05:00,MDT,7.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,No Fish; Mesh 2.25 towards shore Orig ID=0801140942 Organization ActivityID=YELL_YSL_023_20140801094204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 15:42,8/2/2014 14:05,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20050921200004^01,Field Msr/Obs,WATER,NA,9/21/2005,20:00:00,MDT,9/22/2005,12:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=921052000 Organization ActivityID=YELL_6C_20050921200004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 2:00,9/22/2005 18:00,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20190805132201^01,Field Msr/Obs,WATER,NA,8/5/2019,13:22:00,MDT,8/6/2019,9:02:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,large end to shore Organization ActivityID=YELL_YSL_148_20190805132201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 19:22,8/6/2019 15:02,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20140805131303^01,Field Msr/Obs,WATER,NA,8/5/2014,13:13:00,MDT,8/6/2014,7:47:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0805141313 Organization ActivityID=YELL_YSL_045_20140805131303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 19:13,8/6/2014 13:47,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_202108010901_00^01,Field Msr/Obs,WATER,NA,8/1/2021,9:01:00,MDT,8/2/2021,8:25:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|H5004|23|551675|4908617|551768|4908647 Organization ActivityID=YELL_YSL_120_202108010901_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 15:01,8/2/2021 14:25,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20130801130305^01,Field Msr/Obs,WATER,NA,8/1/2013,13:03:00,MDT,8/2/2013,10:06:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801131303 Organization ActivityID=YELL_YSL_209_20130801130305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 19:03,8/2/2013 16:06,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20040916200004^01,Field Msr/Obs,WATER,NA,9/16/2004,20:00:00,MDT,9/17/2004,12:00:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=916042000 Organization ActivityID=YELL_6C_20040916200004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 2:00,9/17/2004 18:00,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202008031055_00^01,Field Msr/Obs,WATER,NA,8/3/2020,10:55:00,MDT,8/4/2020,7:37:00,MDT,2.79,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: Large ETS|2021|15|543002|4920260|543096|4920291 Organization ActivityID=YELL_YSL_163_202008031055_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 16:55,8/4/2020 13:37,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20180807102206^01,Field Msr/Obs,WATER,NA,8/7/2018,10:22:00,MDT,8/8/2018,8:50:00,MDT,41.05,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Organization ActivityID=YELL_YSL_212_20180807102206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 16:22,8/8/2018 14:50,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20180802104005^01,Field Msr/Obs,WATER,NA,8/2/2018,10:40:00,MDT,8/3/2018,7:34:00,MDT,1.55,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,3.5 to Shore Orig ID=0802181040 Organization ActivityID=YELL_YSL_006_20180802104005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:40,8/3/2018 13:34,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20170807143706^01,Field Msr/Obs,WATER,NA,8/7/2017,14:37:00,MDT,8/8/2017,10:45:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,no fish Orig ID=0807171437 Organization ActivityID=YELL_YSL_212_20170807143706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 20:37,8/8/2017 16:45,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20110802153202^01,Field Msr/Obs,WATER,NA,8/2/2011,15:32:00,MDT,8/3/2011,11:21:00,MDT,12.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0802111532 Organization ActivityID=YELL_YSL_079_20110802153202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 21:32,8/3/2011 17:21,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20100915155303^01,Field Msr/Obs,WATER,NA,9/15/2010,15:53:00,MDT,9/16/2010,8:23:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0915101553 Organization ActivityID=YELL_7C_20100915155303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 21:53,9/16/2010 14:23,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20150804110603^01,Field Msr/Obs,WATER,NA,8/4/2015,11:06:00,MDT,8/5/2015,13:26:00,MDT,9.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804151106 Organization ActivityID=YELL_YSL_171_20150804110603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 17:06,8/5/2015 19:26,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20150806133505^01,Field Msr/Obs,WATER,NA,8/6/2015,13:35:00,MDT,8/7/2015,10:23:00,MDT,39.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806151335 Organization ActivityID=YELL_YSL_023_20150806133505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.9,13.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 19:35,8/7/2015 16:23,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20100915155704^01,Field Msr/Obs,WATER,NA,9/15/2010,15:57:00,MDT,9/16/2010,8:28:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0915101557 Organization ActivityID=YELL_7C_20100915155704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 21:57,9/16/2010 14:28,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20190806104401^01,Field Msr/Obs,WATER,NA,8/6/2019,10:44:00,MDT,8/7/2019,8:04:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,large end to shore Organization ActivityID=YELL_YSL_120_20190806104401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 16:44,8/7/2019 14:04,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20190801102901^01,Field Msr/Obs,WATER,NA,8/1/2019,10:29:00,MDT,8/2/2019,9:47:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Small end to shore Organization ActivityID=YELL_YSL_041_20190801102901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 16:29,8/2/2019 15:47,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202108011013_00^01,Field Msr/Obs,WATER,NA,8/1/2021,10:13:00,MDT,8/2/2021,10:07:00,MDT,2.43,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|4018|21|551585|4914219|551673|4914222 Organization ActivityID=YELL_YSL_128_202108011013_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 16:13,8/2/2021 16:07,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20120814135203^01,Field Msr/Obs,WATER,NA,8/14/2012,13:52:00,MDT,8/15/2012,12:35:00,MDT,10.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0814121352 Organization ActivityID=YELL_YSL_152_20120814135203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 19:52,8/15/2012 18:35,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_202008061041_00^01,Field Msr/Obs,WATER,NA,8/6/2020,10:41:00,MDT,8/7/2020,7:27:00,MDT,2.37,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,"Activity Net, Buoy, Start/End UTMs: Large ETS|3001|24|535829|4924319|535863|4924232 Organization ActivityID=YELL_YSL_025_202008061041_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 16:41,8/7/2020 13:27,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20150804100504^01,Field Msr/Obs,WATER,NA,8/4/2015,10:05:00,MDT,8/5/2015,7:43:00,MDT,11.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804151005 Organization ActivityID=YELL_YSL_158_20150804100504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:05,8/5/2015 13:43,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20170803112002^01,Field Msr/Obs,WATER,NA,8/3/2017,11:20:00,MDT,8/4/2017,7:16:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0803171120 Organization ActivityID=YELL_YSL_177_20170803112002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:20,8/4/2017 13:16,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20170807132603^01,Field Msr/Obs,WATER,NA,8/7/2017,13:26:00,MDT,8/8/2017,8:45:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0807171326 Organization ActivityID=YELL_YSL_190_20170807132603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:26,8/8/2017 14:45,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20100802183004^01,Field Msr/Obs,WATER,NA,8/2/2010,18:30:00,MDT,8/3/2010,9:57:00,MDT,20.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0802101830 Organization ActivityID=YELL_YSL_052_20100802183004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 0:30,8/3/2010 15:57,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20170804094404^01,Field Msr/Obs,WATER,NA,8/4/2017,9:44:00,MDT,8/5/2017,8:06:00,MDT,10.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0804170944 Organization ActivityID=YELL_YSL_080_20170804094404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 15:44,8/5/2017 14:06,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_202108021205_00^01,Field Msr/Obs,WATER,NA,8/2/2021,12:05:00,MDT,8/3/2021,11:35:00,MDT,8.89,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|2026|3|548818|4915755|548895|4915714 Organization ActivityID=YELL_YSL_148_202108021205_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.5,19.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 18:05,8/3/2021 17:35,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20140803111504^01,Field Msr/Obs,WATER,NA,8/3/2014,11:15:00,MDT,8/4/2014,6:56:00,MDT,36.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803141115 Organization ActivityID=YELL_YSL_080_20140803111504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 17:15,8/4/2014 12:56,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20040915163503^01,Field Msr/Obs,WATER,NA,9/15/2004,16:35:00,MDT,9/16/2004,8:35:00,MDT,1.1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=915041635 Organization ActivityID=YELL_1B_20040915163503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:35,9/16/2004 14:35,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_109_20100803183501^01,Field Msr/Obs,WATER,NA,8/3/2010,18:35:00,MDT,8/4/2010,8:42:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_109,Orig ID=0803101835 Organization ActivityID=YELL_YSL_109_20100803183501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 0:35,8/4/2010 14:42,Yellowstone Lake Shoreline KM 109,Lake,This station is located in the South Arm of Yellowstone lake along the east shoreline approximately midway from the lake main basin to the non-motorized zone.,10070001,NA,NA,NA,NA,44.3582804,-110.3195038,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_202008061101_00^01,Field Msr/Obs,WATER,NA,8/6/2020,11:01:00,MDT,8/7/2020,7:44:00,MDT,12.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,"Activity Net, Buoy, Start/End UTMs: Large ETS|2027|17|535834|4923790|535883|4923710 Organization ActivityID=YELL_YSL_025_202008061101_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 17:01,8/7/2020 13:44,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20100817184406^01,Field Msr/Obs,WATER,NA,8/17/2010,18:44:00,MDT,8/18/2010,9:00:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,No Fish Caught Orig ID=0817101844 Organization ActivityID=YELL_YSL_153_20100817184406,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 0:44,8/18/2010 15:00,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20180804102602^01,Field Msr/Obs,WATER,NA,8/4/2018,10:26:00,MDT,8/5/2018,8:34:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Organization ActivityID=YELL_YSL_171_20180804102602,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:26,8/5/2018 14:34,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20120813125103^01,Field Msr/Obs,WATER,NA,8/13/2012,12:51:00,MDT,8/14/2012,10:10:00,MDT,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0813121251 Organization ActivityID=YELL_YSL_209_20120813125103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 18:51,8/14/2012 16:10,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20110810135406^01,Field Msr/Obs,WATER,NA,8/10/2011,13:54:00,MDT,8/11/2011,7:51:00,MDT,42.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,No Fish Orig ID=0810111354 Organization ActivityID=YELL_YSL_023_20110810135406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 19:54,8/11/2011 13:51,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20130803111105^01,Field Msr/Obs,WATER,NA,8/3/2013,11:11:00,MDT,8/4/2013,8:36:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0803131111 Organization ActivityID=YELL_YSL_089_20130803111105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 17:11,8/4/2013 14:36,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20170806102901^01,Field Msr/Obs,WATER,NA,8/6/2017,10:29:00,MDT,8/7/2017,9:09:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806171029 Organization ActivityID=YELL_YSL_128_20170806102901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:29,8/7/2017 15:09,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20140801095504^01,Field Msr/Obs,WATER,NA,8/1/2014,9:55:00,MDT,8/2/2014,9:18:00,MDT,9.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801140955 Organization ActivityID=YELL_YSL_209_20140801095504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 15:55,8/2/2014 15:18,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_202108021221_00^01,Field Msr/Obs,WATER,NA,8/2/2021,12:21:00,MDT,8/3/2021,12:07:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|2024|17|549557|4916273|549624|4916316 Organization ActivityID=YELL_YSL_148_202108021221_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.5,19.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 18:21,8/3/2021 18:07,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20050919165001^01,Field Msr/Obs,WATER,NA,9/19/2005,16:50:00,MDT,9/20/2005,8:50:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=919051650 Organization ActivityID=YELL_1C_20050919165001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:50,9/20/2005 14:50,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20100819164901^01,Field Msr/Obs,WATER,NA,8/19/2010,16:49:00,MDT,8/20/2010,9:51:00,MDT,5.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,one Goldeneye caught and drowned in net. Orig ID=0819101649 Organization ActivityID=YELL_YSL_059_20100819164901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 22:49,8/20/2010 15:51,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20140802112102^01,Field Msr/Obs,WATER,NA,8/2/2014,11:21:00,MDT,8/3/2014,10:12:00,MDT,3.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802141121 Organization ActivityID=YELL_YSL_089_20140802112102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:21,8/3/2014 16:12,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20120809122704^01,Field Msr/Obs,WATER,NA,8/9/2012,12:27:00,MDT,8/10/2012,10:50:00,MDT,10.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,logger 22 out 1050 Orig ID=0809121227 Organization ActivityID=YELL_YSL_089_20120809122704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 18:27,8/10/2012 16:50,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202108041137_00^01,Field Msr/Obs,WATER,NA,8/4/2021,11:37:00,MDT,8/5/2021,8:53:00,MDT,39.34,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|2024|1|535531|4916523|535583|4916581 Organization ActivityID=YELL_YSL_012_202108041137_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 17:37,8/5/2021 14:53,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20120918124605^01,Field Msr/Obs,WATER,NA,9/18/2012,12:46:00,MDT,9/19/2012,6:53:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0918121246 Organization ActivityID=YELL_1B_20120918124605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 18:46,9/19/2012 12:53,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_202108050947_00^01,Field Msr/Obs,WATER,NA,8/5/2021,9:47:00,MDT,8/6/2021,7:23:00,MDT,3.67,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|3063|21|533782|4919599|533860|4919632 Organization ActivityID=YELL_YSL_021_202108050947_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 15:47,8/6/2021 13:23,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20150803141703^01,Field Msr/Obs,WATER,NA,8/3/2015,14:17:00,MDT,8/4/2015,11:21:00,MDT,30.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,0.75 mesh towards shore Orig ID=0803151417 Organization ActivityID=YELL_YSL_144_20150803141703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 20:17,8/4/2015 17:21,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20170802113403^01,Field Msr/Obs,WATER,NA,8/2/2017,11:34:00,MDT,8/3/2017,7:44:00,MDT,10.26,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0802171134 Organization ActivityID=YELL_YSL_058_20170802113403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:34,8/3/2017 13:44,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20120807171103^01,Field Msr/Obs,WATER,NA,8/7/2012,17:11:00,MDT,8/8/2012,11:41:00,MDT,15.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0807121711 Organization ActivityID=YELL_YSL_003_20120807171103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 23:11,8/8/2012 17:41,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20110808095904^01,Field Msr/Obs,WATER,NA,8/8/2011,9:59:00,MDT,8/9/2011,9:33:00,MDT,23,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0808110959 Organization ActivityID=YELL_YSL_128_20110808095904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:59,8/9/2011 15:33,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20180802114402^01,Field Msr/Obs,WATER,NA,8/2/2018,11:44:00,MDT,8/3/2018,9:40:00,MDT,41.74,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,2.25 to Shore; No Fish Orig ID=0802181144 Organization ActivityID=YELL_YSL_003_20180802114402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 17:44,8/3/2018 15:40,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_202008061033_00^01,Field Msr/Obs,WATER,NA,8/6/2020,10:33:00,MDT,8/7/2020,7:05:00,MDT,2.26,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,"Activity Net, Buoy, Start/End UTMs: Small ETS|3029|18|535612|4924212|535638|4924116 Organization ActivityID=YELL_YSL_025_202008061033_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 16:33,8/7/2020 13:05,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20061001174001^01,Field Msr/Obs,WATER,NA,10/1/2006,17:40:00,MDT,10/2/2006,9:40:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=1001061740 Organization ActivityID=YELL_2B_20061001174001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/1/2006 23:40,10/2/2006 15:40,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20140801101405^01,Field Msr/Obs,WATER,NA,8/1/2014,10:14:00,MDT,8/2/2014,8:56:00,MDT,41.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801141014 Organization ActivityID=YELL_YSL_209_20140801101405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 16:14,8/2/2014 14:56,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20140804102401^01,Field Msr/Obs,WATER,NA,8/4/2014,10:24:00,MDT,8/5/2014,9:35:00,MDT,3.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804141024 Organization ActivityID=YELL_YSL_171_20140804102401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 16:24,8/5/2014 15:35,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202108021303_00^01,Field Msr/Obs,WATER,NA,8/2/2021,13:03:00,MDT,8/3/2021,13:07:00,MDT,8.05,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|4013|23|546423|4919375|546511|4919419 Organization ActivityID=YELL_YSL_158_202108021303_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 19:03,8/3/2021 19:07,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_036_20100817192506^01,Field Msr/Obs,WATER,NA,8/17/2010,19:25:00,MDT,8/18/2010,8:26:00,MDT,43,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_036,No Fish Caught Orig ID=0817101925 Organization ActivityID=YELL_YSL_036_20100817192506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 1:25,8/18/2010 14:26,Yellowstone Lake Shoreline KM 36,Lake,This site is located in the Breeze Channel portion of Yellowstone Lake in region 2. It is on the north shore of the channel approximately midway between Pumice and Rock points.,10070001,NA,NA,NA,NA,44.4716928,-110.4539624,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20190802115203^01,Field Msr/Obs,WATER,NA,8/2/2019,11:52:00,MDT,8/3/2019,8:36:00,MDT,12.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Organization ActivityID=YELL_YSL_023_20190802115203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 17:52,8/3/2019 14:36,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202008021007_00^01,Field Msr/Obs,WATER,NA,8/2/2020,10:07:00,MDT,8/3/2020,6:01:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: Small ETS|2021|20|551614|4914407|551716|4914401 Organization ActivityID=YELL_YSL_128_202008021007_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 16:07,8/3/2020 12:01,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20130801113505^01,Field Msr/Obs,WATER,NA,8/1/2013,11:35:00,MDT,8/2/2013,9:10:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801131135 Organization ActivityID=YELL_YSL_190_20130801113505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 17:35,8/2/2013 15:10,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20170803103703^01,Field Msr/Obs,WATER,NA,8/3/2017,10:37:00,MDT,8/4/2017,8:05:00,MDT,10.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0803171037 Organization ActivityID=YELL_YSL_012_20170803103703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:37,8/4/2017 14:05,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20170801101704^01,Field Msr/Obs,WATER,NA,8/1/2017,10:17:00,MDT,8/2/2017,8:41:00,MDT,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0801171017 Organization ActivityID=YELL_YSL_029_20170801101704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 16:17,8/2/2017 14:41,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20160801093404^01,Field Msr/Obs,WATER,NA,8/1/2016,9:34:00,MDT,8/2/2016,10:52:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801160934 Organization ActivityID=YELL_YSL_209_20160801093404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:34,8/2/2016 16:52,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20150801113002^01,Field Msr/Obs,WATER,NA,8/1/2015,11:30:00,MDT,8/2/2015,10:16:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,"Yellow, red Orig ID=0801151130 Organization ActivityID=YELL_YSL_209_20150801113002",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:30,8/2/2015 16:16,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20120807100303^01,Field Msr/Obs,WATER,NA,8/7/2012,10:03:00,MDT,8/8/2012,8:20:00,MDT,13,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0807121003 Organization ActivityID=YELL_YSL_006_20120807100303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:03,8/8/2012 14:20,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20170806110001^01,Field Msr/Obs,WATER,NA,8/6/2017,11:00:00,MDT,8/7/2017,10:50:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,Orig ID=0806171100 Organization ActivityID=YELL_YSL_101_20170806110001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:00,8/7/2017 16:50,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202008040917_00^01,Field Msr/Obs,WATER,NA,8/4/2020,9:17:00,MDT,8/5/2020,6:10:00,MDT,2.12,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: Large ETS|2020|24|539844|4919579|539787|4919637 Organization ActivityID=YELL_YSL_003_202008040917_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 15:17,8/5/2020 12:10,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20170808114504^01,Field Msr/Obs,WATER,NA,8/8/2017,11:45:00,MDT,8/9/2017,7:53:00,MDT,9.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808171145 Organization ActivityID=YELL_YSL_175_20170808114504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2017 17:45,8/9/2017 13:53,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20190807105503^01,Field Msr/Obs,WATER,NA,8/7/2019,10:55:00,MDT,8/8/2019,7:35:00,MDT,12.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,large end to shore Organization ActivityID=YELL_YSL_175_20190807105503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2019 16:55,8/8/2019 13:35,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20110803154105^01,Field Msr/Obs,WATER,NA,8/3/2011,15:41:00,MDT,8/4/2011,13:21:00,MDT,39.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0803111541 Organization ActivityID=YELL_YSL_115_20110803154105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 21:41,8/4/2011 19:21,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20150804101002^01,Field Msr/Obs,WATER,NA,8/4/2015,10:10:00,MDT,8/5/2015,9:08:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Net caught in prop at 0820. Pulled from small 2.25 to start. Pulled from large mesh 3.5 side at 0908. Est. 1 m 2.50 cut. 3 fish caught in 2.25. Good net pull despite pulling. Orig ID=0804151010 Organization ActivityID=YELL_YSL_168_20150804101002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:10,8/5/2015 15:08,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20061003192001^01,Field Msr/Obs,WATER,NA,10/3/2006,19:20:00,MDT,10/4/2006,11:20:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=1003061920 Organization ActivityID=YELL_7C_20061003192001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 1:20,10/4/2006 17:20,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20061003192502^01,Field Msr/Obs,WATER,NA,10/3/2006,19:25:00,MDT,10/4/2006,11:25:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=1003061925 Organization ActivityID=YELL_7C_20061003192502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 1:25,10/4/2006 17:25,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20180802113406^01,Field Msr/Obs,WATER,NA,8/2/2018,11:34:00,MDT,8/3/2018,9:14:00,MDT,11.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,3.5 to Shore Orig ID=0802181134 Organization ActivityID=YELL_YSL_003_20180802113406,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 17:34,8/3/2018 15:14,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20170806113005^01,Field Msr/Obs,WATER,NA,8/6/2017,11:30:00,MDT,8/7/2017,11:40:00,MDT,38.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,Orig ID=0806171130 Organization ActivityID=YELL_YSL_101_20170806113005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:30,8/7/2017 17:40,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20170801151605^01,Field Msr/Obs,WATER,NA,8/1/2017,15:16:00,MDT,8/2/2017,9:46:00,MDT,40.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0801171516 Organization ActivityID=YELL_YSL_041_20170801151605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 21:16,8/2/2017 15:46,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20100802174502^01,Field Msr/Obs,WATER,NA,8/2/2010,17:45:00,MDT,8/3/2010,10:13:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0802101745 Organization ActivityID=YELL_YSL_052_20100802174502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2010 23:45,8/3/2010 16:13,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20140804122505^01,Field Msr/Obs,WATER,NA,8/4/2014,12:25:00,MDT,8/5/2014,10:10:00,MDT,7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=08041412225 Organization ActivityID=YELL_YSL_158_20140804122505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 18:25,8/5/2014 16:10,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20190805115506^01,Field Msr/Obs,WATER,NA,8/5/2019,11:55:00,MDT,8/6/2019,9:53:00,MDT,71.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,large end to shore Organization ActivityID=YELL_YSL_101_20190805115506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:55,8/6/2019 15:53,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20120814134402^01,Field Msr/Obs,WATER,NA,8/14/2012,13:44:00,MDT,8/15/2012,12:50:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0814121344 Organization ActivityID=YELL_YSL_152_20120814134402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 19:44,8/15/2012 18:50,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20190801113003^01,Field Msr/Obs,WATER,NA,8/1/2019,11:30:00,MDT,8/2/2019,10:42:00,MDT,33.07,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Small to shore Organization ActivityID=YELL_YSL_027_20190801113003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 17:30,8/2/2019 16:42,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20170806114103^01,Field Msr/Obs,WATER,NA,8/6/2017,11:41:00,MDT,8/7/2017,11:49:00,MDT,8.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Orig ID=0806171141 Organization ActivityID=YELL_YSL_120_20170806114103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:41,8/7/2017 17:49,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20140801093802^01,Field Msr/Obs,WATER,NA,8/1/2014,9:38:00,MDT,8/2/2014,9:58:00,MDT,3.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801140938 Organization ActivityID=YELL_YSL_209_20140801093802,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 15:38,8/2/2014 15:58,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20110801115705^01,Field Msr/Obs,WATER,NA,8/1/2011,11:57:00,MDT,8/2/2011,8:44:00,MDT,45.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0801111157 Organization ActivityID=YELL_YSL_058_20110801115705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 17:57,8/2/2011 14:44,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20180803112405^01,Field Msr/Obs,WATER,NA,8/3/2018,11:24:00,MDT,8/4/2018,9:22:00,MDT,41.11,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Organization ActivityID=YELL_YSL_158_20180803112405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:24,8/4/2018 15:22,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20061001165502^01,Field Msr/Obs,WATER,NA,10/1/2006,16:55:00,MDT,10/2/2006,8:55:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=1001061655 Organization ActivityID=YELL_1C_20061001165502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/1/2006 22:55,10/2/2006 14:55,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20170805113006^01,Field Msr/Obs,WATER,NA,8/5/2017,11:30:00,MDT,8/6/2017,8:46:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,no fish Orig ID=0805171130 Organization ActivityID=YELL_YSL_171_20170805113006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:30,8/6/2017 14:46,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20170802123003^01,Field Msr/Obs,WATER,NA,8/2/2017,12:30:00,MDT,8/3/2017,9:14:00,MDT,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0802171230 Organization ActivityID=YELL_YSL_059_20170802123003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:30,8/3/2017 15:14,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20120806135504^01,Field Msr/Obs,WATER,NA,8/6/2012,13:55:00,MDT,8/7/2012,11:25:00,MDT,13.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Logger 8 Orig ID=0806121355 Organization ActivityID=YELL_YSL_012_20120806135504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 19:55,8/7/2012 17:25,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20140802122205^01,Field Msr/Obs,WATER,NA,8/2/2014,12:22:00,MDT,8/3/2014,9:58:00,MDT,39.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,No Fish; Mesh 2.25 inches towards shore Orig ID=0802141222 Organization ActivityID=YELL_YSL_009_20140802122205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 18:22,8/3/2014 15:58,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20150801105104^01,Field Msr/Obs,WATER,NA,8/1/2015,10:51:00,MDT,8/2/2015,8:08:00,MDT,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,3.5 mesh towards shore Orig ID=0801151051 Organization ActivityID=YELL_YSL_218_20150801105104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 16:51,8/2/2015 14:08,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20120815144903^01,Field Msr/Obs,WATER,NA,8/15/2012,14:49:00,MDT,8/16/2012,8:06:00,MDT,25.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0815121449 Organization ActivityID=YELL_YSL_144_20120815144903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 20:49,8/16/2012 14:06,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20110803122604^01,Field Msr/Obs,WATER,NA,8/3/2011,12:26:00,MDT,8/4/2011,10:09:00,MDT,23.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Fixed Site and No Fish Orig ID=0803111226 Organization ActivityID=YELL_YSL_080_20110803122604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 18:26,8/4/2011 16:09,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20130917151602^01,Field Msr/Obs,WATER,NA,9/17/2013,15:16:00,MDT,9/18/2013,9:13:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917131516 Organization ActivityID=YELL_3A_20130917151602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2013 21:16,9/18/2013 15:13,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20180804102105^01,Field Msr/Obs,WATER,NA,8/4/2018,10:21:00,MDT,8/5/2018,8:11:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Organization ActivityID=YELL_YSL_058_20180804102105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:21,8/5/2018 14:11,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20140803113301^01,Field Msr/Obs,WATER,NA,8/3/2014,11:33:00,MDT,8/4/2014,9:39:00,MDT,3.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0803141133 Organization ActivityID=YELL_YSL_079_20140803113301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 17:33,8/4/2014 15:39,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20110801102902^01,Field Msr/Obs,WATER,NA,8/1/2011,10:29:00,MDT,8/2/2011,8:50:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0801111029 Organization ActivityID=YELL_YSL_045_20110801102902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 16:29,8/2/2011 14:50,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20040913180005^01,Field Msr/Obs,WATER,NA,9/13/2004,18:00:00,MDT,9/14/2004,10:00:00,MDT,0.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=913041800 Organization ActivityID=YELL_2B_20040913180005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:00,9/14/2004 16:00,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20140806131703^01,Field Msr/Obs,WATER,NA,8/6/2014,13:17:00,MDT,8/7/2014,8:57:00,MDT,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806141317 Organization ActivityID=YELL_YSL_128_20140806131703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 19:17,8/7/2014 14:57,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20180807112806^01,Field Msr/Obs,WATER,NA,8/7/2018,11:28:00,MDT,8/8/2018,10:54:00,MDT,42.24,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Organization ActivityID=YELL_YSL_077_20180807112806,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:28,8/8/2018 16:54,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20180806110806^01,Field Msr/Obs,WATER,NA,8/6/2018,11:08:00,MDT,8/7/2018,8:16:00,MDT,42.37,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Organization ActivityID=YELL_YSL_121_20180806110806,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:08,8/7/2018 14:16,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20170805102102^01,Field Msr/Obs,WATER,NA,8/5/2017,10:21:00,MDT,8/6/2017,7:23:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0805171021 Organization ActivityID=YELL_YSL_148_20170805102102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:21,8/6/2017 13:23,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20100819171002^01,Field Msr/Obs,WATER,NA,8/19/2010,17:10:00,MDT,8/20/2010,9:44:00,MDT,4.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0819101710 Organization ActivityID=YELL_YSL_059_20100819171002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 23:10,8/20/2010 15:44,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20140802114006^01,Field Msr/Obs,WATER,NA,8/2/2014,11:40:00,MDT,8/3/2014,9:12:00,MDT,41.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,No Fish Orig ID=0802141140 Organization ActivityID=YELL_YSL_089_20140802114006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:40,8/3/2014 15:12,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20100812171805^01,Field Msr/Obs,WATER,NA,8/12/2010,17:18:00,MDT,8/13/2010,8:30:00,MDT,44.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0812101718 Organization ActivityID=YELL_YSL_128_20100812171805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 23:18,8/13/2010 14:30,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20140802105806^01,Field Msr/Obs,WATER,NA,8/2/2014,10:58:00,MDT,8/3/2014,7:39:00,MDT,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,No Fish Orig ID=0802141058 Organization ActivityID=YELL_YSL_091_20140802105806,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 16:58,8/3/2014 13:39,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20120815112003^01,Field Msr/Obs,WATER,NA,8/15/2012,11:20:00,MDT,8/16/2012,7:55:00,MDT,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0815121120 Organization ActivityID=YELL_YSL_163_20120815112003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 17:20,8/16/2012 13:55,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20150807121303^01,Field Msr/Obs,WATER,NA,8/7/2015,12:13:00,MDT,8/8/2015,9:03:00,MDT,11.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807151213 Organization ActivityID=YELL_YSL_029_20150807121303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 18:13,8/8/2015 15:03,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_202108021159_00^01,Field Msr/Obs,WATER,NA,8/2/2021,11:59:00,MDT,8/3/2021,11:23:00,MDT,1.13,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|H5004|21|548549|4915674|548640|4915705 Organization ActivityID=YELL_YSL_148_202108021159_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.5,19.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 17:59,8/3/2021 17:23,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202108031429_00^01,Field Msr/Obs,WATER,NA,8/3/2021,14:29:00,MDT,8/4/2021,9:17:00,MDT,8.48,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|4012|23|543245|4920278|543333|4920221 Organization ActivityID=YELL_YSL_163_202108031429_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 20:29,8/4/2021 15:17,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20120806120106^01,Field Msr/Obs,WATER,NA,8/6/2012,12:01:00,MDT,8/7/2012,9:39:00,MDT,33.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Logger 16 Orig ID=0806121201 Organization ActivityID=YELL_YSL_058_20120806120106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 18:01,8/7/2012 15:39,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20120918103201^01,Field Msr/Obs,WATER,NA,9/18/2012,10:32:00,MDT,9/19/2012,8:02:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0918121032 Organization ActivityID=YELL_1A_20120918103201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 16:32,9/19/2012 14:02,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20190806115403^01,Field Msr/Obs,WATER,NA,8/6/2019,11:54:00,MDT,8/7/2019,10:26:00,MDT,12.75,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,large end to shore Organization ActivityID=YELL_YSL_128_20190806115403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 17:54,8/7/2019 16:26,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20190804105901^01,Field Msr/Obs,WATER,NA,8/4/2019,10:59:00,MDT,8/5/2019,9:13:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Large end to shore Organization ActivityID=YELL_YSL_082_20190804105901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 16:59,8/5/2019 15:13,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20190804100501^01,Field Msr/Obs,WATER,NA,8/4/2019,10:05:00,MDT,8/5/2019,7:19:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,large end to shore Organization ActivityID=YELL_YSL_080_20190804100501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 16:05,8/5/2019 13:19,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20140807115606^01,Field Msr/Obs,WATER,NA,8/7/2014,11:56:00,MDT,8/8/2014,8:26:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,NO FISH Orig ID=0807141156 Organization ActivityID=YELL_YSL_153_20140807115606,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:56,8/8/2014 14:26,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20180807100002^01,Field Msr/Obs,WATER,NA,8/7/2018,10:00:00,MDT,8/8/2018,8:08:00,MDT,1.76,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Organization ActivityID=YELL_YSL_212_20180807100002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 16:00,8/8/2018 14:08,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20170801100302^01,Field Msr/Obs,WATER,NA,8/1/2017,10:03:00,MDT,8/2/2017,8:31:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0801171003 Organization ActivityID=YELL_YSL_029_20170801100302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 16:03,8/2/2017 14:31,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20140803115204^01,Field Msr/Obs,WATER,NA,8/3/2014,11:52:00,MDT,8/4/2014,8:37:00,MDT,41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0803141152 Organization ActivityID=YELL_YSL_079_20140803115204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 17:52,8/4/2014 14:37,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_024_20100810163702^01,Field Msr/Obs,WATER,NA,8/10/2010,16:37:00,MDT,8/11/2010,9:30:00,MDT,3.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_024,3 YCT dropped from 2.25 inch mesh Orig ID=0810101637 Organization ActivityID=YELL_YSL_024_20100810163702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 22:37,8/11/2010 15:30,Yellowstone Lake Shoreline KM 24,Lake,Station 24 is located in the West Thumb portion of Yellowstone Lake along the western shoreline near the vicinity of Carrington Island.,10070001,NA,NA,NA,NA,44.4562099,-110.5580606,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20160801092201^01,Field Msr/Obs,WATER,NA,8/1/2016,9:22:00,MDT,8/2/2016,10:19:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801160922 Organization ActivityID=YELL_YSL_209_20160801092201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:22,8/2/2016 16:19,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20120815110401^01,Field Msr/Obs,WATER,NA,8/15/2012,11:04:00,MDT,8/16/2012,8:13:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0815121104 Organization ActivityID=YELL_YSL_163_20120815110401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 17:04,8/16/2012 14:13,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_154_20100809173101^01,Field Msr/Obs,WATER,NA,8/9/2010,17:31:00,MDT,8/10/2010,8:33:00,MDT,4.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_154,Orig ID=0809101731 Organization ActivityID=YELL_YSL_154_20100809173101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 23:31,8/10/2010 14:33,Yellowstone Lake Shoreline KM 154,Lake,This site is located within the main basin of Yellowstone Lake within region 2. It is located southwest of Frank Island on the western shoreline of the lake.,10070001,NA,NA,NA,NA,44.4068074,-110.4040786,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20140802114601^01,Field Msr/Obs,WATER,NA,8/2/2014,11:46:00,MDT,8/3/2014,11:13:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Mesh 3.5 to shore Orig ID=0802141146 Organization ActivityID=YELL_YSL_009_20140802114601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:46,8/3/2014 17:13,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20180803115106^01,Field Msr/Obs,WATER,NA,8/3/2018,11:51:00,MDT,8/4/2018,9:35:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Organization ActivityID=YELL_YSL_065_20180803115106,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:51,8/4/2018 15:35,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20130803110004^01,Field Msr/Obs,WATER,NA,8/3/2013,11:00:00,MDT,8/4/2013,8:18:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0803131100 Organization ActivityID=YELL_YSL_089_20130803110004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 17:00,8/4/2013 14:18,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20140805125001^01,Field Msr/Obs,WATER,NA,8/5/2014,12:50:00,MDT,8/6/2014,9:29:00,MDT,3.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805141250 Organization ActivityID=YELL_YSL_065_20140805125001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:50,8/6/2014 15:29,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20100914151101^01,Field Msr/Obs,WATER,NA,9/14/2010,15:11:00,MDT,9/15/2010,7:50:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=0914101511 Organization ActivityID=YELL_2A_20100914151101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:11,9/15/2010 13:50,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20170807142303^01,Field Msr/Obs,WATER,NA,8/7/2017,14:23:00,MDT,8/8/2017,10:09:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Orig ID=0807171423 Organization ActivityID=YELL_YSL_212_20170807142303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 20:23,8/8/2017 16:09,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20130802130301^01,Field Msr/Obs,WATER,NA,8/2/2013,13:03:00,MDT,8/3/2013,7:25:00,MDT,5.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0802131303 Organization ActivityID=YELL_YSL_082_20130802130301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 19:03,8/3/2013 13:25,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20170801142806^01,Field Msr/Obs,WATER,NA,8/1/2017,14:28:00,MDT,8/2/2017,8:30:00,MDT,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,No fish Orig ID=0801171428 Organization ActivityID=YELL_YSL_042_20170801142806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 20:28,8/2/2017 14:30,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20190804105002^01,Field Msr/Obs,WATER,NA,8/4/2019,10:50:00,MDT,8/5/2019,7:58:00,MDT,1.88,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,small to shore Organization ActivityID=YELL_YSL_163_20190804105002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 16:50,8/5/2019 13:58,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20100805165003^01,Field Msr/Obs,WATER,NA,8/5/2010,16:50:00,MDT,8/6/2010,9:20:00,MDT,20.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0805101650 Organization ActivityID=YELL_YSL_082_20100805165003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 22:50,8/6/2010 15:20,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20180805112903^01,Field Msr/Obs,WATER,NA,8/5/2018,11:29:00,MDT,8/6/2018,9:53:00,MDT,11.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Organization ActivityID=YELL_YSL_080_20180805112903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:29,8/6/2018 15:53,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20190805111101^01,Field Msr/Obs,WATER,NA,8/5/2019,11:11:00,MDT,8/6/2019,8:31:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,small end to shore Organization ActivityID=YELL_YSL_171_20190805111101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:11,8/6/2019 14:31,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20120918105704^01,Field Msr/Obs,WATER,NA,9/18/2012,10:57:00,MDT,9/19/2012,8:45:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0918121057 Organization ActivityID=YELL_1A_20120918105704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 16:57,9/19/2012 14:45,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20040916201502^01,Field Msr/Obs,WATER,NA,9/16/2004,20:15:00,MDT,9/17/2004,12:15:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=916042015 Organization ActivityID=YELL_7C_20040916201502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 2:15,9/17/2004 18:15,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20180801093904^01,Field Msr/Obs,WATER,NA,8/1/2018,9:39:00,MDT,8/2/2018,7:49:00,MDT,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,.75 to shore Orig ID=0801180939 Organization ActivityID=YELL_YSL_023_20180801093904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:39,8/2/2018 13:49,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20061002183001^01,Field Msr/Obs,WATER,NA,10/2/2006,18:30:00,MDT,10/3/2006,10:30:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=1002061830 Organization ActivityID=YELL_4A_20061002183001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.8,8.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 0:30,10/3/2006 16:30,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20180802101701^01,Field Msr/Obs,WATER,NA,8/2/2018,10:17:00,MDT,8/3/2018,7:45:00,MDT,39.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,2.25 to Shore; No Fish Orig ID=0802181017 Organization ActivityID=YELL_YSL_041_20180802101701,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:17,8/3/2018 13:45,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20180803112004^01,Field Msr/Obs,WATER,NA,8/3/2018,11:20:00,MDT,8/4/2018,9:14:00,MDT,8.02,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Organization ActivityID=YELL_YSL_158_20180803112004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:20,8/4/2018 15:14,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_090_20100804172504^01,Field Msr/Obs,WATER,NA,8/4/2010,17:25:00,MDT,8/5/2010,10:08:00,MDT,21.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_090,No Fish Caught Orig ID=0804101725 Organization ActivityID=YELL_YSL_090_20100804172504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 23:25,8/5/2010 16:08,Yellowstone Lake Shoreline KM 90,Lake,This station is located in the Southeast Arm of Yellowstone Lake along the east shoreline. It is approximately 4 km from the non-motorized zone along the east shore.,10070001,NA,NA,NA,NA,44.3808348,-110.2343213,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202108041047_00^01,Field Msr/Obs,WATER,NA,8/4/2021,10:47:00,MDT,8/5/2021,7:49:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|4017|19|539214|4920370|539159|4920452 Organization ActivityID=YELL_YSL_003_202108041047_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 16:47,8/5/2021 13:49,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_182_20180807104702^01,Field Msr/Obs,WATER,NA,8/7/2018,10:47:00,MDT,8/8/2018,7:35:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_182,Organization ActivityID=YELL_YSL_182_20180807104702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 16:47,8/8/2018 13:35,Yellowstone Lake Shoreline KM 182,Lake,This site is located in the South East Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.33109,-110.21466,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_061_20100819180002^01,Field Msr/Obs,WATER,NA,8/19/2010,18:00:00,MDT,8/20/2010,9:01:00,MDT,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_061,No Fish Orig ID=0819101800 Organization ActivityID=YELL_YSL_061_20100819180002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/20/2010 0:00,8/20/2010 15:01,Yellowstone Lake Shoreline KM 61,Lake,This site is located on the south east corner of the West Thumb area of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.5486839,-110.3367893,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_036_20100817190501^01,Field Msr/Obs,WATER,NA,8/17/2010,19:05:00,MDT,8/18/2010,8:16:00,MDT,6.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_036,YCT Orig ID=0817101905 Organization ActivityID=YELL_YSL_036_20100817190501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 1:05,8/18/2010 14:16,Yellowstone Lake Shoreline KM 36,Lake,This site is located in the Breeze Channel portion of Yellowstone Lake in region 2. It is on the north shore of the channel approximately midway between Pumice and Rock points.,10070001,NA,NA,NA,NA,44.4716928,-110.4539624,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20100917163501^01,Field Msr/Obs,WATER,NA,9/17/2010,16:35:00,MDT,9/18/2010,8:22:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0917101635 Organization ActivityID=YELL_1C_20100917163501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 22:35,9/18/2010 14:22,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20140806135105^01,Field Msr/Obs,WATER,NA,8/6/2014,13:51:00,MDT,8/7/2014,8:38:00,MDT,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806141351 Organization ActivityID=YELL_YSL_128_20140806135105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 19:51,8/7/2014 14:38,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20180807113205^01,Field Msr/Obs,WATER,NA,8/7/2018,11:32:00,MDT,8/8/2018,11:00:00,MDT,40.78,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Organization ActivityID=YELL_YSL_077_20180807113205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:32,8/8/2018 17:00,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20100812173304^01,Field Msr/Obs,WATER,NA,8/12/2010,17:33:00,MDT,8/13/2010,9:18:00,MDT,18.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0812101733 Organization ActivityID=YELL_YSL_128_20100812173304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 23:33,8/13/2010 15:18,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20100915160205^01,Field Msr/Obs,WATER,NA,9/15/2010,16:02:00,MDT,9/16/2010,8:35:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0915101602 Organization ActivityID=YELL_7C_20100915160205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 22:02,9/16/2010 14:35,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_106_20100803171305^01,Field Msr/Obs,WATER,NA,8/3/2010,17:13:00,MDT,8/4/2010,9:32:00,MDT,46.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_106,Orig ID=0803101713 Organization ActivityID=YELL_YSL_106_20100803171305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 23:13,8/4/2010 15:32,Yellowstone Lake Shoreline KM 106,Lake,This station is located in the South Arm of Yellowstone Lake along the east shore approximately one fourth the way between the main lake basin and the non-motorized zone.,10070001,NA,NA,NA,NA,44.3777623,-110.2979164,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20180805113304^01,Field Msr/Obs,WATER,NA,8/5/2018,11:33:00,MDT,8/6/2018,10:07:00,MDT,9.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Organization ActivityID=YELL_YSL_080_20180805113304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:33,8/6/2018 16:07,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20130803133502^01,Field Msr/Obs,WATER,NA,8/3/2013,13:35:00,MDT,8/4/2013,11:32:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0803131335 Organization ActivityID=YELL_YSL_158_20130803133502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 19:35,8/4/2013 17:32,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20180803102201^01,Field Msr/Obs,WATER,NA,8/3/2018,10:22:00,MDT,8/4/2018,7:12:00,MDT,2.07,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Organization ActivityID=YELL_YSL_163_20180803102201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:22,8/4/2018 13:12,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20180802105806^01,Field Msr/Obs,WATER,NA,8/2/2018,10:58:00,MDT,8/3/2018,8:06:00,MDT,10.47,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,2.0 to Shore Orig ID=0802181058 Organization ActivityID=YELL_YSL_006_20180802105806,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:58,8/3/2018 14:06,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20120809105705^01,Field Msr/Obs,WATER,NA,8/9/2012,10:57:00,MDT,8/10/2012,7:05:00,MDT,36.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0809121057 Organization ActivityID=YELL_YSL_041_20120809105705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 16:57,8/10/2012 13:05,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20040913182004^01,Field Msr/Obs,WATER,NA,9/13/2004,18:20:00,MDT,9/14/2004,10:20:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=913041820 Organization ActivityID=YELL_3A_20040913182004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:20,9/14/2004 16:20,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20180806111405^01,Field Msr/Obs,WATER,NA,8/6/2018,11:14:00,MDT,8/7/2018,8:24:00,MDT,38.99,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Organization ActivityID=YELL_YSL_121_20180806111405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:14,8/7/2018 14:24,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20180807070701^01,Field Msr/Obs,WATER,NA,8/7/2018,7:07:00,MDT,8/8/2018,9:38:00,MDT,10.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,buoy number written down as 9/42 Organization ActivityID=YELL_YSL_079_20180807070701,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 13:07,8/8/2018 15:38,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20110803132201^01,Field Msr/Obs,WATER,NA,8/3/2011,13:22:00,MDT,8/4/2011,12:29:00,MDT,4.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Large YCT escaped from 2.0 mesh Orig ID=0803111322 Organization ActivityID=YELL_YSL_121_20110803132201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:22,8/4/2011 18:29,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_090_20100804170006^01,Field Msr/Obs,WATER,NA,8/4/2010,17:00:00,MDT,8/5/2010,9:30:00,MDT,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_090,No Fish Caught Orig ID=0804101700 Organization ActivityID=YELL_YSL_090_20100804170006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 23:00,8/5/2010 15:30,Yellowstone Lake Shoreline KM 90,Lake,This station is located in the Southeast Arm of Yellowstone Lake along the east shoreline. It is approximately 4 km from the non-motorized zone along the east shore.,10070001,NA,NA,NA,NA,44.3808348,-110.2343213,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20150803125404^01,Field Msr/Obs,WATER,NA,8/3/2015,12:54:00,MDT,8/4/2015,8:58:00,MDT,11.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803151254 Organization ActivityID=YELL_YSL_080_20150803125404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 18:54,8/4/2015 14:58,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_182_20180807104101^01,Field Msr/Obs,WATER,NA,8/7/2018,10:41:00,MDT,8/8/2018,7:17:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_182,Organization ActivityID=YELL_YSL_182_20180807104101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 16:41,8/8/2018 13:17,Yellowstone Lake Shoreline KM 182,Lake,This site is located in the South East Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.33109,-110.21466,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20130801111002^01,Field Msr/Obs,WATER,NA,8/1/2013,11:10:00,MDT,8/2/2013,8:37:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801131110 Organization ActivityID=YELL_YSL_190_20130801111002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 17:10,8/2/2013 14:37,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20120814141406^01,Field Msr/Obs,WATER,NA,8/14/2012,14:14:00,MDT,8/15/2012,12:03:00,MDT,41.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,No Fish Orig ID=0814121414 Organization ActivityID=YELL_YSL_152_20120814141406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 20:14,8/15/2012 18:03,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20140806134006^01,Field Msr/Obs,WATER,NA,8/6/2014,13:40:00,MDT,8/7/2014,8:21:00,MDT,39,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,NO FISH Orig ID=0806141340 Organization ActivityID=YELL_YSL_128_20140806134006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 19:40,8/7/2014 14:21,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20180806113002^01,Field Msr/Obs,WATER,NA,8/6/2018,11:30:00,MDT,8/7/2018,9:00:00,MDT,2.71,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Organization ActivityID=YELL_YSL_115_20180806113002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:30,8/7/2018 15:00,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20120808102102^01,Field Msr/Obs,WATER,NA,8/8/2012,10:21:00,MDT,8/9/2012,7:59:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,No number 37 and 38 fish Orig ID=0808121021 Organization ActivityID=YELL_YSL_077_20120808102102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:21,8/9/2012 13:59,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20100817183903^01,Field Msr/Obs,WATER,NA,8/17/2010,18:39:00,MDT,8/18/2010,9:06:00,MDT,18.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,1 LKT Orig ID=0817101839 Organization ActivityID=YELL_YSL_153_20100817183903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 0:39,8/18/2010 15:06,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20150801110705^01,Field Msr/Obs,WATER,NA,8/1/2015,11:07:00,MDT,8/2/2015,8:25:00,MDT,41.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0801151107 Organization ActivityID=YELL_YSL_218_20150801110705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:07,8/2/2015 14:25,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_013_20100816153705^01,Field Msr/Obs,WATER,NA,8/16/2010,15:37:00,MDT,8/17/2010,8:16:00,MDT,45.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_013,2 LKT escaped Orig ID=0816101537 Organization ActivityID=YELL_YSL_013_20100816153705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 21:37,8/17/2010 14:16,Yellowstone Lake Shoreline KM 13,Lake,This site is located in the West Thumb of Yellowstone Lake within region 1 near the West Thumb Geyser Basin.,10070001,NA,NA,NA,NA,44.3955718,-110.5587041,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20170801135604^01,Field Msr/Obs,WATER,NA,8/1/2017,13:56:00,MDT,8/2/2017,8:08:00,MDT,10.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0801171356 Organization ActivityID=YELL_YSL_042_20170801135604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 19:56,8/2/2017 14:08,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20190804111705^01,Field Msr/Obs,WATER,NA,8/4/2019,11:17:00,MDT,8/5/2019,9:41:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,small end to shore Organization ActivityID=YELL_YSL_082_20190804111705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:17,8/5/2019 15:41,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20180801093303^01,Field Msr/Obs,WATER,NA,8/1/2018,9:33:00,MDT,8/2/2018,7:29:00,MDT,6.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,0.75 to shore Orig ID=0801180933 Organization ActivityID=YELL_YSL_023_20180801093303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:33,8/2/2018 13:29,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20120918125204^01,Field Msr/Obs,WATER,NA,9/18/2012,12:52:00,MDT,9/19/2012,7:10:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0918121252 Organization ActivityID=YELL_1B_20120918125204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 18:52,9/19/2012 13:10,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20120813160004^01,Field Msr/Obs,WATER,NA,8/13/2012,16:00:00,MDT,8/14/2012,12:58:00,MDT,13.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0813121600 Organization ActivityID=YELL_YSL_218_20120813160004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 22:00,8/14/2012 18:58,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20140801092801^01,Field Msr/Obs,WATER,NA,8/1/2014,9:28:00,MDT,8/2/2014,10:01:00,MDT,3.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801140928 Organization ActivityID=YELL_YSL_209_20140801092801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 15:28,8/2/2014 16:01,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202108011033_00^01,Field Msr/Obs,WATER,NA,8/1/2021,10:33:00,MDT,8/2/2021,10:51:00,MDT,10.32,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|2026|1|551928|4914216|552014|4914224 Organization ActivityID=YELL_YSL_128_202108011033_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 16:33,8/2/2021 16:51,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20150801122206^01,Field Msr/Obs,WATER,NA,8/1/2015,12:22:00,MDT,8/2/2015,9:04:00,MDT,42.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,"Yellow, orange. No Fish. Orig ID=0801151222 Organization ActivityID=YELL_YSL_209_20150801122206",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 18:22,8/2/2015 15:04,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20100917142104^01,Field Msr/Obs,WATER,NA,9/17/2010,14:21:00,MDT,9/18/2010,8:04:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0917101421 Organization ActivityID=YELL_1B_20100917142104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 20:21,9/18/2010 14:04,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20120808104906^01,Field Msr/Obs,WATER,NA,8/8/2012,10:49:00,MDT,8/9/2012,7:31:00,MDT,47.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0808121049 Organization ActivityID=YELL_YSL_023_20120808104906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:49,8/9/2012 13:31,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20120917100503^01,Field Msr/Obs,WATER,NA,9/17/2012,10:05:00,MDT,9/18/2012,9:02:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917121005 Organization ActivityID=YELL_3A_20120917100503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 16:05,9/18/2012 15:02,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20150806121206^01,Field Msr/Obs,WATER,NA,8/6/2015,12:12:00,MDT,8/7/2015,9:46:00,MDT,38.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,No Fish Orig ID=0806151212 Organization ActivityID=YELL_YSL_058_20150806121206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 18:12,8/7/2015 15:46,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20120806111804^01,Field Msr/Obs,WATER,NA,8/6/2012,11:18:00,MDT,8/7/2012,10:06:00,MDT,12.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Logger 18 Orig ID=0806121118 Organization ActivityID=YELL_YSL_058_20120806111804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 17:18,8/7/2012 16:06,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20140804120204^01,Field Msr/Obs,WATER,NA,8/4/2014,12:02:00,MDT,8/5/2014,11:25:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804141202 Organization ActivityID=YELL_YSL_158_20140804120204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 18:02,8/5/2014 17:25,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_182_20180807105504^01,Field Msr/Obs,WATER,NA,8/7/2018,10:55:00,MDT,8/8/2018,7:43:00,MDT,10.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_182,Organization ActivityID=YELL_YSL_182_20180807105504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 16:55,8/8/2018 13:43,Yellowstone Lake Shoreline KM 182,Lake,This site is located in the South East Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.33109,-110.21466,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20120808113406^01,Field Msr/Obs,WATER,NA,8/8/2012,11:34:00,MDT,8/9/2012,10:15:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,No Fish Orig ID=0808121134 Organization ActivityID=YELL_YSL_079_20120808113406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 17:34,8/9/2012 16:15,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20130803134201^01,Field Msr/Obs,WATER,NA,8/3/2013,13:42:00,MDT,8/4/2013,12:11:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,northing for end point is missing a digit Orig ID=0803131342 Organization ActivityID=YELL_YSL_158_20130803134201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 19:42,8/4/2013 18:11,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_202108050939_00^01,Field Msr/Obs,WATER,NA,8/5/2021,9:39:00,MDT,8/6/2021,7:03:00,MDT,1.21,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|H5004|1|533664|4919706|533743|4919757 Organization ActivityID=YELL_YSL_021_202108050939_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 15:39,8/6/2021 13:03,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_004_20100816162205^01,Field Msr/Obs,WATER,NA,8/16/2010,16:22:00,MDT,8/17/2010,9:33:00,MDT,42.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_004,Orig ID=0816101622 Organization ActivityID=YELL_YSL_004_20100816162205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 22:22,8/17/2010 15:33,Yellowstone Lake Shoreline KM 4,Lake,Station located on the southeast corner of West Thumb of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20120808101702^01,Field Msr/Obs,WATER,NA,8/8/2012,10:17:00,MDT,8/9/2012,8:14:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0808121017 Organization ActivityID=YELL_YSL_023_20120808101702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:17,8/9/2012 14:14,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20100915143302^01,Field Msr/Obs,WATER,NA,9/15/2010,14:33:00,MDT,9/16/2010,8:37:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,YCT scale card no 1.3 Orig ID=0915101433 Organization ActivityID=YELL_1A_20100915143302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 20:33,9/16/2010 14:37,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20150802114502^01,Field Msr/Obs,WATER,NA,8/2/2015,11:45:00,MDT,8/3/2015,12:21:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Large towards shore. Orig ID=0802151145 Organization ActivityID=YELL_YSL_128_20150802114502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:45,8/3/2015 18:21,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20120809114404^01,Field Msr/Obs,WATER,NA,8/9/2012,11:44:00,MDT,8/10/2012,9:37:00,MDT,20.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,No Fish Orig ID=0809121144 Organization ActivityID=YELL_YSL_045_20120809114404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 17:44,8/10/2012 15:37,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20140807113004^01,Field Msr/Obs,WATER,NA,8/7/2014,11:30:00,MDT,8/8/2014,10:22:00,MDT,7.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0807141130 Organization ActivityID=YELL_YSL_121_20140807113004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:30,8/8/2014 16:22,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20140804114604^01,Field Msr/Obs,WATER,NA,8/4/2014,11:46:00,MDT,8/5/2014,10:00:00,MDT,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"No Fish, Large to shore Orig ID=0804141146 Organization ActivityID=YELL_YSL_163_20140804114604",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:46,8/5/2014 16:00,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20120815133605^01,Field Msr/Obs,WATER,NA,8/15/2012,13:36:00,MDT,8/16/2012,9:03:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0815121336 Organization ActivityID=YELL_YSL_158_20120815133605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 19:36,8/16/2012 15:03,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20100818163103^01,Field Msr/Obs,WATER,NA,8/18/2010,16:31:00,MDT,8/19/2010,10:17:00,MDT,18.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0818101631 Organization ActivityID=YELL_YSL_042_20100818163103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 22:31,8/19/2010 16:17,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20180803104605^01,Field Msr/Obs,WATER,NA,8/3/2018,10:46:00,MDT,8/4/2018,8:06:00,MDT,39.99,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Organization ActivityID=YELL_YSL_163_20180803104605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:46,8/4/2018 14:06,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20120806095404^01,Field Msr/Obs,WATER,NA,8/6/2012,9:54:00,MDT,8/7/2012,8:17:00,MDT,12.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Logger 22 Orig ID=0806120954 Organization ActivityID=YELL_YSL_052_20120806095404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 15:54,8/7/2012 14:17,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20180801100301^01,Field Msr/Obs,WATER,NA,8/1/2018,10:03:00,MDT,8/2/2018,8:01:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,2.0 to shore; 1 LNS escaped 1.25 mesh Orig ID=0801181003 Organization ActivityID=YELL_YSL_025_20180801100301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:03,8/2/2018 14:01,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20140805120601^01,Field Msr/Obs,WATER,NA,8/5/2014,12:06:00,MDT,8/6/2014,11:13:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0805141206 Organization ActivityID=YELL_YSL_041_20140805120601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:06,8/6/2014 17:13,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_103_20100805155803^01,Field Msr/Obs,WATER,NA,8/5/2010,15:58:00,MDT,8/6/2010,8:28:00,MDT,22.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_103,Orig ID=0805101558 Organization ActivityID=YELL_YSL_103_20100805155803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 21:58,8/6/2010 14:28,Yellowstone Lake Shoreline KM 103,Lake,This site is located at the tip of the Promontory between the South and the Southeast arms of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3917251,-110.2833994,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20120916102502^01,Field Msr/Obs,WATER,NA,9/16/2012,10:25:00,MDT,9/17/2012,10:24:00,MDT,3.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=0916121025 Organization ActivityID=YELL_4B_20120916102502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2012 16:25,9/17/2012 16:24,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20170804122005^01,Field Msr/Obs,WATER,NA,8/4/2017,12:20:00,MDT,8/5/2017,9:00:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0804171220 Organization ActivityID=YELL_YSL_082_20170804122005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 18:20,8/5/2017 15:00,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_036_20100819173501^01,Field Msr/Obs,WATER,NA,8/19/2010,17:35:00,MDT,8/20/2010,9:20:00,MDT,8.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_036,Fish number 12 weight was changed from 1240 to 240 Orig ID=0819101735 Organization ActivityID=YELL_YSL_036_20100819173501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 23:35,8/20/2010 15:20,Yellowstone Lake Shoreline KM 36,Lake,This site is located in the Breeze Channel portion of Yellowstone Lake in region 2. It is on the north shore of the channel approximately midway between Pumice and Rock points.,10070001,NA,NA,NA,NA,44.4716928,-110.4539624,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20180806120905^01,Field Msr/Obs,WATER,NA,8/6/2018,12:09:00,MDT,8/7/2018,10:13:00,MDT,39.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Organization ActivityID=YELL_YSL_091_20180806120905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 18:09,8/7/2018 16:13,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20170806103703^01,Field Msr/Obs,WATER,NA,8/6/2017,10:37:00,MDT,8/7/2017,9:33:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806171037 Organization ActivityID=YELL_YSL_128_20170806103703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:37,8/7/2017 15:33,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20120916095504^01,Field Msr/Obs,WATER,NA,9/16/2012,9:55:00,MDT,9/17/2012,9:17:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0916120955 Organization ActivityID=YELL_4A_20120916095504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2012 15:55,9/17/2012 15:17,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20190801104105^01,Field Msr/Obs,WATER,NA,8/1/2019,10:41:00,MDT,8/2/2019,9:36:00,MDT,39.84,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,small to shore Organization ActivityID=YELL_YSL_029_20190801104105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 16:41,8/2/2019 15:36,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_154_20100809180306^01,Field Msr/Obs,WATER,NA,8/9/2010,18:03:00,MDT,8/10/2010,8:08:00,MDT,41.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_154,No Fish Orig ID=0809101803 Organization ActivityID=YELL_YSL_154_20100809180306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 0:03,8/10/2010 14:08,Yellowstone Lake Shoreline KM 154,Lake,This site is located within the main basin of Yellowstone Lake within region 2. It is located southwest of Frank Island on the western shoreline of the lake.,10070001,NA,NA,NA,NA,44.4068074,-110.4040786,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20110810145005^01,Field Msr/Obs,WATER,NA,8/10/2011,14:50:00,MDT,8/11/2011,9:52:00,MDT,48,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,No Fish Orig ID=0810111450 Organization ActivityID=YELL_YSL_025_20110810145005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 20:50,8/11/2011 15:52,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20160801091503^01,Field Msr/Obs,WATER,NA,8/1/2016,9:15:00,MDT,8/2/2016,9:07:00,MDT,14.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0801160915 Organization ActivityID=YELL_YSL_218_20160801091503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:15,8/2/2016 15:07,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20100915154501^01,Field Msr/Obs,WATER,NA,9/15/2010,15:45:00,MDT,9/16/2010,8:12:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0915101545 Organization ActivityID=YELL_7C_20100915154501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 21:45,9/16/2010 14:12,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20180806115703^01,Field Msr/Obs,WATER,NA,8/6/2018,11:57:00,MDT,8/7/2018,9:47:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Organization ActivityID=YELL_YSL_091_20180806115703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:57,8/7/2018 15:47,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20180803112101^01,Field Msr/Obs,WATER,NA,8/3/2018,11:21:00,MDT,8/4/2018,8:11:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Organization ActivityID=YELL_YSL_065_20180803112101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:21,8/4/2018 14:11,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20180803110401^01,Field Msr/Obs,WATER,NA,8/3/2018,11:04:00,MDT,8/4/2018,8:38:00,MDT,2.21,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Organization ActivityID=YELL_YSL_158_20180803110401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:04,8/4/2018 14:38,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20170802124405^01,Field Msr/Obs,WATER,NA,8/2/2017,12:44:00,MDT,8/3/2017,9:36:00,MDT,41.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0802171244 Organization ActivityID=YELL_YSL_059_20170802124405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:44,8/3/2017 15:36,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20100805164402^01,Field Msr/Obs,WATER,NA,8/5/2010,16:44:00,MDT,8/6/2010,9:30:00,MDT,3.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0805101644 Organization ActivityID=YELL_YSL_082_20100805164402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 22:44,8/6/2010 15:30,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_090_20100804173005^01,Field Msr/Obs,WATER,NA,8/4/2010,17:30:00,MDT,8/5/2010,10:14:00,MDT,44.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_090,Orig ID=0804101730 Organization ActivityID=YELL_YSL_090_20100804173005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 23:30,8/5/2010 16:14,Yellowstone Lake Shoreline KM 90,Lake,This station is located in the Southeast Arm of Yellowstone Lake along the east shoreline. It is approximately 4 km from the non-motorized zone along the east shore.,10070001,NA,NA,NA,NA,44.3808348,-110.2343213,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20130801105102^01,Field Msr/Obs,WATER,NA,8/1/2013,10:51:00,MDT,8/2/2013,9:16:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0801131051 Organization ActivityID=YELL_YSL_218_20130801105102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 16:51,8/2/2013 15:16,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20180803103203^01,Field Msr/Obs,WATER,NA,8/3/2018,10:32:00,MDT,8/4/2018,7:38:00,MDT,7.79,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Organization ActivityID=YELL_YSL_163_20180803103203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:32,8/4/2018 13:38,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20120815153203^01,Field Msr/Obs,WATER,NA,8/15/2012,15:32:00,MDT,8/16/2012,9:37:00,MDT,12,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0815121532 Organization ActivityID=YELL_YSL_128_20120815153203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 21:32,8/16/2012 15:37,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_202108010909_00^01,Field Msr/Obs,WATER,NA,8/1/2021,9:09:00,MDT,8/2/2021,8:47:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE, LOG UNDER NET|H5003|3|551624|4908822|551706|4908840 Organization ActivityID=YELL_YSL_120_202108010909_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 15:09,8/2/2021 14:47,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20120815152102^01,Field Msr/Obs,WATER,NA,8/15/2012,15:21:00,MDT,8/16/2012,10:24:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0815121521 Organization ActivityID=YELL_YSL_128_20120815152102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 21:21,8/16/2012 16:24,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_202108060951_00^01,Field Msr/Obs,WATER,NA,8/6/2021,9:51:00,MDT,8/7/2021,6:59:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|3063|23|536685|4924460|536644|4924366 Organization ActivityID=YELL_YSL_027_202108060951_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2021 15:51,8/7/2021 12:59,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20180801092801^01,Field Msr/Obs,WATER,NA,8/1/2018,9:28:00,MDT,8/2/2018,7:30:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,.75 to shore Orig ID=0801180928 Organization ActivityID=YELL_YSL_012_20180801092801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:28,8/2/2018 13:30,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20140802113105^01,Field Msr/Obs,WATER,NA,8/2/2014,11:31:00,MDT,8/3/2014,7:05:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,No Fish; Mesh 3.5 towards shore Orig ID=0802141131 Organization ActivityID=YELL_YSL_012_20140802113105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:31,8/3/2014 13:05,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_202108021151_00^01,Field Msr/Obs,WATER,NA,8/2/2021,11:51:00,MDT,8/3/2021,7:05:00,MDT,1.56,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE, 1 BUOY SHALLOW END|H5002|19|548631|4915560|548718|4915542 Organization ActivityID=YELL_YSL_148_202108021151_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.5,19.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 17:51,8/3/2021 13:05,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20170808115106^01,Field Msr/Obs,WATER,NA,8/8/2017,11:51:00,MDT,8/9/2017,8:03:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,no fish Orig ID=0808171151 Organization ActivityID=YELL_YSL_175_20170808115106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2017 17:51,8/9/2017 14:03,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202108041041_00^01,Field Msr/Obs,WATER,NA,8/4/2021,10:41:00,MDT,8/5/2021,7:39:00,MDT,41.15,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|4016|9|539431|4920489|539402|4920586 Organization ActivityID=YELL_YSL_003_202108041041_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 16:41,8/5/2021 13:39,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20190805140205^01,Field Msr/Obs,WATER,NA,8/5/2019,14:02:00,MDT,8/6/2019,10:02:00,MDT,36.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,small end to shore Organization ActivityID=YELL_YSL_148_20190805140205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 20:02,8/6/2019 16:02,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_202108050959_00^01,Field Msr/Obs,WATER,NA,8/5/2021,9:59:00,MDT,8/6/2021,7:59:00,MDT,8.33,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|4012|7|533935|4919891|533998|4919936 Organization ActivityID=YELL_YSL_021_202108050959_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 15:59,8/6/2021 13:59,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20180804100501^01,Field Msr/Obs,WATER,NA,8/4/2018,10:05:00,MDT,8/5/2018,7:07:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Organization ActivityID=YELL_YSL_058_20180804100501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:05,8/5/2018 13:07,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20120815154906^01,Field Msr/Obs,WATER,NA,8/15/2012,15:49:00,MDT,8/16/2012,9:12:00,MDT,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,No Fish Orig ID=0815121549 Organization ActivityID=YELL_YSL_128_20120815154906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 21:49,8/16/2012 15:12,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20100917141401^01,Field Msr/Obs,WATER,NA,9/17/2010,14:14:00,MDT,9/18/2010,7:45:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0917101414 Organization ActivityID=YELL_1B_20100917141401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 20:14,9/18/2010 13:45,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20180801102504^01,Field Msr/Obs,WATER,NA,8/1/2018,10:25:00,MDT,8/2/2018,9:33:00,MDT,6.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,2.25 to Shore Orig ID=0801181025 Organization ActivityID=YELL_YSL_025_20180801102504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:25,8/2/2018 15:33,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20180804103001^01,Field Msr/Obs,WATER,NA,8/4/2018,10:30:00,MDT,8/5/2018,8:43:00,MDT,2.03,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Organization ActivityID=YELL_YSL_171_20180804103001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:30,8/5/2018 14:43,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_227_20170807131904^01,Field Msr/Obs,WATER,NA,8/7/2017,13:19:00,MDT,8/8/2017,8:31:00,MDT,8.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_227,Orig ID=0807171319 Organization ActivityID=YELL_YSL_227_20170807131904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:19,8/8/2017 14:31,Yellowstone Lake Shoreline KM 227,Lake,This site is located in the South Arm of Yellowstone Lake along the western shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.295507,-110.34286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20061005164505^01,Field Msr/Obs,WATER,NA,10/5/2006,16:45:00,MDT,10/6/2006,8:45:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=1005061645 Organization ActivityID=YELL_1B_20061005164505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:45,10/6/2006 14:45,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20100913183305^01,Field Msr/Obs,WATER,NA,9/13/2010,18:33:00,MDT,9/14/2010,9:14:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=0913101833 Organization ActivityID=YELL_4B_20100913183305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 0:33,9/14/2010 15:14,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20130803105201^01,Field Msr/Obs,WATER,NA,8/3/2013,10:52:00,MDT,8/4/2013,7:33:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0803131052 Organization ActivityID=YELL_YSL_089_20130803105201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 16:52,8/4/2013 13:33,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202008060949_00^01,Field Msr/Obs,WATER,NA,8/6/2020,9:49:00,MDT,8/7/2020,6:10:00,MDT,2.35,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: Large ETS|2020|14|535293|4922811|535382|4922831 Organization ActivityID=YELL_YSL_023_202008060949_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 15:49,8/7/2020 12:10,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20170803114505^01,Field Msr/Obs,WATER,NA,8/3/2017,11:45:00,MDT,8/4/2017,10:25:00,MDT,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0803171145 Organization ActivityID=YELL_YSL_003_20170803114505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:45,8/4/2017 16:25,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20120918104703^01,Field Msr/Obs,WATER,NA,9/18/2012,10:47:00,MDT,9/19/2012,8:31:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0918121047 Organization ActivityID=YELL_1A_20120918104703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 16:47,9/19/2012 14:31,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20180804095902^01,Field Msr/Obs,WATER,NA,8/4/2018,9:59:00,MDT,8/5/2018,6:41:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Organization ActivityID=YELL_YSL_058_20180804095902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 15:59,8/5/2018 12:41,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20120813154801^01,Field Msr/Obs,WATER,NA,8/13/2012,15:48:00,MDT,8/14/2012,13:40:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Fixed Site Orig ID=0813121548 Organization ActivityID=YELL_YSL_218_20120813154801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 21:48,8/14/2012 19:40,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20130802133506^01,Field Msr/Obs,WATER,NA,8/2/2013,13:35:00,MDT,8/3/2013,8:15:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,no fish Orig ID=0802131335 Organization ActivityID=YELL_YSL_082_20130802133506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 19:35,8/3/2013 14:15,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20190806105202^01,Field Msr/Obs,WATER,NA,8/6/2019,10:52:00,MDT,8/7/2019,8:31:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,large end to shore Organization ActivityID=YELL_YSL_120_20190806105202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 16:52,8/7/2019 14:31,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20170805102402^01,Field Msr/Obs,WATER,NA,8/5/2017,10:24:00,MDT,8/6/2017,7:40:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0805171024 Organization ActivityID=YELL_YSL_168_20170805102402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:24,8/6/2017 13:40,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20120809090801^01,Field Msr/Obs,WATER,NA,8/9/2012,9:08:00,MDT,8/10/2012,8:48:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Logger 26 Orig ID=0809120908 Organization ActivityID=YELL_YSL_080_20120809090801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 15:08,8/10/2012 14:48,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20100917141903^01,Field Msr/Obs,WATER,NA,9/17/2010,14:19:00,MDT,9/18/2010,8:00:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0917101419 Organization ActivityID=YELL_1B_20100917141903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 20:19,9/18/2010 14:00,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20180802114005^01,Field Msr/Obs,WATER,NA,8/2/2018,11:40:00,MDT,8/3/2018,9:20:00,MDT,7.37,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,2.0 to Shore Orig ID=0802181140 Organization ActivityID=YELL_YSL_003_20180802114005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 17:40,8/3/2018 15:20,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20140805123404^01,Field Msr/Obs,WATER,NA,8/5/2014,12:34:00,MDT,8/6/2014,10:00:00,MDT,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Mesh 0.75 towards shore; deep buoy sank Orig ID=0805141240 Organization ActivityID=YELL_YSL_041_20140805123404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:34,8/6/2014 16:00,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20120814104002^01,Field Msr/Obs,WATER,NA,8/14/2012,10:40:00,MDT,8/15/2012,9:32:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0814121040 Organization ActivityID=YELL_YSL_121_20120814104002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 16:40,8/15/2012 15:32,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20170802120602^01,Field Msr/Obs,WATER,NA,8/2/2017,12:06:00,MDT,8/3/2017,8:26:00,MDT,1.66,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0802171206 Organization ActivityID=YELL_YSL_059_20170802120602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:06,8/3/2017 14:26,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20190802121502^01,Field Msr/Obs,WATER,NA,8/2/2019,12:15:00,MDT,8/3/2019,9:45:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Small end to shore Organization ActivityID=YELL_YSL_059_20190802121502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:15,8/3/2019 15:45,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20150807110202^01,Field Msr/Obs,WATER,NA,8/7/2015,11:02:00,MDT,8/8/2015,8:26:00,MDT,3.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0807151102 Organization ActivityID=YELL_YSL_042_20150807110202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 17:02,8/8/2015 14:26,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20170806102406^01,Field Msr/Obs,WATER,NA,8/6/2017,10:24:00,MDT,8/7/2017,10:20:00,MDT,38.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0806171024 Organization ActivityID=YELL_YSL_089_20170806102406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:24,8/7/2017 16:20,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20100914154303^01,Field Msr/Obs,WATER,NA,9/14/2010,15:43:00,MDT,9/15/2010,8:28:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0914101543 Organization ActivityID=YELL_2B_20100914154303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:43,9/15/2010 14:28,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20150804095303^01,Field Msr/Obs,WATER,NA,8/4/2015,9:53:00,MDT,8/5/2015,7:58:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804150953 Organization ActivityID=YELL_YSL_158_20150804095303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 15:53,8/5/2015 13:58,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20120809121302^01,Field Msr/Obs,WATER,NA,8/9/2012,12:13:00,MDT,8/10/2012,11:31:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,logger 23 Orig ID=0809121213 Organization ActivityID=YELL_YSL_089_20120809121302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 18:13,8/10/2012 17:31,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20170804121303^01,Field Msr/Obs,WATER,NA,8/4/2017,12:13:00,MDT,8/5/2017,9:27:00,MDT,8.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804171213 Organization ActivityID=YELL_YSL_158_20170804121303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 18:13,8/5/2017 15:27,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20040913175504^01,Field Msr/Obs,WATER,NA,9/13/2004,17:55:00,MDT,9/14/2004,9:55:00,MDT,0.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=913041755 Organization ActivityID=YELL_2B_20040913175504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2004 23:55,9/14/2004 15:55,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20100916164802^01,Field Msr/Obs,WATER,NA,9/16/2010,16:48:00,MDT,9/17/2010,8:21:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0916101648 Organization ActivityID=YELL_3A_20100916164802,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 22:48,9/17/2010 14:21,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20100917144704^01,Field Msr/Obs,WATER,NA,9/17/2010,14:47:00,MDT,9/18/2010,8:35:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0917101447 Organization ActivityID=YELL_1C_20100917144704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 20:47,9/18/2010 14:35,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202008050935_00^01,Field Msr/Obs,WATER,NA,8/5/2020,9:35:00,MDT,8/6/2020,7:37:00,MDT,2.01,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: Small ETS|2020|23|535421|4915829|535450|4915901 Organization ActivityID=YELL_YSL_012_202008050935_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 15:35,8/6/2020 13:37,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20040913184003^01,Field Msr/Obs,WATER,NA,9/13/2004,18:40:00,MDT,9/14/2004,10:40:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=913041840 Organization ActivityID=YELL_3B_20040913184003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:40,9/14/2004 16:40,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20170801141805^01,Field Msr/Obs,WATER,NA,8/1/2017,14:18:00,MDT,8/2/2017,8:20:00,MDT,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0801171418 Organization ActivityID=YELL_YSL_042_20170801141805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 20:18,8/2/2017 14:20,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_016_20100811163301^01,Field Msr/Obs,WATER,NA,8/11/2010,16:33:00,MDT,8/12/2010,10:12:00,MDT,5.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_016,Orig ID=0811101633 Organization ActivityID=YELL_YSL_016_20100811163301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 22:33,8/12/2010 16:12,Yellowstone Lake Shoreline KM 16,Lake,This station is located in the West Thumb portion of Yellowstone Lake primarily on the western shoreline but in the southwest corner of West Thumb approximately 2km north of the West Thumb geyser basin.,10070001,NA,NA,NA,NA,44.4002273,-110.5615431,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_227_20170807130503^01,Field Msr/Obs,WATER,NA,8/7/2017,13:05:00,MDT,8/8/2017,7:57:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_227,Orig ID=0807171305 Organization ActivityID=YELL_YSL_227_20170807130503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:05,8/8/2017 13:57,Yellowstone Lake Shoreline KM 227,Lake,This site is located in the South Arm of Yellowstone Lake along the western shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.295507,-110.34286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20110809122903^01,Field Msr/Obs,WATER,NA,8/9/2011,12:29:00,MDT,8/10/2011,9:43:00,MDT,22.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0809111229 Organization ActivityID=YELL_YSL_006_20110809122903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:29,8/10/2011 15:43,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20120809093303^01,Field Msr/Obs,WATER,NA,8/9/2012,9:33:00,MDT,8/10/2012,8:20:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,logger 20 out at 819 Orig ID=0809120933 Organization ActivityID=YELL_YSL_080_20120809093303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 15:33,8/10/2012 14:20,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20140802110405^01,Field Msr/Obs,WATER,NA,8/2/2014,11:04:00,MDT,8/3/2014,7:26:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,No Fish Orig ID=0802141104 Organization ActivityID=YELL_YSL_091_20140802110405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:04,8/3/2014 13:26,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202008040923_00^01,Field Msr/Obs,WATER,NA,8/4/2020,9:23:00,MDT,8/5/2020,6:19:00,MDT,8.82,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: Large ETS|4012|20|539569|4920035|539506|4920105 Organization ActivityID=YELL_YSL_003_202008040923_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 15:23,8/5/2020 12:19,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20120815114605^01,Field Msr/Obs,WATER,NA,8/15/2012,11:46:00,MDT,8/16/2012,7:23:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0815121146 Organization ActivityID=YELL_YSL_163_20120815114605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 17:46,8/16/2012 13:23,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_202008010839_00^01,Field Msr/Obs,WATER,NA,8/1/2020,8:39:00,MDT,8/2/2020,7:20:00,MDT,41.74,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,"Activity Net, Buoy, Start/End UTMs: Large ETS|2024|18|553298|4906379|553358|4906402 Organization ActivityID=YELL_YSL_115_202008010839_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 14:39,8/2/2020 13:20,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20120917101304^01,Field Msr/Obs,WATER,NA,9/17/2012,10:13:00,MDT,9/18/2012,9:13:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917121013 Organization ActivityID=YELL_3A_20120917101304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 16:13,9/18/2012 15:13,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20180802112803^01,Field Msr/Obs,WATER,NA,8/2/2018,11:28:00,MDT,8/3/2018,8:56:00,MDT,1.99,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,2.0 to Shore Orig ID=0802181128 Organization ActivityID=YELL_YSL_003_20180802112803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 17:28,8/3/2018 14:56,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20170807123406^01,Field Msr/Obs,WATER,NA,8/7/2017,12:34:00,MDT,8/8/2017,10:20:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,no fish Orig ID=0807171234 Organization ActivityID=YELL_YSL_210_20170807123406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 18:34,8/8/2017 16:20,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20180804103404^01,Field Msr/Obs,WATER,NA,8/4/2018,10:34:00,MDT,8/5/2018,9:03:00,MDT,7.16,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Organization ActivityID=YELL_YSL_171_20180804103404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:34,8/5/2018 15:03,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20170804121003^01,Field Msr/Obs,WATER,NA,8/4/2017,12:10:00,MDT,8/5/2017,9:20:00,MDT,12.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0804171210 Organization ActivityID=YELL_YSL_082_20170804121003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 18:10,8/5/2017 15:20,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20120813144906^01,Field Msr/Obs,WATER,NA,8/13/2012,14:49:00,MDT,8/14/2012,8:34:00,MDT,33.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,No Fish Orig ID=0813121449 Organization ActivityID=YELL_YSL_115_20120813144906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 20:49,8/14/2012 14:34,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20150806102704^01,Field Msr/Obs,WATER,NA,8/6/2015,10:27:00,MDT,8/7/2015,7:58:00,MDT,19.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,No Fish Orig ID=0806151027 Organization ActivityID=YELL_YSL_021_20150806102704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 16:27,8/7/2015 13:58,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20140804121003^01,Field Msr/Obs,WATER,NA,8/4/2014,12:10:00,MDT,8/5/2014,10:50:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804141210 Organization ActivityID=YELL_YSL_158_20140804121003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 18:10,8/5/2014 16:50,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20190801115502^01,Field Msr/Obs,WATER,NA,8/1/2019,11:55:00,MDT,8/2/2019,10:16:00,MDT,2.14,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,small to shore Organization ActivityID=YELL_YSL_027_20190801115502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 17:55,8/2/2019 16:16,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20130802142404^01,Field Msr/Obs,WATER,NA,8/2/2013,14:24:00,MDT,8/3/2013,9:20:00,MDT,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0802131424 Organization ActivityID=YELL_YSL_128_20130802142404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:24,8/3/2013 15:20,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20190801120704^01,Field Msr/Obs,WATER,NA,8/1/2019,12:07:00,MDT,8/2/2019,10:34:00,MDT,28.07,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,large to shore Organization ActivityID=YELL_YSL_027_20190801120704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 18:07,8/2/2019 16:34,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20120814140605^01,Field Msr/Obs,WATER,NA,8/14/2012,14:06:00,MDT,8/15/2012,12:11:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0814121406 Organization ActivityID=YELL_YSL_152_20120814140605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 20:06,8/15/2012 18:11,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20160801091602^01,Field Msr/Obs,WATER,NA,8/1/2016,9:16:00,MDT,8/2/2016,10:10:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801160916 Organization ActivityID=YELL_YSL_209_20160801091602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:16,8/2/2016 16:10,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20170806113302^01,Field Msr/Obs,WATER,NA,8/6/2017,11:33:00,MDT,8/7/2017,11:21:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Orig ID=0806171133 Organization ActivityID=YELL_YSL_120_20170806113302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:33,8/7/2017 17:21,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20170806104304^01,Field Msr/Obs,WATER,NA,8/6/2017,10:43:00,MDT,8/7/2017,9:53:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806171043 Organization ActivityID=YELL_YSL_128_20170806104304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:43,8/7/2017 15:53,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20180807101004^01,Field Msr/Obs,WATER,NA,8/7/2018,10:10:00,MDT,8/8/2018,8:36:00,MDT,10.65,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Organization ActivityID=YELL_YSL_212_20180807101004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 16:10,8/8/2018 14:36,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20190802103101^01,Field Msr/Obs,WATER,NA,8/2/2019,10:31:00,MDT,8/3/2019,7:35:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,small toward shore Organization ActivityID=YELL_YSL_058_20190802103101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 16:31,8/3/2019 13:35,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_202008010821_00^01,Field Msr/Obs,WATER,NA,8/1/2020,8:21:00,MDT,8/2/2020,7:01:00,MDT,8.05,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,"Activity Net, Buoy, Start/End UTMs: Small ETS|2027|23|553111|4906483|553188|4906537 Organization ActivityID=YELL_YSL_115_202008010821_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 14:21,8/2/2020 13:01,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_202108051005_00^01,Field Msr/Obs,WATER,NA,8/5/2021,10:05:00,MDT,8/6/2021,8:07:00,MDT,38.87,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|4017|17|534217|4920065|534286|4920104 Organization ActivityID=YELL_YSL_021_202108051005_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 16:05,8/6/2021 14:07,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20110802123106^01,Field Msr/Obs,WATER,NA,8/2/2011,12:31:00,MDT,8/3/2011,8:00:00,MDT,42,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,"No Fish, Alternate Site Orig ID=0802111231 Organization ActivityID=YELL_YSL_052_20110802123106",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 18:31,8/3/2011 14:00,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_097_20100804161503^01,Field Msr/Obs,WATER,NA,8/4/2010,16:15:00,MDT,8/5/2010,8:42:00,MDT,20.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_097,Orig ID=0804101615 Organization ActivityID=YELL_YSL_097_20100804161503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 22:15,8/5/2010 14:42,Yellowstone Lake Shoreline KM 97,Lake,Station is located in the Southeast Arm of Yellowstone Lake along the west shore and approximately 2 km from the non-motorized zone.,10070001,NA,NA,NA,NA,44.3416933,-110.2771078,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20190807104502^01,Field Msr/Obs,WATER,NA,8/7/2019,10:45:00,MDT,8/8/2019,7:01:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,large end to shore Organization ActivityID=YELL_YSL_175_20190807104502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2019 16:45,8/8/2019 13:01,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20061004172002^01,Field Msr/Obs,WATER,NA,10/4/2006,17:20:00,MDT,10/5/2006,9:20:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=1004061720 Organization ActivityID=YELL_2A_20061004172002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 23:20,10/5/2006 15:20,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20140806115602^01,Field Msr/Obs,WATER,NA,8/6/2014,11:56:00,MDT,8/7/2014,8:06:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Sunk Bouy Orig ID=0806141156 Organization ActivityID=YELL_YSL_144_20140806115602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 17:56,8/7/2014 14:06,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20120809103302^01,Field Msr/Obs,WATER,NA,8/9/2012,10:33:00,MDT,8/10/2012,9:03:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0809121033 Organization ActivityID=YELL_YSL_041_20120809103302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 16:33,8/10/2012 15:03,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20110809120501^01,Field Msr/Obs,WATER,NA,8/9/2011,12:05:00,MDT,8/10/2011,12:06:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Nets were placed between trap nets which could affect catch Orig ID=0809111205 Organization ActivityID=YELL_YSL_163_20110809120501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:05,8/10/2011 18:06,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20140807113202^01,Field Msr/Obs,WATER,NA,8/7/2014,11:32:00,MDT,8/8/2014,9:41:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0807141132 Organization ActivityID=YELL_YSL_153_20140807113202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:32,8/8/2014 15:41,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20190806105803^01,Field Msr/Obs,WATER,NA,8/6/2019,10:58:00,MDT,8/7/2019,8:46:00,MDT,11.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,small end to shore Organization ActivityID=YELL_YSL_120_20190806105803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 16:58,8/7/2019 14:46,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20120806132601^01,Field Msr/Obs,WATER,NA,8/6/2012,13:26:00,MDT,8/7/2012,12:05:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Logger 2 Orig ID=0806121326 Organization ActivityID=YELL_YSL_012_20120806132601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 19:26,8/7/2012 18:05,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20110803130901^01,Field Msr/Obs,WATER,NA,8/3/2011,13:09:00,MDT,8/4/2011,8:56:00,MDT,8.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,One YCT dropped from 1.5 mesh Orig ID=0803111309 Organization ActivityID=YELL_YSL_089_20110803130901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:09,8/4/2011 14:56,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20040914191004^01,Field Msr/Obs,WATER,NA,9/14/2004,19:10:00,MDT,9/15/2004,11:10:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=914041910 Organization ActivityID=YELL_4A_20040914191004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 1:10,9/15/2004 17:10,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20140806132304^01,Field Msr/Obs,WATER,NA,8/6/2014,13:23:00,MDT,8/7/2014,9:09:00,MDT,8.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806141323 Organization ActivityID=YELL_YSL_128_20140806132304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 19:23,8/7/2014 15:09,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20140804114005^01,Field Msr/Obs,WATER,NA,8/4/2014,11:40:00,MDT,8/5/2014,7:55:00,MDT,8.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,corrections fixed in lab by Jake W. Otolith not be trusted. Orig ID=0804141140 Organization ActivityID=YELL_YSL_163_20140804114005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:40,8/5/2014 13:55,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20140801092902^01,Field Msr/Obs,WATER,NA,8/1/2014,9:29:00,MDT,8/2/2014,7:40:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Mesh 2.25 to shore Orig ID=0801140929 Organization ActivityID=YELL_YSL_023_20140801092902,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 15:29,8/2/2014 13:40,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_016_20100811164505^01,Field Msr/Obs,WATER,NA,8/11/2010,16:45:00,MDT,8/12/2010,9:53:00,MDT,42.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_016,Orig ID=0811101645 Organization ActivityID=YELL_YSL_016_20100811164505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 22:45,8/12/2010 15:53,Yellowstone Lake Shoreline KM 16,Lake,This station is located in the West Thumb portion of Yellowstone Lake primarily on the western shoreline but in the southwest corner of West Thumb approximately 2km north of the West Thumb geyser basin.,10070001,NA,NA,NA,NA,44.4002273,-110.5615431,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20170803114005^01,Field Msr/Obs,WATER,NA,8/3/2017,11:40:00,MDT,8/4/2017,8:50:00,MDT,39.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0803171140 Organization ActivityID=YELL_YSL_177_20170803114005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:40,8/4/2017 14:50,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202008031105_00^01,Field Msr/Obs,WATER,NA,8/3/2020,11:05:00,MDT,8/4/2020,8:12:00,MDT,16.86,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: Small ETS|4012|14|543147|4920086|543232|4920130 Organization ActivityID=YELL_YSL_163_202008031105_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 17:05,8/4/2020 14:12,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20190807110305^01,Field Msr/Obs,WATER,NA,8/7/2019,11:03:00,MDT,8/8/2019,8:13:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,small end to shore Organization ActivityID=YELL_YSL_175_20190807110305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2019 17:03,8/8/2019 14:13,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20130803110703^01,Field Msr/Obs,WATER,NA,8/3/2013,11:07:00,MDT,8/4/2013,7:55:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0803131107 Organization ActivityID=YELL_YSL_089_20130803110703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 17:07,8/4/2013 13:55,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20120809112802^01,Field Msr/Obs,WATER,NA,8/9/2012,11:28:00,MDT,8/10/2012,9:51:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0809121128 Organization ActivityID=YELL_YSL_045_20120809112802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 17:28,8/10/2012 15:51,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20120814112005^01,Field Msr/Obs,WATER,NA,8/14/2012,11:20:00,MDT,8/15/2012,8:55:00,MDT,35,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,No Fish Orig ID=0814121120 Organization ActivityID=YELL_YSL_121_20120814112005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 17:20,8/15/2012 14:55,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_202008021151_00^01,Field Msr/Obs,WATER,NA,8/2/2020,11:51:00,MDT,8/3/2020,9:08:00,MDT,41.19,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,"Activity Net, Buoy, Start/End UTMs: Large ETS|2025|15|547556|4918527|547560|4918615 Organization ActivityID=YELL_YSL_153_202008021151_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 17:51,8/3/2020 15:08,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20130802152006^01,Field Msr/Obs,WATER,NA,8/2/2013,15:20:00,MDT,8/3/2013,11:55:00,MDT,28,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,"""net not part of regular site - set in 27m of water"" Orig ID=0802131520 Organization ActivityID=YELL_YSL_144_20130802152006",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 21:20,8/3/2013 17:55,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20190802123706^01,Field Msr/Obs,WATER,NA,8/2/2019,12:37:00,MDT,8/3/2019,10:33:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,large end to shore Organization ActivityID=YELL_YSL_059_20190802123706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:37,8/3/2019 16:33,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20100917165205^01,Field Msr/Obs,WATER,NA,9/17/2010,16:52:00,MDT,9/18/2010,8:45:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0917101652 Organization ActivityID=YELL_1C_20100917165205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 22:52,9/18/2010 14:45,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20190801111906^01,Field Msr/Obs,WATER,NA,8/1/2019,11:19:00,MDT,8/2/2019,10:53:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Large end to shore Organization ActivityID=YELL_YSL_041_20190801111906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 17:19,8/2/2019 16:53,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20190806121205^01,Field Msr/Obs,WATER,NA,8/6/2019,12:12:00,MDT,8/7/2019,10:58:00,MDT,38.27,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,large end to shore Organization ActivityID=YELL_YSL_128_20190806121205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 18:12,8/7/2019 16:58,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20110810143604^01,Field Msr/Obs,WATER,NA,8/10/2011,14:36:00,MDT,8/11/2011,10:02:00,MDT,23.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,No Fish Orig ID=0810111436 Organization ActivityID=YELL_YSL_025_20110810143604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 20:36,8/11/2011 16:02,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20170805112702^01,Field Msr/Obs,WATER,NA,8/5/2017,11:27:00,MDT,8/6/2017,9:13:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,no fish Orig ID=0805171127 Organization ActivityID=YELL_YSL_144_20170805112702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:27,8/6/2017 15:13,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20130801112905^01,Field Msr/Obs,WATER,NA,8/1/2013,11:29:00,MDT,8/2/2013,8:22:00,MDT,37.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0801131129 Organization ActivityID=YELL_YSL_218_20130801112905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.3,15.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 17:29,8/2/2013 14:22,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20120806130705^01,Field Msr/Obs,WATER,NA,8/6/2012,13:07:00,MDT,8/7/2012,7:42:00,MDT,33.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0806121307 Organization ActivityID=YELL_YSL_009_20120806130705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 19:07,8/7/2012 13:42,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20061005164004^01,Field Msr/Obs,WATER,NA,10/5/2006,16:40:00,MDT,10/6/2006,8:40:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=1005061640 Organization ActivityID=YELL_1B_20061005164004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:40,10/6/2006 14:40,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20120809115003^01,Field Msr/Obs,WATER,NA,8/9/2012,11:50:00,MDT,8/10/2012,9:44:00,MDT,19.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0809121150 Organization ActivityID=YELL_YSL_045_20120809115003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 17:50,8/10/2012 15:44,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20061004173505^01,Field Msr/Obs,WATER,NA,10/4/2006,17:35:00,MDT,10/5/2006,9:35:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=1004061735 Organization ActivityID=YELL_2A_20061004173505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.6,9.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 23:35,10/5/2006 15:35,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20110810142503^01,Field Msr/Obs,WATER,NA,8/10/2011,14:25:00,MDT,8/11/2011,10:10:00,MDT,23,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0810111425 Organization ActivityID=YELL_YSL_025_20110810142503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 20:25,8/11/2011 16:10,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20190805113905^01,Field Msr/Obs,WATER,NA,8/5/2019,11:39:00,MDT,8/6/2019,9:27:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,small end to shore Organization ActivityID=YELL_YSL_171_20190805113905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:39,8/6/2019 15:27,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20050920193003^01,Field Msr/Obs,WATER,NA,9/20/2005,19:30:00,MDT,9/21/2005,11:30:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=920051930 Organization ActivityID=YELL_4B_20050920193003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 1:30,9/21/2005 17:30,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_202008050901_00^01,Field Msr/Obs,WATER,NA,8/5/2020,9:01:00,MDT,8/6/2020,6:41:00,MDT,14.31,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,"Activity Net, Buoy, Start/End UTMs: Large ETS|2027|19|537069|4915663|537072|4915762 Organization ActivityID=YELL_YSL_009_202008050901_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 15:01,8/6/2020 12:41,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202108051057_00^01,Field Msr/Obs,WATER,NA,8/5/2021,10:57:00,MDT,8/6/2021,9:29:00,MDT,41.26,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|2024|13|535874|4922591|535943|4922556 Organization ActivityID=YELL_YSL_023_202108051057_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 16:57,8/6/2021 15:29,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20140806121903^01,Field Msr/Obs,WATER,NA,8/6/2014,12:19:00,MDT,8/7/2014,9:42:00,MDT,12.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0806141219 Organization ActivityID=YELL_YSL_052_20140806121903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:19,8/7/2014 15:42,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20140802103101^01,Field Msr/Obs,WATER,NA,8/2/2014,10:31:00,MDT,8/3/2014,8:45:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0802141031 Organization ActivityID=YELL_YSL_091_20140802103101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 16:31,8/3/2014 14:45,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20100914151502^01,Field Msr/Obs,WATER,NA,9/14/2010,15:15:00,MDT,9/15/2010,7:56:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,No Fish Orig ID=0914101515 Organization ActivityID=YELL_2A_20100914151502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:15,9/15/2010 13:56,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20100913174402^01,Field Msr/Obs,WATER,NA,9/13/2010,17:44:00,MDT,9/14/2010,8:16:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0913101744 Organization ActivityID=YELL_4A_20100913174402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 23:44,9/14/2010 14:16,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20040915194005^01,Field Msr/Obs,WATER,NA,9/15/2004,19:40:00,MDT,9/16/2004,11:40:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=915041940 Organization ActivityID=YELL_4B_20040915194005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2004 1:40,9/16/2004 17:40,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20190803115101^01,Field Msr/Obs,WATER,NA,8/3/2019,11:51:00,MDT,8/4/2019,8:55:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,small end to shore Organization ActivityID=YELL_YSL_077_20190803115101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:51,8/4/2019 14:55,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20150804101603^01,Field Msr/Obs,WATER,NA,8/4/2015,10:16:00,MDT,8/5/2015,8:10:00,MDT,9.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804151016 Organization ActivityID=YELL_YSL_168_20150804101603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:16,8/5/2015 14:10,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20180806114206^01,Field Msr/Obs,WATER,NA,8/6/2018,11:42:00,MDT,8/7/2018,9:38:00,MDT,44.44,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Organization ActivityID=YELL_YSL_115_20180806114206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:42,8/7/2018 15:38,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20110803133306^01,Field Msr/Obs,WATER,NA,8/3/2011,13:33:00,MDT,8/4/2011,8:08:00,MDT,42.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,No Fish Orig ID=0803111333 Organization ActivityID=YELL_YSL_089_20110803133306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:33,8/4/2011 14:08,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20180804095401^01,Field Msr/Obs,WATER,NA,8/4/2018,9:54:00,MDT,8/5/2018,7:24:00,MDT,1.58,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Organization ActivityID=YELL_YSL_153_20180804095401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 15:54,8/5/2018 13:24,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_182_20180807110305^01,Field Msr/Obs,WATER,NA,8/7/2018,11:03:00,MDT,8/8/2018,8:17:00,MDT,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_182,Organization ActivityID=YELL_YSL_182_20180807110305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:03,8/8/2018 14:17,Yellowstone Lake Shoreline KM 182,Lake,This site is located in the South East Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.33109,-110.21466,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20120809095306^01,Field Msr/Obs,WATER,NA,8/9/2012,9:53:00,MDT,8/10/2012,8:00:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Logger 16 out at 0803. No Fish Orig ID=0809120953 Organization ActivityID=YELL_YSL_080_20120809095306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 15:53,8/10/2012 14:00,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20180803113304^01,Field Msr/Obs,WATER,NA,8/3/2018,11:33:00,MDT,8/4/2018,8:55:00,MDT,6.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Organization ActivityID=YELL_YSL_065_20180803113304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:33,8/4/2018 14:55,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20110809124104^01,Field Msr/Obs,WATER,NA,8/9/2011,12:41:00,MDT,8/10/2011,11:03:00,MDT,22.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,No Fish Orig ID=0809111241 Organization ActivityID=YELL_YSL_163_20110809124104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:41,8/10/2011 17:03,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20110810111104^01,Field Msr/Obs,WATER,NA,8/10/2011,11:11:00,MDT,8/11/2011,8:47:00,MDT,24.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,No Fish Orig ID=0810111111 Organization ActivityID=YELL_YSL_009_20110810111104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 17:11,8/11/2011 14:47,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20150805155403^01,Field Msr/Obs,WATER,NA,8/5/2015,15:54:00,MDT,8/6/2015,10:24:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0805151554 Organization ActivityID=YELL_YSL_177_20150805155403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 21:54,8/6/2015 16:24,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20050922180005^01,Field Msr/Obs,WATER,NA,9/22/2005,18:00:00,MDT,9/23/2005,10:00:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=922051800 Organization ActivityID=YELL_2B_20050922180005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2005 0:00,9/23/2005 16:00,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20110802153903^01,Field Msr/Obs,WATER,NA,8/2/2011,15:39:00,MDT,8/3/2011,11:05:00,MDT,23.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Primary Site Orig ID=0802111539 Organization ActivityID=YELL_YSL_079_20110802153903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 21:39,8/3/2011 17:05,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20130803104702^01,Field Msr/Obs,WATER,NA,8/3/2013,10:47:00,MDT,8/4/2013,7:49:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0803131047 Organization ActivityID=YELL_YSL_089_20130803104702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 16:47,8/4/2013 13:49,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202108011045_00^01,Field Msr/Obs,WATER,NA,8/1/2021,10:45:00,MDT,8/2/2021,11:05:00,MDT,41.18,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|2025|17|553196|4914341|553294|4914343 Organization ActivityID=YELL_YSL_128_202108011045_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 16:45,8/2/2021 17:05,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20150805131306^01,Field Msr/Obs,WATER,NA,8/5/2015,13:13:00,MDT,8/6/2015,11:25:00,MDT,41.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,No Fish Orig ID=0805151313 Organization ActivityID=YELL_YSL_012_20150805131306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 19:13,8/6/2015 17:25,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202008040929_00^01,Field Msr/Obs,WATER,NA,8/4/2020,9:29:00,MDT,8/5/2020,6:30:00,MDT,7.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: Large ETS|4013|17|539781|4920176|539740|4920270 Organization ActivityID=YELL_YSL_003_202008040929_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 15:29,8/5/2020 12:30,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20130801114306^01,Field Msr/Obs,WATER,NA,8/1/2013,11:43:00,MDT,8/2/2013,9:22:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801131143 Organization ActivityID=YELL_YSL_190_20130801114306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 17:43,8/2/2013 15:22,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20040915164505^01,Field Msr/Obs,WATER,NA,9/15/2004,16:45:00,MDT,9/16/2004,8:45:00,MDT,1.2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=915041645 Organization ActivityID=YELL_1B_20040915164505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:45,9/16/2004 14:45,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20180804100004^01,Field Msr/Obs,WATER,NA,8/4/2018,10:00:00,MDT,8/5/2018,7:42:00,MDT,7.22,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Organization ActivityID=YELL_YSL_153_20180804100004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:00,8/5/2018 13:42,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20120814135904^01,Field Msr/Obs,WATER,NA,8/14/2012,13:59:00,MDT,8/15/2012,12:23:00,MDT,11.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0814121359 Organization ActivityID=YELL_YSL_152_20120814135904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 19:59,8/15/2012 18:23,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202008050941_00^01,Field Msr/Obs,WATER,NA,8/5/2020,9:41:00,MDT,8/6/2020,7:49:00,MDT,2.41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: Small ETS|2021|22|535256|4915954|535280|4916062 Organization ActivityID=YELL_YSL_012_202008050941_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 15:41,8/6/2020 13:49,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20110810113206^01,Field Msr/Obs,WATER,NA,8/10/2011,11:32:00,MDT,8/11/2011,7:49:00,MDT,41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,No Fish Orig ID=0810111132 Organization ActivityID=YELL_YSL_009_20110810113206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 17:32,8/11/2011 13:49,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_202008061115_00^01,Field Msr/Obs,WATER,NA,8/6/2020,11:15:00,MDT,8/7/2020,8:10:00,MDT,44.19,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,"Activity Net, Buoy, Start/End UTMs: Small ETS|2024|23|536387|4923380|536432|4923330 Organization ActivityID=YELL_YSL_025_202008061115_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 17:15,8/7/2020 14:10,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20050919160502^01,Field Msr/Obs,WATER,NA,9/19/2005,16:05:00,MDT,9/20/2005,8:05:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=919051605 Organization ActivityID=YELL_1A_20050919160502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:05,9/20/2005 14:05,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20170802112104^01,Field Msr/Obs,WATER,NA,8/2/2017,11:21:00,MDT,8/3/2017,8:09:00,MDT,17.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,no fish Orig ID=0802171121 Organization ActivityID=YELL_YSL_023_20170802112104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:21,8/3/2017 14:09,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20140803110906^01,Field Msr/Obs,WATER,NA,8/3/2014,11:09:00,MDT,8/4/2014,7:07:00,MDT,35.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,No Fish Orig ID=0803141109 Organization ActivityID=YELL_YSL_080_20140803110906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 17:09,8/4/2014 13:07,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20190804122004^01,Field Msr/Obs,WATER,NA,8/4/2019,12:20:00,MDT,8/5/2019,11:14:00,MDT,12.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,small to shore Organization ActivityID=YELL_YSL_158_20190804122004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 18:20,8/5/2019 17:14,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20140806122603^01,Field Msr/Obs,WATER,NA,8/6/2014,12:26:00,MDT,8/7/2014,7:25:00,MDT,7.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0806141226 Organization ActivityID=YELL_YSL_144_20140806122603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:26,8/7/2014 13:25,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20150806114201^01,Field Msr/Obs,WATER,NA,8/6/2015,11:42:00,MDT,8/7/2015,8:52:00,MDT,3.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0806151142 Organization ActivityID=YELL_YSL_058_20150806114201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:42,8/7/2015 14:52,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_061_20100819174403^01,Field Msr/Obs,WATER,NA,8/19/2010,17:44:00,MDT,8/20/2010,8:42:00,MDT,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_061,No Fish Orig ID=0819101744 Organization ActivityID=YELL_YSL_061_20100819174403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 23:44,8/20/2010 14:42,Yellowstone Lake Shoreline KM 61,Lake,This site is located on the south east corner of the West Thumb area of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.5486839,-110.3367893,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20170806104602^01,Field Msr/Obs,WATER,NA,8/6/2017,10:46:00,MDT,8/7/2017,11:06:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,Orig ID=0806171046 Organization ActivityID=YELL_YSL_101_20170806104602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:46,8/7/2017 17:06,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20180805111901^01,Field Msr/Obs,WATER,NA,8/5/2018,11:19:00,MDT,8/6/2018,9:35:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Organization ActivityID=YELL_YSL_080_20180805111901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:19,8/6/2018 15:35,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20150807111404^01,Field Msr/Obs,WATER,NA,8/7/2015,11:14:00,MDT,8/8/2015,8:44:00,MDT,5.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0807151114 Organization ActivityID=YELL_YSL_042_20150807111404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 17:14,8/8/2015 14:44,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20150806120605^01,Field Msr/Obs,WATER,NA,8/6/2015,12:06:00,MDT,8/7/2015,9:56:00,MDT,43.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0806151206 Organization ActivityID=YELL_YSL_058_20150806120605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 18:06,8/7/2015 15:56,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20180805103002^01,Field Msr/Obs,WATER,NA,8/5/2018,10:30:00,MDT,8/6/2018,8:54:00,MDT,2.51,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Organization ActivityID=YELL_YSL_144_20180805103002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 16:30,8/6/2018 14:54,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20120816112601^01,Field Msr/Obs,WATER,NA,8/16/2012,11:26:00,MDT,8/17/2012,8:22:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0816121126 Organization ActivityID=YELL_YSL_171_20120816112601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2012 17:26,8/17/2012 14:22,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20180801095404^01,Field Msr/Obs,WATER,NA,8/1/2018,9:54:00,MDT,8/2/2018,8:30:00,MDT,5.61,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,2.25 to shore Orig ID=0801180954 Organization ActivityID=YELL_YSL_012_20180801095404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:54,8/2/2018 14:30,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20100805162301^01,Field Msr/Obs,WATER,NA,8/5/2010,16:23:00,MDT,8/6/2010,9:05:00,MDT,4.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0805101623 Organization ActivityID=YELL_YSL_082_20100805162301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 22:23,8/6/2010 15:05,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20140804110206^01,Field Msr/Obs,WATER,NA,8/4/2014,11:02:00,MDT,8/5/2014,8:38:00,MDT,44.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,No Fish Orig ID=0804141102 Organization ActivityID=YELL_YSL_171_20140804110206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:02,8/5/2014 14:38,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20150803111103^01,Field Msr/Obs,WATER,NA,8/3/2015,11:11:00,MDT,8/4/2015,8:38:00,MDT,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0803151111 Organization ActivityID=YELL_YSL_148_20150803111103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 17:11,8/4/2015 14:38,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20180807113704^01,Field Msr/Obs,WATER,NA,8/7/2018,11:37:00,MDT,8/8/2018,9:29:00,MDT,10.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Organization ActivityID=YELL_YSL_210_20180807113704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:37,8/8/2018 15:29,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20120919100401^01,Field Msr/Obs,WATER,NA,9/19/2012,10:04:00,MDT,9/20/2012,7:43:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0919121004 Organization ActivityID=YELL_2B_20120919100401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 16:04,9/20/2012 13:43,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20180806110504^01,Field Msr/Obs,WATER,NA,8/6/2018,11:05:00,MDT,8/7/2018,8:15:00,MDT,12.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Organization ActivityID=YELL_YSL_089_20180806110504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:05,8/7/2018 14:15,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20110803131803^01,Field Msr/Obs,WATER,NA,8/3/2011,13:18:00,MDT,8/4/2011,8:31:00,MDT,23.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0803111318 Organization ActivityID=YELL_YSL_089_20110803131803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:18,8/4/2011 14:31,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20140805122803^01,Field Msr/Obs,WATER,NA,8/5/2014,12:28:00,MDT,8/6/2014,10:36:00,MDT,8.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0805141228 Organization ActivityID=YELL_YSL_041_20140805122803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:28,8/6/2014 16:36,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20190801114505^01,Field Msr/Obs,WATER,NA,8/1/2019,11:45:00,MDT,8/2/2019,10:54:00,MDT,43.64,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,large to shore Organization ActivityID=YELL_YSL_027_20190801114505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 17:45,8/2/2019 16:54,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202008060957_00^01,Field Msr/Obs,WATER,NA,8/6/2020,9:57:00,MDT,8/7/2020,6:20:00,MDT,13.67,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: Small ETS|4012|21|535579|4922825|535668|4922842 Organization ActivityID=YELL_YSL_023_202008060957_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 15:57,8/7/2020 12:20,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20190805103301^01,Field Msr/Obs,WATER,NA,8/5/2019,10:33:00,MDT,8/6/2019,7:25:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,large end to shore Organization ActivityID=YELL_YSL_168_20190805103301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 16:33,8/6/2019 13:25,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20120814123105^01,Field Msr/Obs,WATER,NA,8/14/2012,12:31:00,MDT,8/15/2012,7:50:00,MDT,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0814121231 Organization ActivityID=YELL_YSL_091_20120814123105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 18:31,8/15/2012 13:50,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_202008010923_00^01,Field Msr/Obs,WATER,NA,8/1/2020,9:23:00,MDT,8/2/2020,8:12:00,MDT,2.71,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,"Activity Net, Buoy, Start/End UTMs: Small ETS|2021|13|551357|4909181|551442|4909225 Organization ActivityID=YELL_YSL_121_202008010923_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 15:23,8/2/2020 14:12,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_202008041001_00^01,Field Msr/Obs,WATER,NA,8/4/2020,10:01:00,MDT,8/5/2020,7:32:00,MDT,2.78,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,"Activity Net, Buoy, Start/End UTMs: Large ETS|3001|21|539617|4917279|539527|4917328 Organization ActivityID=YELL_YSL_006_202008041001_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 16:01,8/5/2020 13:32,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20150802120503^01,Field Msr/Obs,WATER,NA,8/2/2015,12:05:00,MDT,8/3/2015,12:41:00,MDT,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Small mesh towards shore. Orig ID=0802151205 Organization ActivityID=YELL_YSL_128_20150802120503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 18:05,8/3/2015 18:41,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20170802121601^01,Field Msr/Obs,WATER,NA,8/2/2017,12:16:00,MDT,8/3/2017,8:34:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0802171216 Organization ActivityID=YELL_YSL_059_20170802121601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:16,8/3/2017 14:34,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20190805130806^01,Field Msr/Obs,WATER,NA,8/5/2019,13:08:00,MDT,8/6/2019,8:50:00,MDT,29.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,small end to shore Organization ActivityID=YELL_YSL_144_20190805130806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 19:08,8/6/2019 14:50,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20130801105401^01,Field Msr/Obs,WATER,NA,8/1/2013,10:54:00,MDT,8/2/2013,8:04:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Logger 13 Orig ID=0801131054 Organization ActivityID=YELL_YSL_190_20130801105401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 16:54,8/2/2013 14:04,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20120815134306^01,Field Msr/Obs,WATER,NA,8/15/2012,13:43:00,MDT,8/16/2012,8:53:00,MDT,38.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0815121343 Organization ActivityID=YELL_YSL_158_20120815134306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 19:43,8/16/2012 14:53,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20061005163503^01,Field Msr/Obs,WATER,NA,10/5/2006,16:35:00,MDT,10/6/2006,8:35:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=1005061635 Organization ActivityID=YELL_1B_20061005163503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:35,10/6/2006 14:35,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20150806112605^01,Field Msr/Obs,WATER,NA,8/6/2015,11:26:00,MDT,8/7/2015,7:02:00,MDT,38.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0806151126 Organization ActivityID=YELL_YSL_059_20150806112605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:26,8/7/2015 13:02,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20140804115506^01,Field Msr/Obs,WATER,NA,8/4/2014,11:55:00,MDT,8/5/2014,10:15:00,MDT,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,No Fish Orig ID=0804141155 Organization ActivityID=YELL_YSL_077_20140804115506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:55,8/5/2014 16:15,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_024_20100810170405^01,Field Msr/Obs,WATER,NA,8/10/2010,17:04:00,MDT,8/11/2010,9:44:00,MDT,44.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_024,Orig ID=0810101704 Organization ActivityID=YELL_YSL_024_20100810170405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 23:04,8/11/2010 15:44,Yellowstone Lake Shoreline KM 24,Lake,Station 24 is located in the West Thumb portion of Yellowstone Lake along the western shoreline near the vicinity of Carrington Island.,10070001,NA,NA,NA,NA,44.4562099,-110.5580606,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20150802120004^01,Field Msr/Obs,WATER,NA,8/2/2015,12:00:00,MDT,8/3/2015,11:06:00,MDT,30.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,"Yellow, green. Steep contour, net set deeper than ideal. No fish. Orig ID=0802151200 Organization ActivityID=YELL_YSL_101_20150802120004",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 18:00,8/3/2015 17:06,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20130802143905^01,Field Msr/Obs,WATER,NA,8/2/2013,14:39:00,MDT,8/3/2013,8:49:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0802131439 Organization ActivityID=YELL_YSL_128_20130802143905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:39,8/3/2013 14:49,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20180806113204^01,Field Msr/Obs,WATER,NA,8/6/2018,11:32:00,MDT,8/7/2018,9:16:00,MDT,9.06,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Organization ActivityID=YELL_YSL_115_20180806113204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:32,8/7/2018 15:16,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20061001170003^01,Field Msr/Obs,WATER,NA,10/1/2006,17:00:00,MDT,10/2/2006,9:00:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=1001061700 Organization ActivityID=YELL_1C_20061001170003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/1/2006 23:00,10/2/2006 15:00,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20110808090406^01,Field Msr/Obs,WATER,NA,8/8/2011,9:04:00,MDT,8/9/2011,7:26:00,MDT,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,No Fish Orig ID=0808110904 Organization ActivityID=YELL_YSL_171_20110808090406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:04,8/9/2011 13:26,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20040914165502^01,Field Msr/Obs,WATER,NA,9/14/2004,16:55:00,MDT,9/15/2004,8:55:00,MDT,1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=914041655 Organization ActivityID=YELL_1C_20040914165502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 22:55,9/15/2004 14:55,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20050919163002^01,Field Msr/Obs,WATER,NA,9/19/2005,16:30:00,MDT,9/20/2005,8:30:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=919051630 Organization ActivityID=YELL_1B_20050919163002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:30,9/20/2005 14:30,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202008061019_00^01,Field Msr/Obs,WATER,NA,8/6/2020,10:19:00,MDT,8/7/2020,6:53:00,MDT,41.13,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: Large ETS|4017|13|536179|4922844|536258|4922843 Organization ActivityID=YELL_YSL_023_202008061019_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 16:19,8/7/2020 12:53,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20120807122003^01,Field Msr/Obs,WATER,NA,8/7/2012,12:20:00,MDT,8/8/2012,9:16:00,MDT,11.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,logger 20 Orig ID=0807121220 Organization ActivityID=YELL_YSL_067_20120807122003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,8/8/2012 15:16,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20130801131006^01,Field Msr/Obs,WATER,NA,8/1/2013,13:10:00,MDT,8/2/2013,10:29:00,MDT,39.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,No Fish Orig ID=0801131310 Organization ActivityID=YELL_YSL_221_20130801131006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,151.6,151.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 19:10,8/2/2013 16:29,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_103_20100805152504^01,Field Msr/Obs,WATER,NA,8/5/2010,15:25:00,MDT,8/6/2010,8:10:00,MDT,19.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_103,No Fish Orig ID=0805101525 Organization ActivityID=YELL_YSL_103_20100805152504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 21:25,8/6/2010 14:10,Yellowstone Lake Shoreline KM 103,Lake,This site is located at the tip of the Promontory between the South and the Southeast arms of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3917251,-110.2833994,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_202008021141_00^01,Field Msr/Obs,WATER,NA,8/2/2020,11:41:00,MDT,8/3/2020,9:00:00,MDT,13.92,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,"Activity Net, Buoy, Start/End UTMs: Large ETS|2027|19|547575|4917857|547589|4917955 Organization ActivityID=YELL_YSL_153_202008021141_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 17:41,8/3/2020 15:00,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_182_20180807110706^01,Field Msr/Obs,WATER,NA,8/7/2018,11:07:00,MDT,8/8/2018,8:05:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_182,Organization ActivityID=YELL_YSL_182_20180807110706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:07,8/8/2018 14:05,Yellowstone Lake Shoreline KM 182,Lake,This site is located in the South East Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.33109,-110.21466,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202108011051_00^01,Field Msr/Obs,WATER,NA,8/1/2021,10:51:00,MDT,8/2/2021,11:18:00,MDT,40.59,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|2024|7|553157|4914055|553226|4914056 Organization ActivityID=YELL_YSL_128_202108011051_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 16:51,8/2/2021 17:18,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20150806103305^01,Field Msr/Obs,WATER,NA,8/6/2015,10:33:00,MDT,8/7/2015,7:33:00,MDT,43.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0806151033 Organization ActivityID=YELL_YSL_021_20150806103305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 16:33,8/7/2015 13:33,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20150802113701^01,Field Msr/Obs,WATER,NA,8/2/2015,11:37:00,MDT,8/3/2015,11:49:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Small mesh towards shore. Orig ID=0802151137 Organization ActivityID=YELL_YSL_128_20150802113701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:37,8/3/2015 17:49,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_036_20100817190804^01,Field Msr/Obs,WATER,NA,8/17/2010,19:08:00,MDT,8/18/2010,8:08:00,MDT,17.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_036,No Fish Caught Orig ID=0817101908 Organization ActivityID=YELL_YSL_036_20100817190804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 1:08,8/18/2010 14:08,Yellowstone Lake Shoreline KM 36,Lake,This site is located in the Breeze Channel portion of Yellowstone Lake in region 2. It is on the north shore of the channel approximately midway between Pumice and Rock points.,10070001,NA,NA,NA,NA,44.4716928,-110.4539624,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_004_20100816161304^01,Field Msr/Obs,WATER,NA,8/16/2010,16:13:00,MDT,8/17/2010,9:43:00,MDT,20.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_004,Orig ID=0816101613 Organization ActivityID=YELL_YSL_004_20100816161304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 22:13,8/17/2010 15:43,Yellowstone Lake Shoreline KM 4,Lake,Station located on the southeast corner of West Thumb of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20050922175003^01,Field Msr/Obs,WATER,NA,9/22/2005,17:50:00,MDT,9/23/2005,9:50:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=922051750 Organization ActivityID=YELL_2B_20050922175003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 23:50,9/23/2005 15:50,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20170806110105^01,Field Msr/Obs,WATER,NA,8/6/2017,11:01:00,MDT,8/7/2017,10:31:00,MDT,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806171101 Organization ActivityID=YELL_YSL_128_20170806110105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:01,8/7/2017 16:31,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20100912170701^01,Field Msr/Obs,WATER,NA,9/12/2010,17:07:00,MDT,9/13/2010,7:30:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0912101707 Organization ActivityID=YELL_6C_20100912170701,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2010 23:07,9/13/2010 13:30,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_154_20100809173604^01,Field Msr/Obs,WATER,NA,8/9/2010,17:36:00,MDT,8/10/2010,8:25:00,MDT,18.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_154,Orig ID=0809101736 Organization ActivityID=YELL_YSL_154_20100809173604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 23:36,8/10/2010 14:25,Yellowstone Lake Shoreline KM 154,Lake,This site is located within the main basin of Yellowstone Lake within region 2. It is located southwest of Frank Island on the western shoreline of the lake.,10070001,NA,NA,NA,NA,44.4068074,-110.4040786,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20100915154902^01,Field Msr/Obs,WATER,NA,9/15/2010,15:49:00,MDT,9/16/2010,8:19:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0915101549 Organization ActivityID=YELL_7C_20100915154902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 21:49,9/16/2010 14:19,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20170806111003^01,Field Msr/Obs,WATER,NA,8/6/2017,11:10:00,MDT,8/7/2017,11:16:00,MDT,8.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,Orig ID=0806171110 Organization ActivityID=YELL_YSL_101_20170806111003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:10,8/7/2017 17:16,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20140804105305^01,Field Msr/Obs,WATER,NA,8/4/2014,10:53:00,MDT,8/5/2014,8:47:00,MDT,42,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804141053 Organization ActivityID=YELL_YSL_171_20140804105305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 16:53,8/5/2014 14:47,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20120919101604^01,Field Msr/Obs,WATER,NA,9/19/2012,10:16:00,MDT,9/20/2012,8:11:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0919121016 Organization ActivityID=YELL_2B_20120919101604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 16:16,9/20/2012 14:11,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20120813141803^01,Field Msr/Obs,WATER,NA,8/13/2012,14:18:00,MDT,8/14/2012,8:03:00,MDT,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0813121418 Organization ActivityID=YELL_YSL_190_20120813141803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 20:18,8/14/2012 14:03,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20120808101301^01,Field Msr/Obs,WATER,NA,8/8/2012,10:13:00,MDT,8/9/2012,8:27:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0808121013 Organization ActivityID=YELL_YSL_077_20120808101301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:13,8/9/2012 14:27,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20100913174903^01,Field Msr/Obs,WATER,NA,9/13/2010,17:49:00,MDT,9/14/2010,8:22:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0913101749 Organization ActivityID=YELL_4A_20100913174903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 23:49,9/14/2010 14:22,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_202008010811_00^01,Field Msr/Obs,WATER,NA,8/1/2020,8:11:00,MDT,8/2/2020,6:29:00,MDT,2.32,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,"Activity Net, Buoy, Start/End UTMs: Small ETS|3024|22|552953|4906378|553043|4906438 Organization ActivityID=YELL_YSL_115_202008010811_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 14:11,8/2/2020 12:29,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20170807131401^01,Field Msr/Obs,WATER,NA,8/7/2017,13:14:00,MDT,8/8/2017,8:28:00,MDT,0.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0807171314 Organization ActivityID=YELL_YSL_190_20170807131401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:14,8/8/2017 14:28,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202108041141_00^01,Field Msr/Obs,WATER,NA,8/4/2021,11:41:00,MDT,8/5/2021,9:03:00,MDT,40.42,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|2025|7|535724|4916414|535781|4916506 Organization ActivityID=YELL_YSL_012_202108041141_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 17:41,8/5/2021 15:03,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20190804110403^01,Field Msr/Obs,WATER,NA,8/4/2019,11:04:00,MDT,8/5/2019,8:52:00,MDT,8.09,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,large to shore Organization ActivityID=YELL_YSL_163_20190804110403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:04,8/5/2019 14:52,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20120813162405^01,Field Msr/Obs,WATER,NA,8/13/2012,16:24:00,MDT,8/14/2012,12:48:00,MDT,30.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0813121624 Organization ActivityID=YELL_YSL_218_20120813162405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 22:24,8/14/2012 18:48,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20140806122706^01,Field Msr/Obs,WATER,NA,8/6/2014,12:27:00,MDT,8/7/2014,9:00:00,MDT,39.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,NO FISH Orig ID=0806141227 Organization ActivityID=YELL_YSL_052_20140806122706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:27,8/7/2014 15:00,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20110801135006^01,Field Msr/Obs,WATER,NA,8/1/2011,13:50:00,MDT,8/2/2011,12:17:00,MDT,41.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Deep water sets are far from shore because of shallow water Orig ID=0801111350 Organization ActivityID=YELL_YSL_065_20110801135006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 19:50,8/2/2011 18:17,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20150808101404^01,Field Msr/Obs,WATER,NA,8/8/2015,10:14:00,MDT,8/9/2015,7:22:00,MDT,8.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808151014 Organization ActivityID=YELL_YSL_175_20150808101404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2015 16:14,8/9/2015 13:22,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20150803142905^01,Field Msr/Obs,WATER,NA,8/3/2015,14:29:00,MDT,8/4/2015,11:41:00,MDT,29.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0803151429 Organization ActivityID=YELL_YSL_144_20150803142905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 20:29,8/4/2015 17:41,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20150805093103^01,Field Msr/Obs,WATER,NA,8/5/2015,9:31:00,MDT,8/6/2015,9:03:00,MDT,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0805150931 Organization ActivityID=YELL_YSL_003_20150805093103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 15:31,8/6/2015 15:03,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20120816113102^01,Field Msr/Obs,WATER,NA,8/16/2012,11:31:00,MDT,8/17/2012,8:05:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0816121131 Organization ActivityID=YELL_YSL_171_20120816113102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2012 17:31,8/17/2012 14:05,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202008061011_00^01,Field Msr/Obs,WATER,NA,8/6/2020,10:11:00,MDT,8/7/2020,6:41:00,MDT,43.63,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: Large ETS|4016|15|535689|4922519|535801|4922504 Organization ActivityID=YELL_YSL_023_202008061011_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 16:11,8/7/2020 12:41,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20180801090901^01,Field Msr/Obs,WATER,NA,8/1/2018,9:09:00,MDT,8/2/2018,7:03:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,2.0 to shore Orig ID=0801180909 Organization ActivityID=YELL_YSL_023_20180801090901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:09,8/2/2018 13:03,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20120814104601^01,Field Msr/Obs,WATER,NA,8/14/2012,10:46:00,MDT,8/15/2012,9:36:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0814121046 Organization ActivityID=YELL_YSL_121_20120814104601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 16:46,8/15/2012 15:36,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20150803141104^01,Field Msr/Obs,WATER,NA,8/3/2015,14:11:00,MDT,8/4/2015,11:07:00,MDT,21.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,2.25 mesh towards shore; No Fish Orig ID=0803151411 Organization ActivityID=YELL_YSL_144_20150803141104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 20:11,8/4/2015 17:07,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_103_20100805155002^01,Field Msr/Obs,WATER,NA,8/5/2010,15:50:00,MDT,8/6/2010,8:22:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_103,Orig ID=0805101550 Organization ActivityID=YELL_YSL_103_20100805155002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 21:50,8/6/2010 14:22,Yellowstone Lake Shoreline KM 103,Lake,This site is located at the tip of the Promontory between the South and the Southeast arms of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3917251,-110.2833994,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20180802104901^01,Field Msr/Obs,WATER,NA,8/2/2018,10:49:00,MDT,8/3/2018,8:59:00,MDT,18.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,3.5 to Shore; No Fish Orig ID=0802181049 Organization ActivityID=YELL_YSL_045_20180802104901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:49,8/3/2018 14:59,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20150802110506^01,Field Msr/Obs,WATER,NA,8/2/2015,11:05:00,MDT,8/3/2015,10:19:00,MDT,43.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Small mesh towards shore. No fish. Orig ID=0802151105 Organization ActivityID=YELL_YSL_120_20150802110506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:05,8/3/2015 16:19,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20110803154706^01,Field Msr/Obs,WATER,NA,8/3/2011,15:47:00,MDT,8/4/2011,13:14:00,MDT,42.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,No Fish Orig ID=0803111547 Organization ActivityID=YELL_YSL_115_20110803154706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 21:47,8/4/2011 19:14,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20150804125506^01,Field Msr/Obs,WATER,NA,8/4/2015,12:55:00,MDT,8/5/2015,10:19:00,MDT,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804151255 Organization ActivityID=YELL_YSL_163_20150804125506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 18:55,8/5/2015 16:19,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20150803112306^01,Field Msr/Obs,WATER,NA,8/3/2015,11:23:00,MDT,8/4/2015,9:05:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,No Fish Orig ID=0803151123 Organization ActivityID=YELL_YSL_148_20150803112306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 17:23,8/4/2015 15:05,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20140803090903^01,Field Msr/Obs,WATER,NA,8/3/2014,9:09:00,MDT,8/4/2014,7:50:00,MDT,8.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Mesh 2.25 inches towards shore Orig ID=0803140909 Organization ActivityID=YELL_YSL_006_20140803090903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 15:09,8/4/2014 13:50,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20150805123502^01,Field Msr/Obs,WATER,NA,8/5/2015,12:35:00,MDT,8/6/2015,12:17:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0805151235 Organization ActivityID=YELL_YSL_012_20150805123502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 18:35,8/6/2015 18:17,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20120815132303^01,Field Msr/Obs,WATER,NA,8/15/2012,13:23:00,MDT,8/16/2012,9:45:00,MDT,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0815121323 Organization ActivityID=YELL_YSL_158_20120815132303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 19:23,8/16/2012 15:45,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20170804125002^01,Field Msr/Obs,WATER,NA,8/4/2017,12:50:00,MDT,8/5/2017,9:30:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0804171250 Organization ActivityID=YELL_YSL_082_20170804125002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 18:50,8/5/2017 15:30,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20110808102505^01,Field Msr/Obs,WATER,NA,8/8/2011,10:25:00,MDT,8/9/2011,10:36:00,MDT,44.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0808111025 Organization ActivityID=YELL_YSL_158_20110808102505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 16:25,8/9/2011 16:36,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20061003193504^01,Field Msr/Obs,WATER,NA,10/3/2006,19:35:00,MDT,10/4/2006,11:35:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=1003061935 Organization ActivityID=YELL_7C_20061003193504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 1:35,10/4/2006 17:35,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20050922181002^01,Field Msr/Obs,WATER,NA,9/22/2005,18:10:00,MDT,9/23/2005,10:10:00,MDT,4.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=922051810 Organization ActivityID=YELL_3A_20050922181002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2005 0:10,9/23/2005 16:10,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20050920192502^01,Field Msr/Obs,WATER,NA,9/20/2005,19:25:00,MDT,9/21/2005,11:25:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=920051925 Organization ActivityID=YELL_4B_20050920192502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 1:25,9/21/2005 17:25,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20100914155405^01,Field Msr/Obs,WATER,NA,9/14/2010,15:54:00,MDT,9/15/2010,8:34:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0914101554 Organization ActivityID=YELL_2B_20100914155405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:54,9/15/2010 14:34,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20110810115503^01,Field Msr/Obs,WATER,NA,8/10/2011,11:55:00,MDT,8/11/2011,10:17:00,MDT,23.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0810111155 Organization ActivityID=YELL_YSL_012_20110810115503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 17:55,8/11/2011 16:17,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20110810131102^01,Field Msr/Obs,WATER,NA,8/10/2011,13:11:00,MDT,8/11/2011,8:31:00,MDT,3.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0810111311 Organization ActivityID=YELL_YSL_023_20110810131102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 19:11,8/11/2011 14:31,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20120813143905^01,Field Msr/Obs,WATER,NA,8/13/2012,14:39:00,MDT,8/14/2012,8:22:00,MDT,42,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0813121439 Organization ActivityID=YELL_YSL_115_20120813143905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 20:39,8/14/2012 14:22,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20130802141901^01,Field Msr/Obs,WATER,NA,8/2/2013,14:19:00,MDT,8/3/2013,9:36:00,MDT,3.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0802131419 Organization ActivityID=YELL_YSL_128_20130802141901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:19,8/3/2013 15:36,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20170802120501^01,Field Msr/Obs,WATER,NA,8/2/2017,12:05:00,MDT,8/3/2017,8:45:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0802171205 Organization ActivityID=YELL_YSL_021_20170802120501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:05,8/3/2017 14:45,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20150808100002^01,Field Msr/Obs,WATER,NA,8/8/2015,10:00:00,MDT,8/9/2015,7:45:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808151000 Organization ActivityID=YELL_YSL_175_20150808100002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2015 16:00,8/9/2015 13:45,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20180802101306^01,Field Msr/Obs,WATER,NA,8/2/2018,10:13:00,MDT,8/3/2018,7:53:00,MDT,42,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,2.0 to Shore Orig ID=0802181013 Organization ActivityID=YELL_YSL_041_20180802101306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:13,8/3/2018 13:53,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20170808120105^01,Field Msr/Obs,WATER,NA,8/8/2017,12:01:00,MDT,8/9/2017,8:15:00,MDT,42.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808171201 Organization ActivityID=YELL_YSL_175_20170808120105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2017 18:01,8/9/2017 14:15,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20040916201001^01,Field Msr/Obs,WATER,NA,9/16/2004,20:10:00,MDT,9/17/2004,12:10:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=916042010 Organization ActivityID=YELL_7C_20040916201001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 2:10,9/17/2004 18:10,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20190801103702^01,Field Msr/Obs,WATER,NA,8/1/2019,10:37:00,MDT,8/2/2019,10:09:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,small end to shore Organization ActivityID=YELL_YSL_041_20190801103702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 16:37,8/2/2019 16:09,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20120813160803^01,Field Msr/Obs,WATER,NA,8/13/2012,16:08:00,MDT,8/14/2012,13:12:00,MDT,11.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0813121608 Organization ActivityID=YELL_YSL_218_20120813160803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 22:08,8/14/2012 19:12,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20061001175003^01,Field Msr/Obs,WATER,NA,10/1/2006,17:50:00,MDT,10/2/2006,9:50:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=1001061750 Organization ActivityID=YELL_2B_20061001175003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/1/2006 23:50,10/2/2006 15:50,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20160801094203^01,Field Msr/Obs,WATER,NA,8/1/2016,9:42:00,MDT,8/2/2016,11:02:00,MDT,7.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801160942 Organization ActivityID=YELL_YSL_209_20160801094203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:42,8/2/2016 17:02,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20140807113403^01,Field Msr/Obs,WATER,NA,8/7/2014,11:34:00,MDT,8/8/2014,10:40:00,MDT,8.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0807141134 Organization ActivityID=YELL_YSL_121_20140807113403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:34,8/8/2014 16:40,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_103_20100805152001^01,Field Msr/Obs,WATER,NA,8/5/2010,15:20:00,MDT,8/6/2010,8:15:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_103,Orig ID=0805101520 Organization ActivityID=YELL_YSL_103_20100805152001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 21:20,8/6/2010 14:15,Yellowstone Lake Shoreline KM 103,Lake,This site is located at the tip of the Promontory between the South and the Southeast arms of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3917251,-110.2833994,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20120808130901^01,Field Msr/Obs,WATER,NA,8/8/2012,13:09:00,MDT,8/9/2012,9:24:00,MDT,3.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0808121309 Organization ActivityID=YELL_YSL_025_20120808130901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 19:09,8/9/2012 15:24,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_202008010801_00^01,Field Msr/Obs,WATER,NA,8/1/2020,8:01:00,MDT,8/2/2020,6:06:00,MDT,2.21,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,"Activity Net, Buoy, Start/End UTMs: Large ETS|3055|24|553086|4906265|553165|4906293 Organization ActivityID=YELL_YSL_115_202008010801_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 14:01,8/2/2020 12:06,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_154_20100809174405^01,Field Msr/Obs,WATER,NA,8/9/2010,17:44:00,MDT,8/10/2010,8:13:00,MDT,41.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_154,Orig ID=0809101744 Organization ActivityID=YELL_YSL_154_20100809174405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 23:44,8/10/2010 14:13,Yellowstone Lake Shoreline KM 154,Lake,This site is located within the main basin of Yellowstone Lake within region 2. It is located southwest of Frank Island on the western shoreline of the lake.,10070001,NA,NA,NA,NA,44.4068074,-110.4040786,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_202108031511_00^01,Field Msr/Obs,WATER,NA,8/3/2021,15:11:00,MDT,8/4/2021,7:43:00,MDT,8.21,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|2027|1|546946|4921687|546946|4921586 Organization ActivityID=YELL_YSL_175_202108031511_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 21:11,8/4/2021 13:43,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20050921202504^01,Field Msr/Obs,WATER,NA,9/21/2005,20:25:00,MDT,9/22/2005,12:25:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=921052025 Organization ActivityID=YELL_7C_20050921202504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 2:25,9/22/2005 18:25,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20100916161803^01,Field Msr/Obs,WATER,NA,9/16/2010,16:18:00,MDT,9/17/2010,7:57:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0916101618 Organization ActivityID=YELL_3B_20100916161803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 22:18,9/17/2010 13:57,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20150807112003^01,Field Msr/Obs,WATER,NA,8/7/2015,11:20:00,MDT,8/8/2015,8:56:00,MDT,6.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0807151120 Organization ActivityID=YELL_YSL_042_20150807112003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 17:20,8/8/2015 14:56,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20130803112306^01,Field Msr/Obs,WATER,NA,8/3/2013,11:23:00,MDT,8/4/2013,8:27:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,no fish Orig ID=0803131123 Organization ActivityID=YELL_YSL_089_20130803112306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 17:23,8/4/2013 14:27,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20170804105102^01,Field Msr/Obs,WATER,NA,8/4/2017,10:51:00,MDT,8/5/2017,7:35:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804171051 Organization ActivityID=YELL_YSL_163_20170804105102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 16:51,8/5/2017 13:35,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20150807093305^01,Field Msr/Obs,WATER,NA,8/7/2015,9:33:00,MDT,8/8/2015,7:34:00,MDT,31.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Orig ID=0807150933 Organization ActivityID=YELL_YSL_027_20150807093305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 15:33,8/8/2015 13:34,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_090_20100804172001^01,Field Msr/Obs,WATER,NA,8/4/2010,17:20:00,MDT,8/5/2010,9:59:00,MDT,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_090,Orig ID=0804101720 Organization ActivityID=YELL_YSL_090_20100804172001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 23:20,8/5/2010 15:59,Yellowstone Lake Shoreline KM 90,Lake,This station is located in the Southeast Arm of Yellowstone Lake along the east shoreline. It is approximately 4 km from the non-motorized zone along the east shore.,10070001,NA,NA,NA,NA,44.3808348,-110.2343213,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20100812163201^01,Field Msr/Obs,WATER,NA,8/12/2010,16:32:00,MDT,8/13/2010,10:00:00,MDT,4.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,one YCT fell from 2 inch mesh. Fish number 6 weight was changed from 1490 to 490 in database. Orig ID=0812101632 Organization ActivityID=YELL_YSL_171_20100812163201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 22:32,8/13/2010 16:00,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20140805133905^01,Field Msr/Obs,WATER,NA,8/5/2014,13:39:00,MDT,8/6/2014,7:20:00,MDT,31.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,NO FISH Orig ID=0805141339 Organization ActivityID=YELL_YSL_045_20140805133905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 19:39,8/6/2014 13:20,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20110810105702^01,Field Msr/Obs,WATER,NA,8/10/2011,10:57:00,MDT,8/11/2011,8:58:00,MDT,7.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0810111057 Organization ActivityID=YELL_YSL_009_20110810105702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.9,12.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 16:57,8/11/2011 14:58,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20100915143803^01,Field Msr/Obs,WATER,NA,9/15/2010,14:38:00,MDT,9/16/2010,9:42:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0915101438 Organization ActivityID=YELL_1A_20100915143803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 20:38,9/16/2010 15:42,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20170808113102^01,Field Msr/Obs,WATER,NA,8/8/2017,11:31:00,MDT,8/9/2017,7:29:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808171131 Organization ActivityID=YELL_YSL_175_20170808113102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2017 17:31,8/9/2017 13:29,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20110802144606^01,Field Msr/Obs,WATER,NA,8/2/2011,14:46:00,MDT,8/3/2011,10:13:00,MDT,44.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,"Fixed Site, No Fish Orig ID=0802111446 Organization ActivityID=YELL_YSL_077_20110802144606",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 20:46,8/3/2011 16:13,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20170803112301^01,Field Msr/Obs,WATER,NA,8/3/2017,11:23:00,MDT,8/4/2017,9:15:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0803171123 Organization ActivityID=YELL_YSL_003_20170803112301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:23,8/4/2017 15:15,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20180802115001^01,Field Msr/Obs,WATER,NA,8/2/2018,11:50:00,MDT,8/3/2018,9:50:00,MDT,40.77,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,0.75 to Shore; No Fish Orig ID=0802181150 Organization ActivityID=YELL_YSL_003_20180802115001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 17:50,8/3/2018 15:50,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20120808114105^01,Field Msr/Obs,WATER,NA,8/8/2012,11:41:00,MDT,8/9/2012,10:00:00,MDT,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0808121141 Organization ActivityID=YELL_YSL_079_20120808114105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 17:41,8/9/2012 16:00,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20150801101803^01,Field Msr/Obs,WATER,NA,8/1/2015,10:18:00,MDT,8/2/2015,8:06:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801151018 Organization ActivityID=YELL_YSL_190_20150801101803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 16:18,8/2/2015 14:06,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20190803105501^01,Field Msr/Obs,WATER,NA,8/3/2019,10:55:00,MDT,8/4/2019,7:01:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,large end to shore Organization ActivityID=YELL_YSL_177_20190803105501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 16:55,8/4/2019 13:01,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20150806114802^01,Field Msr/Obs,WATER,NA,8/6/2015,11:48:00,MDT,8/7/2015,9:10:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0806151148 Organization ActivityID=YELL_YSL_058_20150806114802,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:48,8/7/2015 15:10,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_202008021201_00^01,Field Msr/Obs,WATER,NA,8/2/2020,12:01:00,MDT,8/3/2020,9:18:00,MDT,40.96,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,"Activity Net, Buoy, Start/End UTMs: Large ETS|2024|13|547279|4918340|547288|4918424. End Time of 09:18 is approximate. Organization ActivityID=YELL_YSL_153_202008021201_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 18:01,8/3/2020 15:18,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20110801105302^01,Field Msr/Obs,WATER,NA,8/1/2011,10:53:00,MDT,8/2/2011,14:10:00,MDT,8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0801111053 Organization ActivityID=YELL_YSL_041_20110801105302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 16:53,8/2/2011 20:10,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20050920185501^01,Field Msr/Obs,WATER,NA,9/20/2005,18:55:00,MDT,9/21/2005,10:55:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=920051855 Organization ActivityID=YELL_4A_20050920185501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 0:55,9/21/2005 16:55,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20140807115005^01,Field Msr/Obs,WATER,NA,8/7/2014,11:50:00,MDT,8/8/2014,9:53:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,No bouy on deep end Orig ID=0807141150 Organization ActivityID=YELL_YSL_121_20140807115005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:50,8/8/2014 15:53,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20100810160903^01,Field Msr/Obs,WATER,NA,8/10/2010,16:09:00,MDT,8/11/2010,8:53:00,MDT,17.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0810101609 Organization ActivityID=YELL_YSL_029_20100810160903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 22:09,8/11/2010 14:53,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20050919161003^01,Field Msr/Obs,WATER,NA,9/19/2005,16:10:00,MDT,9/20/2005,8:10:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=919051610 Organization ActivityID=YELL_1A_20050919161003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:10,9/20/2005 14:10,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20190806114402^01,Field Msr/Obs,WATER,NA,8/6/2019,11:44:00,MDT,8/7/2019,10:14:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,large end to shore Organization ActivityID=YELL_YSL_128_20190806114402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 17:44,8/7/2019 16:14,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20190807111106^01,Field Msr/Obs,WATER,NA,8/7/2019,11:11:00,MDT,8/8/2019,7:59:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,large end to shore Organization ActivityID=YELL_YSL_175_20190807111106,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2019 17:11,8/8/2019 13:59,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_018_20100811170503^01,Field Msr/Obs,WATER,NA,8/11/2010,17:05:00,MDT,8/12/2010,9:20:00,MDT,21.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_018,Orig ID=0811101705 Organization ActivityID=YELL_YSL_018_20100811170503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 23:05,8/12/2010 15:20,Yellowstone Lake Shoreline KM 18,Lake,This site is located in the West Thumb portion of Yellowstone Lake. It is on the western shoreline approximately 4 km from the West Thumb Geyser basin.,10070001,NA,NA,NA,NA,44.4151631,-110.5687369,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20180801103702^01,Field Msr/Obs,WATER,NA,8/1/2018,10:37:00,MDT,8/2/2018,8:53:00,MDT,46.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,2.25 to shore; No Fish Orig ID=0801181037 Organization ActivityID=YELL_YSL_025_20180801103702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:37,8/2/2018 14:53,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20190805113103^01,Field Msr/Obs,WATER,NA,8/5/2019,11:31:00,MDT,8/6/2019,9:25:00,MDT,46,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,large end to shore Organization ActivityID=YELL_YSL_101_20190805113103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:31,8/6/2019 15:25,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20170804121206^01,Field Msr/Obs,WATER,NA,8/4/2017,12:12:00,MDT,8/5/2017,9:54:00,MDT,43.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,no fish Orig ID=0804171212 Organization ActivityID=YELL_YSL_082_20170804121206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 18:12,8/5/2017 15:54,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20100917141602^01,Field Msr/Obs,WATER,NA,9/17/2010,14:16:00,MDT,9/18/2010,7:52:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0917101416 Organization ActivityID=YELL_1B_20100917141602,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 20:16,9/18/2010 13:52,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20190802130004^01,Field Msr/Obs,WATER,NA,8/2/2019,13:00:00,MDT,8/3/2019,10:08:00,MDT,13.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,small to shore Organization ActivityID=YELL_YSL_021_20190802130004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 19:00,8/3/2019 16:08,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20120806100303^01,Field Msr/Obs,WATER,NA,8/6/2012,10:03:00,MDT,8/7/2012,7:58:00,MDT,11.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Logger Out Orig ID=0806121003 Organization ActivityID=YELL_YSL_052_20120806100303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 16:03,8/7/2012 13:58,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202108031451_00^01,Field Msr/Obs,WATER,NA,8/3/2021,14:51:00,MDT,8/4/2021,9:39:00,MDT,39.62,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|4016|15|544518|4920536|544613|4920529 Organization ActivityID=YELL_YSL_163_202108031451_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 20:51,8/4/2021 15:39,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20170802124006^01,Field Msr/Obs,WATER,NA,8/2/2017,12:40:00,MDT,8/3/2017,9:30:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,no fish Orig ID=0802171240 Organization ActivityID=YELL_YSL_059_20170802124006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:40,8/3/2017 15:30,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20120807130804^01,Field Msr/Obs,WATER,NA,8/7/2012,13:08:00,MDT,8/8/2012,8:18:00,MDT,11.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,logger 22 Orig ID=0807121308 Organization ActivityID=YELL_YSL_065_20120807130804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 19:08,8/8/2012 14:18,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20100915143201^01,Field Msr/Obs,WATER,NA,9/15/2010,14:32:00,MDT,9/16/2010,9:30:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Dropped 1 YCT from 1.50 inch mesh Orig ID=915101432 Organization ActivityID=YELL_1A_20100915143201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 20:32,9/16/2010 15:30,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20150805094104^01,Field Msr/Obs,WATER,NA,8/5/2015,9:41:00,MDT,8/6/2015,8:43:00,MDT,11.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,No Fish Orig ID=0805150941 Organization ActivityID=YELL_YSL_003_20150805094104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 15:41,8/6/2015 14:43,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20100914153301^01,Field Msr/Obs,WATER,NA,9/14/2010,15:33:00,MDT,9/15/2010,8:21:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0914101533 Organization ActivityID=YELL_2B_20100914153301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:33,9/15/2010 14:21,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20140805121805^01,Field Msr/Obs,WATER,NA,8/5/2014,12:18:00,MDT,8/6/2014,7:49:00,MDT,39.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805141218 Organization ActivityID=YELL_YSL_067_20140805121805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:18,8/6/2014 13:49,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_202008010947_00^01,Field Msr/Obs,WATER,NA,8/1/2020,9:47:00,MDT,8/2/2020,9:26:00,MDT,36.89,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,"Activity Net, Buoy, Start/End UTMs: Large ETS|4017|19|552275|4909462|552337|4909496 Organization ActivityID=YELL_YSL_121_202008010947_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 15:47,8/2/2020 15:26,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20150803130406^01,Field Msr/Obs,WATER,NA,8/3/2015,13:04:00,MDT,8/4/2015,8:34:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,No fish. Orig ID=0803151304 Organization ActivityID=YELL_YSL_080_20150803130406,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 19:04,8/4/2015 14:34,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20061002183502^01,Field Msr/Obs,WATER,NA,10/2/2006,18:35:00,MDT,10/3/2006,10:35:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=1002061835 Organization ActivityID=YELL_4A_20061002183502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.8,8.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 0:35,10/3/2006 16:35,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20120808110902^01,Field Msr/Obs,WATER,NA,8/8/2012,11:09:00,MDT,8/9/2012,11:12:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0808121109 Organization ActivityID=YELL_YSL_079_20120808110902,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 17:09,8/9/2012 17:12,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20140803093706^01,Field Msr/Obs,WATER,NA,8/3/2014,9:37:00,MDT,8/4/2014,7:12:00,MDT,41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,No Fish; Large mesh towards shore Orig ID=0803140937 Organization ActivityID=YELL_YSL_006_20140803093706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.3,15.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 15:37,8/4/2014 13:12,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20100912171704^01,Field Msr/Obs,WATER,NA,9/12/2010,17:17:00,MDT,9/13/2010,8:05:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0912101717 Organization ActivityID=YELL_6C_20100912171704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2010 23:17,9/13/2010 14:05,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20180806112706^01,Field Msr/Obs,WATER,NA,8/6/2018,11:27:00,MDT,8/7/2018,8:23:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Organization ActivityID=YELL_YSL_089_20180806112706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:27,8/7/2018 14:23,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20140802112306^01,Field Msr/Obs,WATER,NA,8/2/2014,11:23:00,MDT,8/3/2014,7:14:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Mesh 0.75 to shore Orig ID=0802141123 Organization ActivityID=YELL_YSL_012_20140802112306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:23,8/3/2014 13:14,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202108051031_00^01,Field Msr/Obs,WATER,NA,8/5/2021,10:31:00,MDT,8/6/2021,8:59:00,MDT,11.62,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|2027|5|535565|4922762|535660|4922736 Organization ActivityID=YELL_YSL_023_202108051031_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 16:31,8/6/2021 14:59,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20140803113803^01,Field Msr/Obs,WATER,NA,8/3/2014,11:38:00,MDT,8/4/2014,9:15:00,MDT,8.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0803141138 Organization ActivityID=YELL_YSL_079_20140803113803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 17:38,8/4/2014 15:15,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20050922173004^01,Field Msr/Obs,WATER,NA,9/22/2005,17:30:00,MDT,9/23/2005,9:30:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=922051730 Organization ActivityID=YELL_2A_20050922173004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 23:30,9/23/2005 15:30,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20150805125704^01,Field Msr/Obs,WATER,NA,8/5/2015,12:57:00,MDT,8/6/2015,11:45:00,MDT,11.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0805151257 Organization ActivityID=YELL_YSL_012_20150805125704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 18:57,8/6/2015 17:45,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20110809124906^01,Field Msr/Obs,WATER,NA,8/9/2011,12:49:00,MDT,8/10/2011,9:12:00,MDT,42.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,No Fish Orig ID=0809111249 Organization ActivityID=YELL_YSL_006_20110809124906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.8,12.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:49,8/10/2011 15:12,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20190804105601^01,Field Msr/Obs,WATER,NA,8/4/2019,10:56:00,MDT,8/5/2019,8:34:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,large to shore Organization ActivityID=YELL_YSL_163_20190804105601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 16:56,8/5/2019 14:34,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20040913183001^01,Field Msr/Obs,WATER,NA,9/13/2004,18:30:00,MDT,9/14/2004,10:30:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=913041830 Organization ActivityID=YELL_3B_20040913183001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:30,9/14/2004 16:30,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20110808094701^01,Field Msr/Obs,WATER,NA,8/8/2011,9:47:00,MDT,8/9/2011,11:30:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0808110947 Organization ActivityID=YELL_YSL_158_20110808094701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:47,8/9/2011 17:30,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202008051009_00^01,Field Msr/Obs,WATER,NA,8/5/2020,10:09:00,MDT,8/6/2020,9:20:00,MDT,39.15,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: Large ETS|4016|18|535560|4916458|535569|4916555 Organization ActivityID=YELL_YSL_012_202008051009_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 16:09,8/6/2020 15:20,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_061_20100819180805^01,Field Msr/Obs,WATER,NA,8/19/2010,18:08:00,MDT,8/20/2010,9:12:00,MDT,8.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_061,1 YCT dropped from 1.5 mesh; 1 LNS dropped from 1.25 mesh; 1 LNS dropped from 1.oo mesh Orig ID=0819101808 Organization ActivityID=YELL_YSL_061_20100819180805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/20/2010 0:08,8/20/2010 15:12,Yellowstone Lake Shoreline KM 61,Lake,This site is located on the south east corner of the West Thumb area of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.5486839,-110.3367893,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20050921195503^01,Field Msr/Obs,WATER,NA,9/21/2005,19:55:00,MDT,9/22/2005,11:55:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=921051955 Organization ActivityID=YELL_6C_20050921195503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 1:55,9/22/2005 17:55,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20110915182103^01,Field Msr/Obs,WATER,NA,9/15/2011,18:21:00,MDT,9/16/2011,12:15:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915111821 Organization ActivityID=YELL_1A_20110915182103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2011 0:21,9/16/2011 18:15,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20180803112903^01,Field Msr/Obs,WATER,NA,8/3/2018,11:29:00,MDT,8/4/2018,9:21:00,MDT,8.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Organization ActivityID=YELL_YSL_065_20180803112903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 17:29,8/4/2018 15:21,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20170804115702^01,Field Msr/Obs,WATER,NA,8/4/2017,11:57:00,MDT,8/5/2017,9:05:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804171157 Organization ActivityID=YELL_YSL_158_20170804115702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 17:57,8/5/2017 15:05,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20120808130202^01,Field Msr/Obs,WATER,NA,8/8/2012,13:02:00,MDT,8/9/2012,9:19:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0808121302 Organization ActivityID=YELL_YSL_025_20120808130202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 19:02,8/9/2012 15:19,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_018_20100811172605^01,Field Msr/Obs,WATER,NA,8/11/2010,17:26:00,MDT,8/12/2010,8:39:00,MDT,49.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_018,Orig ID=0811101726 Organization ActivityID=YELL_YSL_018_20100811172605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 23:26,8/12/2010 14:39,Yellowstone Lake Shoreline KM 18,Lake,This site is located in the West Thumb portion of Yellowstone Lake. It is on the western shoreline approximately 4 km from the West Thumb Geyser basin.,10070001,NA,NA,NA,NA,44.4151631,-110.5687369,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20061004181002^01,Field Msr/Obs,WATER,NA,10/4/2006,18:10:00,MDT,10/5/2006,10:10:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=1004061810 Organization ActivityID=YELL_3B_20061004181002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 0:10,10/5/2006 16:10,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20110808090203^01,Field Msr/Obs,WATER,NA,8/8/2011,9:02:00,MDT,8/9/2011,7:42:00,MDT,22,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0808110902 Organization ActivityID=YELL_YSL_152_20110808090203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:02,8/9/2011 13:42,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_109_20100803180002^01,Field Msr/Obs,WATER,NA,8/3/2010,18:00:00,MDT,8/4/2010,8:50:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_109,Orig ID=0803101800 Organization ActivityID=YELL_YSL_109_20100803180002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 0:00,8/4/2010 14:50,Yellowstone Lake Shoreline KM 109,Lake,This station is located in the South Arm of Yellowstone lake along the east shoreline approximately midway from the lake main basin to the non-motorized zone.,10070001,NA,NA,NA,NA,44.3582804,-110.3195038,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20170806114704^01,Field Msr/Obs,WATER,NA,8/6/2017,11:47:00,MDT,8/7/2017,11:33:00,MDT,8.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Orig ID=0806171147 Organization ActivityID=YELL_YSL_120_20170806114704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:47,8/7/2017 17:33,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20120814121701^01,Field Msr/Obs,WATER,NA,8/14/2012,12:17:00,MDT,8/15/2012,9:23:00,MDT,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0814121217 Organization ActivityID=YELL_YSL_091_20120814121701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 18:17,8/15/2012 15:23,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20110802113605^01,Field Msr/Obs,WATER,NA,8/2/2011,11:36:00,MDT,8/3/2011,8:00:00,MDT,48.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,No Fish Orig ID=0802111136 Organization ActivityID=YELL_YSL_067_20110802113605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 17:36,8/3/2011 14:00,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20140806113603^01,Field Msr/Obs,WATER,NA,8/6/2014,11:36:00,MDT,8/7/2014,7:25:00,MDT,9.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0806141136 Organization ActivityID=YELL_YSL_058_20140806113603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 17:36,8/7/2014 13:25,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20150804124905^01,Field Msr/Obs,WATER,NA,8/4/2015,12:49:00,MDT,8/5/2015,10:29:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,No Fish Orig ID=0804151249 Organization ActivityID=YELL_YSL_163_20150804124905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 18:49,8/5/2015 16:29,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20110801102004^01,Field Msr/Obs,WATER,NA,8/1/2011,10:20:00,MDT,8/2/2011,9:25:00,MDT,25.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,No Fish Orig ID=0801111020 Organization ActivityID=YELL_YSL_045_20110801102004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 16:20,8/2/2011 15:25,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20120813161906^01,Field Msr/Obs,WATER,NA,8/13/2012,16:19:00,MDT,8/14/2012,12:33:00,MDT,34.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0813121619 Organization ActivityID=YELL_YSL_218_20120813161906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 22:19,8/14/2012 18:33,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20110810112305^01,Field Msr/Obs,WATER,NA,8/10/2011,11:23:00,MDT,8/11/2011,8:18:00,MDT,41.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0810111123 Organization ActivityID=YELL_YSL_009_20110810112305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.6,12.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 17:23,8/11/2011 14:18,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20120815152704^01,Field Msr/Obs,WATER,NA,8/15/2012,15:27:00,MDT,8/16/2012,9:58:00,MDT,12,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0815121527 Organization ActivityID=YELL_YSL_128_20120815152704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 21:27,8/16/2012 15:58,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20110809124405^01,Field Msr/Obs,WATER,NA,8/9/2011,12:44:00,MDT,8/10/2011,9:28:00,MDT,41.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0809111244 Organization ActivityID=YELL_YSL_006_20110809124405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.9,12.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:44,8/10/2011 15:28,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20120807133806^01,Field Msr/Obs,WATER,NA,8/7/2012,13:38:00,MDT,8/8/2012,8:00:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,logger 25. No Fish Orig ID=0807121338 Organization ActivityID=YELL_YSL_065_20120807133806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 19:38,8/8/2012 14:00,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20110808094402^01,Field Msr/Obs,WATER,NA,8/8/2011,9:44:00,MDT,8/9/2011,9:58:00,MDT,14,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0808110944 Organization ActivityID=YELL_YSL_128_20110808094402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.9,12.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:44,8/9/2011 15:58,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20120815133104^01,Field Msr/Obs,WATER,NA,8/15/2012,13:31:00,MDT,8/16/2012,9:18:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0815121331 Organization ActivityID=YELL_YSL_158_20120815133104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 19:31,8/16/2012 15:18,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20130802131703^01,Field Msr/Obs,WATER,NA,8/2/2013,13:17:00,MDT,8/3/2013,7:57:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0802131317 Organization ActivityID=YELL_YSL_082_20130802131703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 19:17,8/3/2013 13:57,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20140805124403^01,Field Msr/Obs,WATER,NA,8/5/2014,12:44:00,MDT,8/6/2014,9:59:00,MDT,9.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805141244 Organization ActivityID=YELL_YSL_065_20140805124403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:44,8/6/2014 15:59,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20170806101605^01,Field Msr/Obs,WATER,NA,8/6/2017,10:16:00,MDT,8/7/2017,10:10:00,MDT,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0806171016 Organization ActivityID=YELL_YSL_089_20170806101605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:16,8/7/2017 16:10,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20050920190002^01,Field Msr/Obs,WATER,NA,9/20/2005,19:00:00,MDT,9/21/2005,11:00:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=920051900 Organization ActivityID=YELL_4A_20050920190002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 1:00,9/21/2005 17:00,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20120813140401^01,Field Msr/Obs,WATER,NA,8/13/2012,14:04:00,MDT,8/14/2012,8:50:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0813121404 Organization ActivityID=YELL_YSL_190_20120813140401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 20:04,8/14/2012 14:50,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20150803130003^01,Field Msr/Obs,WATER,NA,8/3/2015,13:00:00,MDT,8/4/2015,9:08:00,MDT,9.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803151300 Organization ActivityID=YELL_YSL_080_20150803130003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 19:00,8/4/2015 15:08,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202008031059_00^01,Field Msr/Obs,WATER,NA,8/3/2020,10:59:00,MDT,8/4/2020,7:58:00,MDT,13.21,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: Small ETS|4013|19|543226|4920350|543332|4920388 Organization ActivityID=YELL_YSL_163_202008031059_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 16:59,8/4/2020 13:58,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20140802120904^01,Field Msr/Obs,WATER,NA,8/2/2014,12:09:00,MDT,8/3/2014,10:12:00,MDT,8.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Mesh 2.0 inches towards shore Orig ID=0802141209 Organization ActivityID=YELL_YSL_009_20140802120904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 18:09,8/3/2014 16:12,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20120813141702^01,Field Msr/Obs,WATER,NA,8/13/2012,14:17:00,MDT,8/14/2012,9:59:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0813121417 Organization ActivityID=YELL_YSL_115_20120813141702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 20:17,8/14/2012 15:59,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20130801113906^01,Field Msr/Obs,WATER,NA,8/1/2013,11:39:00,MDT,8/2/2013,8:11:00,MDT,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,No Fish Orig ID=0801131139 Organization ActivityID=YELL_YSL_218_20130801113906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 17:39,8/2/2013 14:11,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20140805130702^01,Field Msr/Obs,WATER,NA,8/5/2014,13:07:00,MDT,8/6/2014,8:04:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Large Hole in mesh 2.25 Orig ID=0805141307 Organization ActivityID=YELL_YSL_045_20140805130702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 19:07,8/6/2014 14:04,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20061005161504^01,Field Msr/Obs,WATER,NA,10/5/2006,16:15:00,MDT,10/6/2006,8:15:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=1005061615 Organization ActivityID=YELL_1A_20061005161504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:15,10/6/2006 14:15,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20110802143803^01,Field Msr/Obs,WATER,NA,8/2/2011,14:38:00,MDT,8/3/2011,10:46:00,MDT,26.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0802111438 Organization ActivityID=YELL_YSL_077_20110802143803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 20:38,8/3/2011 16:46,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20110801095506^01,Field Msr/Obs,WATER,NA,8/1/2011,9:55:00,MDT,8/2/2011,9:36:00,MDT,41.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Primary; net set was skewed towards site 44 east; No Fish Orig ID=0801110955 Organization ActivityID=YELL_YSL_045_20110801095506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 15:55,8/2/2011 15:36,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20180805104604^01,Field Msr/Obs,WATER,NA,8/5/2018,10:46:00,MDT,8/6/2018,9:14:00,MDT,28.66,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Organization ActivityID=YELL_YSL_144_20180805104604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 16:46,8/6/2018 15:14,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20150801121605^01,Field Msr/Obs,WATER,NA,8/1/2015,12:16:00,MDT,8/2/2015,9:16:00,MDT,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,"Yellow, orange Orig ID=0801151216 Organization ActivityID=YELL_YSL_209_20150801121605",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 18:16,8/2/2015 15:16,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20120808105105^01,Field Msr/Obs,WATER,NA,8/8/2012,10:51:00,MDT,8/9/2012,7:16:00,MDT,41.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0808121051 Organization ActivityID=YELL_YSL_077_20120808105105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:51,8/9/2012 13:16,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20150805155806^01,Field Msr/Obs,WATER,NA,8/5/2015,15:58:00,MDT,8/6/2015,9:34:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0805151558 Organization ActivityID=YELL_YSL_177_20150805155806,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 21:58,8/6/2015 15:34,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20170801140803^01,Field Msr/Obs,WATER,NA,8/1/2017,14:08:00,MDT,8/2/2017,7:58:00,MDT,8.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0801171408 Organization ActivityID=YELL_YSL_042_20170801140803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 20:08,8/2/2017 13:58,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20140802111601^01,Field Msr/Obs,WATER,NA,8/2/2014,11:16:00,MDT,8/3/2014,9:54:00,MDT,3.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802141116 Organization ActivityID=YELL_YSL_089_20140802111601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:16,8/3/2014 15:54,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202008031023_00^01,Field Msr/Obs,WATER,NA,8/3/2020,10:23:00,MDT,8/4/2020,7:06:00,MDT,38.21,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: Large ETS|2025|20|546552|4919628|546642|4919655 Organization ActivityID=YELL_YSL_158_202008031023_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 16:23,8/4/2020 13:06,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20120814110303^01,Field Msr/Obs,WATER,NA,8/14/2012,11:03:00,MDT,8/15/2012,9:13:00,MDT,15.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0814121103 Organization ActivityID=YELL_YSL_121_20120814110303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 17:03,8/15/2012 15:13,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20120918134405^01,Field Msr/Obs,WATER,NA,9/18/2012,13:44:00,MDT,9/19/2012,8:34:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0918121344 Organization ActivityID=YELL_1C_20120918134405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 19:44,9/19/2012 14:34,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20110809113203^01,Field Msr/Obs,WATER,NA,8/9/2011,11:32:00,MDT,8/10/2011,7:53:00,MDT,23.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,No Fish Orig ID=0809111132 Organization ActivityID=YELL_YSL_003_20110809113203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 17:32,8/10/2011 13:53,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20130801123803^01,Field Msr/Obs,WATER,NA,8/1/2013,12:38:00,MDT,8/2/2013,10:18:00,MDT,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801131238 Organization ActivityID=YELL_YSL_209_20130801123803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 18:38,8/2/2013 16:18,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20190804115001^01,Field Msr/Obs,WATER,NA,8/4/2019,11:50:00,MDT,8/5/2019,10:16:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,large to shore Organization ActivityID=YELL_YSL_158_20190804115001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:50,8/5/2019 16:16,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20100812161503^01,Field Msr/Obs,WATER,NA,8/12/2010,16:15:00,MDT,8/13/2010,10:13:00,MDT,18.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0812101615 Organization ActivityID=YELL_YSL_171_20100812161503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 22:15,8/13/2010 16:13,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20150801114604^01,Field Msr/Obs,WATER,NA,8/1/2015,11:46:00,MDT,8/2/2015,9:34:00,MDT,7.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,"Yellow, green Orig ID=0801151146 Organization ActivityID=YELL_YSL_209_20150801114604",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:46,8/2/2015 15:34,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20130804131107^01,Field Msr/Obs,WATER,NA,8/4/2013,13:11:00,MDT,8/5/2013,9:18:00,MDT,21,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Large Mesh towards Shore; logger at 38.2 meters Orig ID=0804131311 Organization ActivityID=YELL_YSL_171_20130804131107,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 19:11,8/5/2013 15:18,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20140804113704^01,Field Msr/Obs,WATER,NA,8/4/2014,11:37:00,MDT,8/5/2014,10:51:00,MDT,9.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0804141137 Organization ActivityID=YELL_YSL_077_20140804113704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:37,8/5/2014 16:51,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20110803123406^01,Field Msr/Obs,WATER,NA,8/3/2011,12:34:00,MDT,8/4/2011,9:52:00,MDT,41.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Fixed Site - No Fish Orig ID=0803111234 Organization ActivityID=YELL_YSL_080_20110803123406,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 18:34,8/4/2011 15:52,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20110810142002^01,Field Msr/Obs,WATER,NA,8/10/2011,14:20:00,MDT,8/11/2011,10:23:00,MDT,3.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0810111420 Organization ActivityID=YELL_YSL_025_20110810142002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 20:20,8/11/2011 16:23,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20150807115301^01,Field Msr/Obs,WATER,NA,8/7/2015,11:53:00,MDT,8/8/2015,9:32:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807151153 Organization ActivityID=YELL_YSL_029_20150807115301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.4,14.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 17:53,8/8/2015 15:32,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20120816113804^01,Field Msr/Obs,WATER,NA,8/16/2012,11:38:00,MDT,8/17/2012,7:51:00,MDT,11.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0816121138 Organization ActivityID=YELL_YSL_171_20120816113804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2012 17:38,8/17/2012 13:51,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20100802175501^01,Field Msr/Obs,WATER,NA,8/2/2010,17:55:00,MDT,8/3/2010,10:21:00,MDT,4.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0802101755 Organization ActivityID=YELL_YSL_052_20100802175501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2010 23:55,8/3/2010 16:21,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20190803110102^01,Field Msr/Obs,WATER,NA,8/3/2019,11:01:00,MDT,8/4/2019,7:23:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,small end to shore Organization ActivityID=YELL_YSL_177_20190803110102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:01,8/4/2019 13:23,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20120806135503^01,Field Msr/Obs,WATER,NA,8/6/2012,13:55:00,MDT,8/7/2012,11:25:00,MDT,13.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Logger 3 Orig ID=0806121345 Organization ActivityID=YELL_YSL_012_20120806135503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 19:55,8/7/2012 17:25,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20150807091702^01,Field Msr/Obs,WATER,NA,8/7/2015,9:17:00,MDT,8/8/2015,7:53:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Orig ID=0807150917 Organization ActivityID=YELL_YSL_027_20150807091702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 15:17,8/8/2015 13:53,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20140801094303^01,Field Msr/Obs,WATER,NA,8/1/2014,9:43:00,MDT,8/2/2014,9:32:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801140943 Organization ActivityID=YELL_YSL_209_20140801094303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 15:43,8/2/2014 15:32,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20150801103805^01,Field Msr/Obs,WATER,NA,8/1/2015,10:38:00,MDT,8/2/2015,7:42:00,MDT,41.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801151038 Organization ActivityID=YELL_YSL_190_20150801103805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 16:38,8/2/2015 13:42,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_202008041037_00^01,Field Msr/Obs,WATER,NA,8/4/2020,10:37:00,MDT,8/5/2020,8:30:00,MDT,41.31,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,"Activity Net, Buoy, Start/End UTMs: Large ETS|2024|13|537827|4917924|537782|4917973 Organization ActivityID=YELL_YSL_006_202008041037_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 16:37,8/5/2020 14:30,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20040914171005^01,Field Msr/Obs,WATER,NA,9/14/2004,17:10:00,MDT,9/15/2004,9:10:00,MDT,0.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=914041710 Organization ActivityID=YELL_1C_20040914171005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 23:10,9/15/2004 15:10,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20180802100104^01,Field Msr/Obs,WATER,NA,8/2/2018,10:01:00,MDT,8/3/2018,7:27:00,MDT,11.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,2.0 to Shore Orig ID=0802181001 Organization ActivityID=YELL_YSL_041_20180802100104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:01,8/3/2018 13:27,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_018_20100811172204^01,Field Msr/Obs,WATER,NA,8/11/2010,17:22:00,MDT,8/12/2010,8:50:00,MDT,20.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_018,No Fish Caught Orig ID=0811101722 Organization ActivityID=YELL_YSL_018_20100811172204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 23:22,8/12/2010 14:50,Yellowstone Lake Shoreline KM 18,Lake,This site is located in the West Thumb portion of Yellowstone Lake. It is on the western shoreline approximately 4 km from the West Thumb Geyser basin.,10070001,NA,NA,NA,NA,44.4151631,-110.5687369,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20190801104903^01,Field Msr/Obs,WATER,NA,8/1/2019,10:49:00,MDT,8/2/2019,10:25:00,MDT,11.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Small end to shore Organization ActivityID=YELL_YSL_041_20190801104903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 16:49,8/2/2019 16:25,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20190801094502^01,Field Msr/Obs,WATER,NA,8/1/2019,9:45:00,MDT,8/2/2019,8:52:00,MDT,2.05,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Small to shore Organization ActivityID=YELL_YSL_029_20190801094502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 15:45,8/2/2019 14:52,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20180804104406^01,Field Msr/Obs,WATER,NA,8/4/2018,10:44:00,MDT,8/5/2018,9:36:00,MDT,41.04,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Organization ActivityID=YELL_YSL_171_20180804104406,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:44,8/5/2018 15:36,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_202008041011_00^01,Field Msr/Obs,WATER,NA,8/4/2020,10:11:00,MDT,8/5/2020,7:40:00,MDT,8.87,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,"Activity Net, Buoy, Start/End UTMs: Small ETS|2026|14|539250|4917424|539181|4917472 Organization ActivityID=YELL_YSL_006_202008041011_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 16:11,8/5/2020 13:40,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20140806113004^01,Field Msr/Obs,WATER,NA,8/6/2014,11:30:00,MDT,8/7/2014,7:58:00,MDT,9.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Sunk Buoy Orig ID=0806141130 Organization ActivityID=YELL_YSL_058_20140806113004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 17:30,8/7/2014 13:58,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20180806115104^01,Field Msr/Obs,WATER,NA,8/6/2018,11:51:00,MDT,8/7/2018,9:39:00,MDT,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Organization ActivityID=YELL_YSL_091_20180806115104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:51,8/7/2018 15:39,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20180803103804^01,Field Msr/Obs,WATER,NA,8/3/2018,10:38:00,MDT,8/4/2018,7:54:00,MDT,7.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Organization ActivityID=YELL_YSL_163_20180803103804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:38,8/4/2018 13:54,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20190805104706^01,Field Msr/Obs,WATER,NA,8/5/2019,10:47:00,MDT,8/6/2019,7:59:00,MDT,42.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,large end to shore Organization ActivityID=YELL_YSL_168_20190805104706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 16:47,8/6/2019 13:59,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20061004182505^01,Field Msr/Obs,WATER,NA,10/4/2006,18:25:00,MDT,10/5/2006,10:25:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=1004061825 Organization ActivityID=YELL_3B_20061004182505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 0:25,10/5/2006 16:25,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20110803145202^01,Field Msr/Obs,WATER,NA,8/3/2011,14:52:00,MDT,8/4/2011,13:56:00,MDT,3.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0803111452 Organization ActivityID=YELL_YSL_115_20110803145202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 20:52,8/4/2011 19:56,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20150802113801^01,Field Msr/Obs,WATER,NA,8/2/2015,11:38:00,MDT,8/3/2015,10:22:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,"Yellow, red. Steep contour, net deeper than ideal. Orig ID=0802151138 Organization ActivityID=YELL_YSL_101_20150802113801",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:38,8/3/2015 16:22,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20190803111705^01,Field Msr/Obs,WATER,NA,8/3/2019,11:17:00,MDT,8/4/2019,7:57:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,large end to shore Organization ActivityID=YELL_YSL_177_20190803111705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:17,8/4/2019 13:57,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20130801111503^01,Field Msr/Obs,WATER,NA,8/1/2013,11:15:00,MDT,8/2/2013,8:48:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,logger # 15 Orig ID=0801131115 Organization ActivityID=YELL_YSL_190_20130801111503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 17:15,8/2/2013 14:48,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_051_20100802155303^01,Field Msr/Obs,WATER,NA,8/2/2010,15:53:00,MDT,8/3/2010,8:33:00,MDT,6.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_051,Orig ID=0802101553 Organization ActivityID=YELL_YSL_051_20100802155303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2010 21:53,8/3/2010 14:33,Yellowstone Lake Shoreline KM 51,Lake,Station located on north shore of Yellowstone Lake approximately 2 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.5367389,-110.4310425,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20150801100804^01,Field Msr/Obs,WATER,NA,8/1/2015,10:08:00,MDT,8/2/2015,7:56:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801151008 Organization ActivityID=YELL_YSL_190_20150801100804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 16:08,8/2/2015 13:56,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20150801113801^01,Field Msr/Obs,WATER,NA,8/1/2015,11:38:00,MDT,8/2/2015,10:00:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Yellow; red Orig ID=0801151138 Organization ActivityID=YELL_YSL_209_20150801113801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:38,8/2/2015 16:00,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20170801110202^01,Field Msr/Obs,WATER,NA,8/1/2017,11:02:00,MDT,8/2/2017,9:47:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Orig ID=0801171102 Organization ActivityID=YELL_YSL_027_20170801110202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 17:02,8/2/2017 15:47,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20140802103902^01,Field Msr/Obs,WATER,NA,8/2/2014,10:39:00,MDT,8/3/2014,8:10:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0802141039 Organization ActivityID=YELL_YSL_091_20140802103902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 16:39,8/3/2014 14:10,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20190804121003^01,Field Msr/Obs,WATER,NA,8/4/2019,12:10:00,MDT,8/5/2019,10:58:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,large end to shore Organization ActivityID=YELL_YSL_158_20190804121003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 18:10,8/5/2019 16:58,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20040914190002^01,Field Msr/Obs,WATER,NA,9/14/2004,19:00:00,MDT,9/15/2004,11:00:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=914041900 Organization ActivityID=YELL_4A_20040914190002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 1:00,9/15/2004 17:00,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20190803114502^01,Field Msr/Obs,WATER,NA,8/3/2019,11:45:00,MDT,8/4/2019,8:41:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,large end to shore Organization ActivityID=YELL_YSL_077_20190803114502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:45,8/4/2019 14:41,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20140803084301^01,Field Msr/Obs,WATER,NA,8/3/2014,8:43:00,MDT,8/4/2014,8:06:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0803140843 Organization ActivityID=YELL_YSL_006_20140803084301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 14:43,8/4/2014 14:06,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20170801134001^01,Field Msr/Obs,WATER,NA,8/1/2017,13:40:00,MDT,8/2/2017,7:30:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0801171340 Organization ActivityID=YELL_YSL_042_20170801134001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 19:40,8/2/2017 13:30,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20120815143902^01,Field Msr/Obs,WATER,NA,8/15/2012,14:39:00,MDT,8/16/2012,8:39:00,MDT,3.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0815121439 Organization ActivityID=YELL_YSL_144_20120815143902,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 20:39,8/16/2012 14:39,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20110809125105^01,Field Msr/Obs,WATER,NA,8/9/2011,12:51:00,MDT,8/10/2011,10:41:00,MDT,40.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Large hole in net Orig ID=0809111251 Organization ActivityID=YELL_YSL_163_20110809125105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:51,8/10/2011 16:41,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20050922182505^01,Field Msr/Obs,WATER,NA,9/22/2005,18:25:00,MDT,9/23/2005,10:25:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=922051825 Organization ActivityID=YELL_3A_20050922182505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2005 0:25,9/23/2005 16:25,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20100913175404^01,Field Msr/Obs,WATER,NA,9/13/2010,17:54:00,MDT,9/14/2010,8:28:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0913101754 Organization ActivityID=YELL_4A_20100913175404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 23:54,9/14/2010 14:28,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20190801121506^01,Field Msr/Obs,WATER,NA,8/1/2019,12:15:00,MDT,8/2/2019,11:08:00,MDT,38.54,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,small to shore Organization ActivityID=YELL_YSL_027_20190801121506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 18:15,8/2/2019 17:08,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20170804104301^01,Field Msr/Obs,WATER,NA,8/4/2017,10:43:00,MDT,8/5/2017,7:19:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804171043 Organization ActivityID=YELL_YSL_163_20170804104301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 16:43,8/5/2017 13:19,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20061004171501^01,Field Msr/Obs,WATER,NA,10/4/2006,17:15:00,MDT,10/5/2006,9:15:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=1004061715 Organization ActivityID=YELL_2A_20061004171501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 23:15,10/5/2006 15:15,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20110810130401^01,Field Msr/Obs,WATER,NA,8/10/2011,13:04:00,MDT,8/11/2011,8:55:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0810111304 Organization ActivityID=YELL_YSL_023_20110810130401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.8,13.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 19:04,8/11/2011 14:55,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20120919100702^01,Field Msr/Obs,WATER,NA,9/19/2012,10:07:00,MDT,9/20/2012,7:52:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0919121007 Organization ActivityID=YELL_2B_20120919100702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 16:07,9/20/2012 13:52,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20120813131006^01,Field Msr/Obs,WATER,NA,8/13/2012,13:10:00,MDT,8/14/2012,9:48:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,No Fish Orig ID=0813121310 Organization ActivityID=YELL_YSL_209_20120813131006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 19:10,8/14/2012 15:48,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20170801145403^01,Field Msr/Obs,WATER,NA,8/1/2017,14:54:00,MDT,8/2/2017,9:24:00,MDT,7.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0801171454 Organization ActivityID=YELL_YSL_041_20170801145403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 20:54,8/2/2017 15:24,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20180805105302^01,Field Msr/Obs,WATER,NA,8/5/2018,10:53:00,MDT,8/6/2018,8:47:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Organization ActivityID=YELL_YSL_079_20180805105302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 16:53,8/6/2018 14:47,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20190804112504^01,Field Msr/Obs,WATER,NA,8/4/2019,11:25:00,MDT,8/5/2019,9:51:00,MDT,41.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,large end to shore Organization ActivityID=YELL_YSL_082_20190804112504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:25,8/5/2019 15:51,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_202108010935_00^01,Field Msr/Obs,WATER,NA,8/1/2021,9:35:00,MDT,8/2/2021,9:35:00,MDT,43.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|4017|5|552579|4909083|552649|4909116 Organization ActivityID=YELL_YSL_120_202108010935_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 15:35,8/2/2021 15:35,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20120814134001^01,Field Msr/Obs,WATER,NA,8/14/2012,13:40:00,MDT,8/15/2012,12:56:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0814121340 Organization ActivityID=YELL_YSL_152_20120814134001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 19:40,8/15/2012 18:56,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20170806101001^01,Field Msr/Obs,WATER,NA,8/6/2017,10:10:00,MDT,8/7/2017,9:10:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0806171010 Organization ActivityID=YELL_YSL_089_20170806101001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:10,8/7/2017 15:10,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20180807111401^01,Field Msr/Obs,WATER,NA,8/7/2018,11:14:00,MDT,8/8/2018,10:20:00,MDT,2.17,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Organization ActivityID=YELL_YSL_077_20180807111401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:14,8/8/2018 16:20,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20150803120202^01,Field Msr/Obs,WATER,NA,8/3/2015,12:02:00,MDT,8/4/2015,8:14:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0803151202 Organization ActivityID=YELL_YSL_082_20150803120202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 18:02,8/4/2015 14:14,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20100914152203^01,Field Msr/Obs,WATER,NA,9/14/2010,15:22:00,MDT,9/15/2010,8:02:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=0914101522 Organization ActivityID=YELL_2A_20100914152203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:22,9/15/2010 14:02,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20100819165604^01,Field Msr/Obs,WATER,NA,8/19/2010,16:56:00,MDT,8/20/2010,10:06:00,MDT,16.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0819101656 Organization ActivityID=YELL_YSL_059_20100819165604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 22:56,8/20/2010 16:06,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20190806102903^01,Field Msr/Obs,WATER,NA,8/6/2019,10:29:00,MDT,8/7/2019,8:03:00,MDT,11,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,small end to shore Organization ActivityID=YELL_YSL_089_20190806102903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 16:29,8/7/2019 14:03,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20110809092602^01,Field Msr/Obs,WATER,NA,8/9/2011,9:26:00,MDT,8/10/2011,8:23:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0809110926 Organization ActivityID=YELL_YSL_153_20110809092602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 15:26,8/10/2011 14:23,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20120814151104^01,Field Msr/Obs,WATER,NA,8/14/2012,15:11:00,MDT,8/15/2012,11:26:00,MDT,11.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0814121511 Organization ActivityID=YELL_YSL_221_20120814151104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 21:11,8/15/2012 17:26,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20150803122206^01,Field Msr/Obs,WATER,NA,8/3/2015,12:22:00,MDT,8/4/2015,7:26:00,MDT,43.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,No fish. Orig ID=0803151222 Organization ActivityID=YELL_YSL_082_20150803122206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 18:22,8/4/2015 13:26,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20120814145901^01,Field Msr/Obs,WATER,NA,8/14/2012,14:59:00,MDT,8/15/2012,12:02:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0814121459 Organization ActivityID=YELL_YSL_221_20120814145901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 20:59,8/15/2012 18:02,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202108041033_00^01,Field Msr/Obs,WATER,NA,8/4/2021,10:33:00,MDT,8/5/2021,7:27:00,MDT,7.24,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE, FLAG 13 MISSING|2027|13|539660|4920099|539601|4920184 Organization ActivityID=YELL_YSL_003_202108041033_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 16:33,8/5/2021 13:27,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20100913182103^01,Field Msr/Obs,WATER,NA,9/13/2010,18:21:00,MDT,9/14/2010,9:02:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=0913101821 Organization ActivityID=YELL_4B_20100913182103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 0:21,9/14/2010 15:02,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20170807122001^01,Field Msr/Obs,WATER,NA,8/7/2017,12:20:00,MDT,8/8/2017,9:40:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Orig ID=0807171220 Organization ActivityID=YELL_YSL_210_20170807122001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 18:20,8/8/2017 15:40,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_051_20100802170005^01,Field Msr/Obs,WATER,NA,8/2/2010,17:00:00,MDT,8/3/2010,8:23:00,MDT,45.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_051,Orig ID=0802101700 Organization ActivityID=YELL_YSL_051_20100802170005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2010 23:00,8/3/2010 14:23,Yellowstone Lake Shoreline KM 51,Lake,Station located on north shore of Yellowstone Lake approximately 2 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.5367389,-110.4310425,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_109_20100803181103^01,Field Msr/Obs,WATER,NA,8/3/2010,18:11:00,MDT,8/4/2010,8:34:00,MDT,22.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_109,Orig ID=0803101811 Organization ActivityID=YELL_YSL_109_20100803181103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 0:11,8/4/2010 14:34,Yellowstone Lake Shoreline KM 109,Lake,This station is located in the South Arm of Yellowstone lake along the east shoreline approximately midway from the lake main basin to the non-motorized zone.,10070001,NA,NA,NA,NA,44.3582804,-110.3195038,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20040915161003^01,Field Msr/Obs,WATER,NA,9/15/2004,16:10:00,MDT,9/17/2004,8:10:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915041610 Organization ActivityID=YELL_1A_20040915161003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:10,9/17/2004 14:10,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20190807110104^01,Field Msr/Obs,WATER,NA,8/7/2019,11:01:00,MDT,8/8/2019,7:47:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,small end to shore Organization ActivityID=YELL_YSL_175_20190807110104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2019 17:01,8/8/2019 13:47,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20050920193504^01,Field Msr/Obs,WATER,NA,9/20/2005,19:35:00,MDT,9/21/2005,11:35:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=920051935 Organization ActivityID=YELL_4B_20050920193504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 1:35,9/21/2005 17:35,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20100818165105^01,Field Msr/Obs,WATER,NA,8/18/2010,16:51:00,MDT,8/19/2010,9:40:00,MDT,18.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0818101651 Organization ActivityID=YELL_YSL_042_20100818165105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 22:51,8/19/2010 15:40,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20190802114001^01,Field Msr/Obs,WATER,NA,8/2/2019,11:40:00,MDT,8/3/2019,8:08:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,small to shore Organization ActivityID=YELL_YSL_023_20190802114001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 17:40,8/3/2019 14:08,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20150803104702^01,Field Msr/Obs,WATER,NA,8/3/2015,10:47:00,MDT,8/4/2015,7:49:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0803151047 Organization ActivityID=YELL_YSL_148_20150803104702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 16:47,8/4/2015 13:49,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20150806125501^01,Field Msr/Obs,WATER,NA,8/6/2015,12:55:00,MDT,8/7/2015,11:29:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806151255 Organization ActivityID=YELL_YSL_023_20150806125501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.1,14.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 18:55,8/7/2015 17:29,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20120808102801^01,Field Msr/Obs,WATER,NA,8/8/2012,10:28:00,MDT,8/9/2012,7:57:00,MDT,4.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0808121028 Organization ActivityID=YELL_YSL_023_20120808102801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:28,8/9/2012 13:57,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20040916202003^01,Field Msr/Obs,WATER,NA,9/16/2004,20:20:00,MDT,9/17/2004,12:20:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,scales regen Orig ID=916042020 Organization ActivityID=YELL_7C_20040916202003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 2:20,9/17/2004 18:20,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20190803130404^01,Field Msr/Obs,WATER,NA,8/3/2019,13:04:00,MDT,8/4/2019,10:02:00,MDT,6.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,large to shore Organization ActivityID=YELL_YSL_003_20190803130404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 19:04,8/4/2019 16:02,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20170807124005^01,Field Msr/Obs,WATER,NA,8/7/2017,12:40:00,MDT,8/8/2017,10:26:00,MDT,39.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,no fish Orig ID=0807171240 Organization ActivityID=YELL_YSL_210_20170807124005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 18:40,8/8/2017 16:26,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202008050949_00^01,Field Msr/Obs,WATER,NA,8/5/2020,9:49:00,MDT,8/6/2020,8:30:00,MDT,20.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: Small ETS|4013|17|535269|4916102|535291|4916197 Organization ActivityID=YELL_YSL_012_202008050949_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 15:49,8/6/2020 14:30,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20150801100001^01,Field Msr/Obs,WATER,NA,8/1/2015,10:00:00,MDT,8/2/2015,8:38:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801151000 Organization ActivityID=YELL_YSL_190_20150801100001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 16:00,8/2/2015 14:38,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20110801130301^01,Field Msr/Obs,WATER,NA,8/1/2011,13:03:00,MDT,8/2/2011,13:40:00,MDT,14.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Primary Site Orig ID=0801111303 Organization ActivityID=YELL_YSL_065_20110801130301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 19:03,8/2/2011 19:40,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20170808112501^01,Field Msr/Obs,WATER,NA,8/8/2017,11:25:00,MDT,8/9/2017,7:15:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808171125 Organization ActivityID=YELL_YSL_175_20170808112501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2017 17:25,8/9/2017 13:15,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20120806110702^01,Field Msr/Obs,WATER,NA,8/6/2012,11:07:00,MDT,8/7/2012,10:57:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Logger 26 Orig ID=0806121107 Organization ActivityID=YELL_YSL_058_20120806110702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 17:07,8/7/2012 16:57,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20170801143802^01,Field Msr/Obs,WATER,NA,8/1/2017,14:38:00,MDT,8/2/2017,9:10:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Small to shore Orig ID=0801171438 Organization ActivityID=YELL_YSL_041_20170801143802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 20:38,8/2/2017 15:10,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202108041113_00^01,Field Msr/Obs,WATER,NA,8/4/2021,11:13:00,MDT,8/5/2021,8:33:00,MDT,1.11,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|4018|11|535329|4915894|535385|4915898 Organization ActivityID=YELL_YSL_012_202108041113_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 17:13,8/5/2021 14:33,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20150804105401^01,Field Msr/Obs,WATER,NA,8/4/2015,10:54:00,MDT,8/5/2015,13:54:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804151054 Organization ActivityID=YELL_YSL_171_20150804105401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:54,8/5/2015 19:54,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_202008021127_00^01,Field Msr/Obs,WATER,NA,8/2/2020,11:27:00,MDT,8/3/2020,8:50:00,MDT,13.41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,"Activity Net, Buoy, Start/End UTMs: Large ETS|2026|16|547299|4917630|547295|4917714 Organization ActivityID=YELL_YSL_153_202008021127_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 17:27,8/3/2020 14:50,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20110801113206^01,Field Msr/Obs,WATER,NA,8/1/2011,11:32:00,MDT,8/2/2011,13:35:00,MDT,44.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,No Fish Orig ID=0801111132 Organization ActivityID=YELL_YSL_041_20110801113206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 17:32,8/2/2011 19:35,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20150803113105^01,Field Msr/Obs,WATER,NA,8/3/2015,11:31:00,MDT,8/4/2015,9:13:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0803151131 Organization ActivityID=YELL_YSL_148_20150803113105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 17:31,8/4/2015 15:13,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20180802104604^01,Field Msr/Obs,WATER,NA,8/2/2018,10:46:00,MDT,8/3/2018,7:40:00,MDT,2.13,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,0.75 to Shore Orig ID=0802181046 Organization ActivityID=YELL_YSL_006_20180802104604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:46,8/3/2018 13:40,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20120807094501^01,Field Msr/Obs,WATER,NA,8/7/2012,9:45:00,MDT,8/8/2012,9:04:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0807120945 Organization ActivityID=YELL_YSL_006_20120807094501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:45,8/8/2012 15:04,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20190806102502^01,Field Msr/Obs,WATER,NA,8/6/2019,10:25:00,MDT,8/7/2019,7:35:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,small end to shore Organization ActivityID=YELL_YSL_089_20190806102502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 16:25,8/7/2019 13:35,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20170803115706^01,Field Msr/Obs,WATER,NA,8/3/2017,11:57:00,MDT,8/4/2017,10:11:00,MDT,39.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,no fish Orig ID=0803171157 Organization ActivityID=YELL_YSL_003_20170803115706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:57,8/4/2017 16:11,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20120813135804^01,Field Msr/Obs,WATER,NA,8/13/2012,13:58:00,MDT,8/14/2012,7:54:00,MDT,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0813121358 Organization ActivityID=YELL_YSL_190_20120813135804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 19:58,8/14/2012 13:54,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20040915160502^01,Field Msr/Obs,WATER,NA,9/15/2004,16:05:00,MDT,9/17/2004,8:05:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915041605 Organization ActivityID=YELL_1A_20040915160502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:05,9/17/2004 14:05,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20150803121803^01,Field Msr/Obs,WATER,NA,8/3/2015,12:18:00,MDT,8/4/2015,7:36:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0803151218 Organization ActivityID=YELL_YSL_082_20150803121803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 18:18,8/4/2015 13:36,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20110808095702^01,Field Msr/Obs,WATER,NA,8/8/2011,9:57:00,MDT,8/9/2011,11:08:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0808110957 Organization ActivityID=YELL_YSL_158_20110808095702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:57,8/9/2011 17:08,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20180801104204^01,Field Msr/Obs,WATER,NA,8/1/2018,10:42:00,MDT,8/2/2018,10:02:00,MDT,9.32,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,2.25 to shore Orig ID=0801181042 Organization ActivityID=YELL_YSL_009_20180801104204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:42,8/2/2018 16:02,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20170802122204^01,Field Msr/Obs,WATER,NA,8/2/2017,12:22:00,MDT,8/3/2017,9:04:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0802171222 Organization ActivityID=YELL_YSL_059_20170802122204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:22,8/3/2017 15:04,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20110803130402^01,Field Msr/Obs,WATER,NA,8/3/2011,13:04:00,MDT,8/4/2011,8:44:00,MDT,6.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0803111304 Organization ActivityID=YELL_YSL_089_20110803130402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:04,8/4/2011 14:44,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20140801112205^01,Field Msr/Obs,WATER,NA,8/1/2014,11:22:00,MDT,8/2/2014,10:12:00,MDT,36.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,No Fish; Mesh 2.25 towards shore. Orig ID=0801141122 Organization ActivityID=YELL_YSL_025_20140801112205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 17:22,8/2/2014 16:12,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20150806100101^01,Field Msr/Obs,WATER,NA,8/6/2015,10:01:00,MDT,8/7/2015,8:31:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0806151001 Organization ActivityID=YELL_YSL_021_20150806100101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 16:01,8/7/2015 14:31,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20120813134805^01,Field Msr/Obs,WATER,NA,8/13/2012,13:48:00,MDT,8/14/2012,7:25:00,MDT,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,No Fish Orig ID=0813121348 Organization ActivityID=YELL_YSL_190_20120813134805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 19:48,8/14/2012 13:25,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_016_20100811162306^01,Field Msr/Obs,WATER,NA,8/11/2010,16:23:00,MDT,8/12/2010,10:23:00,MDT,42.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_016,no fish caught Orig ID=0811101623 Organization ActivityID=YELL_YSL_016_20100811162306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 22:23,8/12/2010 16:23,Yellowstone Lake Shoreline KM 16,Lake,This station is located in the West Thumb portion of Yellowstone Lake primarily on the western shoreline but in the southwest corner of West Thumb approximately 2km north of the West Thumb geyser basin.,10070001,NA,NA,NA,NA,44.4002273,-110.5615431,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_024_20100810164303^01,Field Msr/Obs,WATER,NA,8/10/2010,16:43:00,MDT,8/11/2010,9:22:00,MDT,19,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_024,Orig ID=0810101643 Organization ActivityID=YELL_YSL_024_20100810164303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 22:43,8/11/2010 15:22,Yellowstone Lake Shoreline KM 24,Lake,Station 24 is located in the West Thumb portion of Yellowstone Lake along the western shoreline near the vicinity of Carrington Island.,10070001,NA,NA,NA,NA,44.4562099,-110.5580606,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20110808091805^01,Field Msr/Obs,WATER,NA,8/8/2011,9:18:00,MDT,8/9/2011,7:22:00,MDT,36.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0808110918 Organization ActivityID=YELL_YSL_152_20110808091805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:18,8/9/2011 13:22,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20100916164301^01,Field Msr/Obs,WATER,NA,9/16/2010,16:43:00,MDT,9/17/2010,8:18:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0916101643 Organization ActivityID=YELL_3A_20100916164301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 22:43,9/17/2010 14:18,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20170805112005^01,Field Msr/Obs,WATER,NA,8/5/2017,11:20:00,MDT,8/6/2017,8:40:00,MDT,41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0805171120 Organization ActivityID=YELL_YSL_171_20170805112005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:20,8/6/2017 14:40,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20110801100105^01,Field Msr/Obs,WATER,NA,8/1/2011,10:01:00,MDT,8/2/2011,11:47:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,No Fish; large mesh was towards shore; net set was skewed towards east Orig ID=0801111001 Organization ActivityID=YELL_YSL_045_20110801100105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 16:01,8/2/2011 17:47,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20050920190503^01,Field Msr/Obs,WATER,NA,9/20/2005,19:05:00,MDT,9/21/2005,11:05:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=920051905 Organization ActivityID=YELL_4A_20050920190503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 1:05,9/21/2005 17:05,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20130802130704^01,Field Msr/Obs,WATER,NA,8/2/2013,13:07:00,MDT,8/3/2013,7:46:00,MDT,8.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0802131307 Organization ActivityID=YELL_YSL_082_20130802130704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 19:07,8/3/2013 13:46,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20170801112604^01,Field Msr/Obs,WATER,NA,8/1/2017,11:26:00,MDT,8/2/2017,10:33:00,MDT,35.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,No fish Orig ID=0801171126 Organization ActivityID=YELL_YSL_027_20170801112604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 17:26,8/2/2017 16:33,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20100916170305^01,Field Msr/Obs,WATER,NA,9/16/2010,17:03:00,MDT,9/17/2010,8:31:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0916101703 Organization ActivityID=YELL_3A_20100916170305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 23:03,9/17/2010 14:31,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20190803120906^01,Field Msr/Obs,WATER,NA,8/3/2019,12:09:00,MDT,8/4/2019,9:39:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,large end to shore Organization ActivityID=YELL_YSL_077_20190803120906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 18:09,8/4/2019 15:39,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20050922182004^01,Field Msr/Obs,WATER,NA,9/22/2005,18:20:00,MDT,9/23/2005,10:20:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=922051820 Organization ActivityID=YELL_3A_20050922182004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2005 0:20,9/23/2005 16:20,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20150806134106^01,Field Msr/Obs,WATER,NA,8/6/2015,13:41:00,MDT,8/7/2015,10:14:00,MDT,42.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806151341 Organization ActivityID=YELL_YSL_023_20150806134106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 19:41,8/7/2015 16:14,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20150807124106^01,Field Msr/Obs,WATER,NA,8/7/2015,12:41:00,MDT,8/8/2015,8:27:00,MDT,42.16,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807151241 Organization ActivityID=YELL_YSL_029_20150807124106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 18:41,8/8/2015 14:27,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20120809120006^01,Field Msr/Obs,WATER,NA,8/9/2012,12:00:00,MDT,8/10/2012,9:21:00,MDT,34.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0809121200 Organization ActivityID=YELL_YSL_045_20120809120006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 18:00,8/10/2012 15:21,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20180806115005^01,Field Msr/Obs,WATER,NA,8/6/2018,11:50:00,MDT,8/7/2018,9:28:00,MDT,42.27,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Organization ActivityID=YELL_YSL_115_20180806115005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:50,8/7/2018 15:28,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20061001174502^01,Field Msr/Obs,WATER,NA,10/1/2006,17:45:00,MDT,10/2/2006,9:45:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=1001061745 Organization ActivityID=YELL_2B_20061001174502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/1/2006 23:45,10/2/2006 15:45,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20180805110001^01,Field Msr/Obs,WATER,NA,8/5/2018,11:00:00,MDT,8/6/2018,9:30:00,MDT,2.43,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Organization ActivityID=YELL_YSL_128_20180805110001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:00,8/6/2018 15:30,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20100916162505^01,Field Msr/Obs,WATER,NA,9/16/2010,16:25:00,MDT,9/17/2010,8:07:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0916101625 Organization ActivityID=YELL_3B_20100916162505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 22:25,9/17/2010 14:07,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20120916095905^01,Field Msr/Obs,WATER,NA,9/16/2012,9:59:00,MDT,9/17/2012,9:33:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0916120959 Organization ActivityID=YELL_4A_20120916095905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2012 15:59,9/17/2012 15:33,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20050921195002^01,Field Msr/Obs,WATER,NA,9/21/2005,19:50:00,MDT,9/22/2005,11:50:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=921051950 Organization ActivityID=YELL_6C_20050921195002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 1:50,9/22/2005 17:50,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20140807103805^01,Field Msr/Obs,WATER,NA,8/7/2014,10:38:00,MDT,8/8/2014,8:30:00,MDT,7.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,NO FISH Orig ID=0807141038 Organization ActivityID=YELL_YSL_115_20140807103805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 16:38,8/8/2014 14:30,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20120806094302^01,Field Msr/Obs,WATER,NA,8/6/2012,9:43:00,MDT,8/7/2012,8:34:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Logger 23 Orig ID=0806120943 Organization ActivityID=YELL_YSL_052_20120806094302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 15:43,8/7/2012 14:34,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_202008041029_00^01,Field Msr/Obs,WATER,NA,8/4/2020,10:29:00,MDT,8/5/2020,8:19:00,MDT,38.83,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,"Activity Net, Buoy, Start/End UTMs: Large ETS|2025|15|537774|4917698|537697|4917746 Organization ActivityID=YELL_YSL_006_202008041029_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 16:29,8/5/2020 14:19,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20170802115205^01,Field Msr/Obs,WATER,NA,8/2/2017,11:52:00,MDT,8/3/2017,8:10:00,MDT,43.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0802171152 Organization ActivityID=YELL_YSL_058_20170802115205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:52,8/3/2017 14:10,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20180804104701^01,Field Msr/Obs,WATER,NA,8/4/2018,10:47:00,MDT,8/5/2018,8:47:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Organization ActivityID=YELL_YSL_067_20180804104701,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:47,8/5/2018 14:47,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20150807104003^01,Field Msr/Obs,WATER,NA,8/7/2015,10:40:00,MDT,8/8/2015,7:40:00,MDT,7.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0807151040 Organization ActivityID=YELL_YSL_041_20150807104003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 16:40,8/8/2015 13:40,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20061002190002^01,Field Msr/Obs,WATER,NA,10/2/2006,19:00:00,MDT,10/3/2006,11:00:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=1002061900 Organization ActivityID=YELL_4B_20061002190002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 1:00,10/3/2006 17:00,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20190806113601^01,Field Msr/Obs,WATER,NA,8/6/2019,11:36:00,MDT,8/7/2019,9:40:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,small end to shore Organization ActivityID=YELL_YSL_128_20190806113601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 17:36,8/7/2019 15:40,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20110809112902^01,Field Msr/Obs,WATER,NA,8/9/2011,11:29:00,MDT,8/10/2011,8:04:00,MDT,23.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0809111129 Organization ActivityID=YELL_YSL_003_20110809112902,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.7,12.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 17:29,8/10/2011 14:04,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20120806125706^01,Field Msr/Obs,WATER,NA,8/6/2012,12:57:00,MDT,8/7/2012,7:31:00,MDT,36.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Logger 6. No Fish Orig ID=0806121257 Organization ActivityID=YELL_YSL_009_20120806125706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 18:57,8/7/2012 13:31,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20170805104005^01,Field Msr/Obs,WATER,NA,8/5/2017,10:40:00,MDT,8/6/2017,8:20:00,MDT,41.24,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,no fish Orig ID=0805171040 Organization ActivityID=YELL_YSL_168_20170805104005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:40,8/6/2017 14:20,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_068_20100818174504^01,Field Msr/Obs,WATER,NA,8/18/2010,17:45:00,MDT,8/19/2010,8:50:00,MDT,19.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_068,5 foot waves during set no northing UTM for beginning Orig ID=0818101745 Organization ActivityID=YELL_YSL_068_20100818174504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 23:45,8/19/2010 14:50,Yellowstone Lake Shoreline KM 68,Lake,This station is located in the main basin in region 3. It is found along the east shore approximately 1 km south of Steamboat Point.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20110801121703^01,Field Msr/Obs,WATER,NA,8/1/2011,12:17:00,MDT,8/2/2011,9:02:00,MDT,20,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Net was set a little too shallow at the shore end. Orig ID=0801111217 Organization ActivityID=YELL_YSL_058_20110801121703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 18:17,8/2/2011 15:02,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20180802095102^01,Field Msr/Obs,WATER,NA,8/2/2018,9:51:00,MDT,8/3/2018,7:19:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,0.75 to Shore Orig ID=0802180951 Organization ActivityID=YELL_YSL_041_20180802095102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 15:51,8/3/2018 13:19,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20140804123901^01,Field Msr/Obs,WATER,NA,8/4/2014,12:39:00,MDT,8/5/2014,9:21:00,MDT,44,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804141239 Organization ActivityID=YELL_YSL_158_20140804123901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 18:39,8/5/2014 15:21,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20150802111003^01,Field Msr/Obs,WATER,NA,8/2/2015,11:10:00,MDT,8/3/2015,9:00:00,MDT,8.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,"Blue, green. Orig ID=0802151110 Organization ActivityID=YELL_YSL_089_20150802111003",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:10,8/3/2015 15:00,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20061004182004^01,Field Msr/Obs,WATER,NA,10/4/2006,18:20:00,MDT,10/5/2006,10:20:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=1004061820 Organization ActivityID=YELL_3B_20061004182004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 0:20,10/5/2006 16:20,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20190804103105^01,Field Msr/Obs,WATER,NA,8/4/2019,10:31:00,MDT,8/5/2019,8:09:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,large end to shore Organization ActivityID=YELL_YSL_080_20190804103105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 16:31,8/5/2019 14:09,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20120916103203^01,Field Msr/Obs,WATER,NA,9/16/2012,10:32:00,MDT,9/17/2012,10:40:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=0916121032 Organization ActivityID=YELL_4B_20120916103203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2012 16:32,9/17/2012 16:40,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20170804110104^01,Field Msr/Obs,WATER,NA,8/4/2017,11:01:00,MDT,8/5/2017,7:49:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804171101 Organization ActivityID=YELL_YSL_163_20170804110104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 17:01,8/5/2017 13:49,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20050920184003^01,Field Msr/Obs,WATER,NA,9/20/2005,18:40:00,MDT,9/21/2005,10:40:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=920051840 Organization ActivityID=YELL_3B_20050920184003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 0:40,9/21/2005 16:40,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20190804113005^01,Field Msr/Obs,WATER,NA,8/4/2019,11:30:00,MDT,8/5/2019,9:42:00,MDT,37,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,small to shore Organization ActivityID=YELL_YSL_163_20190804113005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:30,8/5/2019 15:42,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20100810155105^01,Field Msr/Obs,WATER,NA,8/10/2010,15:51:00,MDT,8/11/2010,8:18:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0810101551 Organization ActivityID=YELL_YSL_029_20100810155105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 21:51,8/11/2010 14:18,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_227_20170807133907^01,Field Msr/Obs,WATER,NA,8/7/2017,13:39:00,MDT,8/8/2017,9:03:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_227,no fish Orig ID=0807171339 Organization ActivityID=YELL_YSL_227_20170807133907,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:39,8/8/2017 15:03,Yellowstone Lake Shoreline KM 227,Lake,This site is located in the South Arm of Yellowstone Lake along the western shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.295507,-110.34286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20061005160502^01,Field Msr/Obs,WATER,NA,10/5/2006,16:05:00,MDT,10/6/2006,8:05:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=1005061605 Organization ActivityID=YELL_1A_20061005160502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:05,10/6/2006 14:05,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20100913181702^01,Field Msr/Obs,WATER,NA,9/13/2010,18:17:00,MDT,9/14/2010,9:00:00,MDT,3.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=0913101817 Organization ActivityID=YELL_4B_20100913181702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 0:17,9/14/2010 15:00,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20110810114201^01,Field Msr/Obs,WATER,NA,8/10/2011,11:42:00,MDT,8/11/2011,10:55:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0810111142 Organization ActivityID=YELL_YSL_012_20110810114201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 17:42,8/11/2011 16:55,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20110810120705^01,Field Msr/Obs,WATER,NA,8/10/2011,12:07:00,MDT,8/11/2011,9:49:00,MDT,39.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0810111207 Organization ActivityID=YELL_YSL_012_20110810120705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.1,13.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 18:07,8/11/2011 15:49,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20050920183502^01,Field Msr/Obs,WATER,NA,9/20/2005,18:35:00,MDT,9/21/2005,10:35:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=920051835 Organization ActivityID=YELL_3B_20050920183502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 0:35,9/21/2005 16:35,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20190803124602^01,Field Msr/Obs,WATER,NA,8/3/2019,12:46:00,MDT,8/4/2019,9:26:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,small to shore Organization ActivityID=YELL_YSL_003_20190803124602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 18:46,8/4/2019 15:26,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20061005163002^01,Field Msr/Obs,WATER,NA,10/5/2006,16:30:00,MDT,10/6/2006,8:30:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=1005061630 Organization ActivityID=YELL_1B_20061005163002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:30,10/6/2006 14:30,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20110802124904^01,Field Msr/Obs,WATER,NA,8/2/2011,12:49:00,MDT,8/3/2011,8:09:00,MDT,22.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,No Fish Orig ID=0802111249 Organization ActivityID=YELL_YSL_052_20110802124904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 18:49,8/3/2011 14:09,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20110809123103^01,Field Msr/Obs,WATER,NA,8/9/2011,12:31:00,MDT,8/10/2011,11:11:00,MDT,22.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0809111231 Organization ActivityID=YELL_YSL_163_20110809123103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:31,8/10/2011 17:11,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20140801083404^01,Field Msr/Obs,WATER,NA,8/1/2014,8:34:00,MDT,8/2/2014,7:55:00,MDT,10.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801140834 Organization ActivityID=YELL_YSL_190_20140801083404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 14:34,8/2/2014 13:55,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20120807134705^01,Field Msr/Obs,WATER,NA,8/7/2012,13:47:00,MDT,8/8/2012,7:49:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,logger 19 Orig ID=0807121347 Organization ActivityID=YELL_YSL_065_20120807134705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 19:47,8/8/2012 13:49,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20120814122404^01,Field Msr/Obs,WATER,NA,8/14/2012,12:24:00,MDT,8/15/2012,8:08:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0814121224 Organization ActivityID=YELL_YSL_091_20120814122404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 18:24,8/15/2012 14:08,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20190802120901^01,Field Msr/Obs,WATER,NA,8/2/2019,12:09:00,MDT,8/3/2019,9:27:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,large to shore Organization ActivityID=YELL_YSL_059_20190802120901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:09,8/3/2019 15:27,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20120814105104^01,Field Msr/Obs,WATER,NA,8/14/2012,10:51:00,MDT,8/15/2012,9:03:00,MDT,11.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0814121051 Organization ActivityID=YELL_YSL_121_20120814105104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 16:51,8/15/2012 15:03,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20150803122805^01,Field Msr/Obs,WATER,NA,8/3/2015,12:28:00,MDT,8/4/2015,7:14:00,MDT,44.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0803151228 Organization ActivityID=YELL_YSL_082_20150803122805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 18:28,8/4/2015 13:14,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20040913182505^01,Field Msr/Obs,WATER,NA,9/13/2004,18:25:00,MDT,9/14/2004,10:25:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=913041825 Organization ActivityID=YELL_3A_20040913182505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:25,9/14/2004 16:25,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20170807140101^01,Field Msr/Obs,WATER,NA,8/7/2017,14:01:00,MDT,8/8/2017,9:33:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Orig ID=0807171401 Organization ActivityID=YELL_YSL_212_20170807140101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 20:01,8/8/2017 15:33,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20100915144405^01,Field Msr/Obs,WATER,NA,9/15/2010,14:44:00,MDT,9/16/2010,9:54:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0915101444 Organization ActivityID=YELL_1A_20100915144405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2010 20:44,9/16/2010 15:54,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20150806110002^01,Field Msr/Obs,WATER,NA,8/6/2015,11:00:00,MDT,8/7/2015,8:14:00,MDT,3.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0806151100 Organization ActivityID=YELL_YSL_059_20150806110002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:00,8/7/2015 14:14,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_202008021107_00^01,Field Msr/Obs,WATER,NA,8/2/2020,11:07:00,MDT,8/3/2020,8:16:00,MDT,2.37,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,"Activity Net, Buoy, Start/End UTMs: Large ETS|3029|21|547613|4917388|547621|4917485 Organization ActivityID=YELL_YSL_153_202008021107_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 17:07,8/3/2020 14:16,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20100913174001^01,Field Msr/Obs,WATER,NA,9/13/2010,17:40:00,MDT,9/14/2010,8:10:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0913101740 Organization ActivityID=YELL_4A_20100913174001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 23:40,9/14/2010 14:10,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20190806103904^01,Field Msr/Obs,WATER,NA,8/6/2019,10:39:00,MDT,8/7/2019,8:11:00,MDT,8.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,small end to shore Organization ActivityID=YELL_YSL_089_20190806103904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 16:39,8/7/2019 14:11,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20040914170003^01,Field Msr/Obs,WATER,NA,9/14/2004,17:00:00,MDT,9/15/2004,9:00:00,MDT,1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=914041700 Organization ActivityID=YELL_1C_20040914170003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 23:00,9/15/2004 15:00,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_097_20100804160502^01,Field Msr/Obs,WATER,NA,8/4/2010,16:05:00,MDT,8/5/2010,8:50:00,MDT,11,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_097,Orig ID=0804101605 Organization ActivityID=YELL_YSL_097_20100804160502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 22:05,8/5/2010 14:50,Yellowstone Lake Shoreline KM 97,Lake,Station is located in the Southeast Arm of Yellowstone Lake along the west shore and approximately 2 km from the non-motorized zone.,10070001,NA,NA,NA,NA,44.3416933,-110.2771078,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20050921194501^01,Field Msr/Obs,WATER,NA,9/21/2005,19:45:00,MDT,9/22/2005,11:45:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=921051945 Organization ActivityID=YELL_6C_20050921194501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 1:45,9/22/2005 17:45,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20170807121402^01,Field Msr/Obs,WATER,NA,8/7/2017,12:14:00,MDT,8/8/2017,9:25:00,MDT,1.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Orig ID=0807171214 Organization ActivityID=YELL_YSL_210_20170807121402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 18:14,8/8/2017 15:25,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20110803132404^01,Field Msr/Obs,WATER,NA,8/3/2011,13:24:00,MDT,8/4/2011,8:21:00,MDT,29,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,No Fish Orig ID=0803111324 Organization ActivityID=YELL_YSL_089_20110803132404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:24,8/4/2011 14:21,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20170805115304^01,Field Msr/Obs,WATER,NA,8/5/2017,11:53:00,MDT,8/6/2017,9:41:00,MDT,30.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,no fish Orig ID=0805171153 Organization ActivityID=YELL_YSL_144_20170805115304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:53,8/6/2017 15:41,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20120918125703^01,Field Msr/Obs,WATER,NA,9/18/2012,12:57:00,MDT,9/19/2012,7:22:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0918121257 Organization ActivityID=YELL_1B_20120918125703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 18:57,9/19/2012 13:22,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20170804093002^01,Field Msr/Obs,WATER,NA,8/4/2017,9:30:00,MDT,8/5/2017,7:30:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0804170930 Organization ActivityID=YELL_YSL_080_20170804093002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 15:30,8/5/2017 13:30,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20100812170002^01,Field Msr/Obs,WATER,NA,8/12/2010,17:00:00,MDT,8/13/2010,9:02:00,MDT,7.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0812101700 Organization ActivityID=YELL_YSL_128_20100812170002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 23:00,8/13/2010 15:02,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20180805111204^01,Field Msr/Obs,WATER,NA,8/5/2018,11:12:00,MDT,8/6/2018,10:00:00,MDT,12.12,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Organization ActivityID=YELL_YSL_128_20180805111204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:12,8/6/2018 16:00,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_202008021115_00^01,Field Msr/Obs,WATER,NA,8/2/2020,11:15:00,MDT,8/3/2020,8:35:00,MDT,2.24,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,"Activity Net, Buoy, Start/End UTMs: Large ETS|3055|14|547380|4917334|547310|4917351 Organization ActivityID=YELL_YSL_153_202008021115_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 17:15,8/3/2020 14:35,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20170802110301^01,Field Msr/Obs,WATER,NA,8/2/2017,11:03:00,MDT,8/3/2017,7:29:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0802171103 Organization ActivityID=YELL_YSL_023_20170802110301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:03,8/3/2017 13:29,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20150806101503^01,Field Msr/Obs,WATER,NA,8/6/2015,10:15:00,MDT,8/7/2015,8:09:00,MDT,16.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0806151015 Organization ActivityID=YELL_YSL_021_20150806101503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 16:15,8/7/2015 14:09,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20170803113003^01,Field Msr/Obs,WATER,NA,8/3/2017,11:30:00,MDT,8/4/2017,7:30:00,MDT,9.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0803171130 Organization ActivityID=YELL_YSL_177_20170803113003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:30,8/4/2017 13:30,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20120806133702^01,Field Msr/Obs,WATER,NA,8/6/2012,13:37:00,MDT,8/7/2012,12:27:00,MDT,3.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0806121337 Organization ActivityID=YELL_YSL_012_20120806133702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 19:37,8/7/2012 18:27,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20040913183502^01,Field Msr/Obs,WATER,NA,9/13/2004,18:35:00,MDT,9/14/2004,10:35:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=913041835 Organization ActivityID=YELL_3B_20040913183502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:35,9/14/2004 16:35,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20190805111902^01,Field Msr/Obs,WATER,NA,8/5/2019,11:19:00,MDT,8/6/2019,8:51:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,small end to shore Organization ActivityID=YELL_YSL_171_20190805111902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:19,8/6/2019 14:51,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20120917114204^01,Field Msr/Obs,WATER,NA,9/17/2012,11:42:00,MDT,9/18/2012,11:54:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0917121142 Organization ActivityID=YELL_3B_20120917114204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 17:42,9/18/2012 17:54,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20120806102806^01,Field Msr/Obs,WATER,NA,8/6/2012,10:28:00,MDT,8/7/2012,7:48:00,MDT,40.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Logger 25. No Fish Orig ID=0806121028 Organization ActivityID=YELL_YSL_052_20120806102806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 16:28,8/7/2012 13:48,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20170803113903^01,Field Msr/Obs,WATER,NA,8/3/2017,11:39:00,MDT,8/4/2017,9:33:00,MDT,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0803171139 Organization ActivityID=YELL_YSL_003_20170803113903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:39,8/4/2017 15:33,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20190804111302^01,Field Msr/Obs,WATER,NA,8/4/2019,11:13:00,MDT,8/5/2019,9:31:00,MDT,10.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,small end to shore Organization ActivityID=YELL_YSL_082_20190804111302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:13,8/5/2019 15:31,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202108011023_00^01,Field Msr/Obs,WATER,NA,8/1/2021,10:23:00,MDT,8/2/2021,10:15:00,MDT,1.64,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|2029|15|551569|4914021|551664|4914027 Organization ActivityID=YELL_YSL_128_202108011023_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 16:23,8/2/2021 16:15,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20140805125701^01,Field Msr/Obs,WATER,NA,8/5/2014,12:57:00,MDT,8/6/2014,8:50:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Deep buoy sunk Orig ID=0805141257 Organization ActivityID=YELL_YSL_045_20140805125701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:57,8/6/2014 14:50,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20150802104104^01,Field Msr/Obs,WATER,NA,8/2/2015,10:41:00,MDT,8/3/2015,9:45:00,MDT,11.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Large mesh towards shore. Orig ID=0802151041 Organization ActivityID=YELL_YSL_120_20150802104104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 16:41,8/3/2015 15:45,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20190801090701^01,Field Msr/Obs,WATER,NA,8/1/2019,9:07:00,MDT,8/2/2019,8:01:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,small end to shore Organization ActivityID=YELL_YSL_042_20190801090701,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 15:07,8/2/2019 14:01,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20190802112302^01,Field Msr/Obs,WATER,NA,8/2/2019,11:23:00,MDT,8/3/2019,7:23:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,large end to shore Organization ActivityID=YELL_YSL_058_20190802112302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 17:23,8/3/2019 13:23,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20140801100506^01,Field Msr/Obs,WATER,NA,8/1/2014,10:05:00,MDT,8/2/2014,9:04:00,MDT,41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,No Fish Orig ID=0801141005 Organization ActivityID=YELL_YSL_209_20140801100506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 16:05,8/2/2014 15:04,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20150808095601^01,Field Msr/Obs,WATER,NA,8/8/2015,9:56:00,MDT,8/9/2015,7:51:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0808150956 Organization ActivityID=YELL_YSL_175_20150808095601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2015 15:56,8/9/2015 13:51,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20120917125101^01,Field Msr/Obs,WATER,NA,9/17/2012,12:51:00,MDT,9/18/2012,7:53:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0917121251 Organization ActivityID=YELL_6C_20120917125101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 18:51,9/18/2012 13:53,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20050919165502^01,Field Msr/Obs,WATER,NA,9/19/2005,16:55:00,MDT,9/20/2005,8:55:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=919051655 Organization ActivityID=YELL_1C_20050919165502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:55,9/20/2005 14:55,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20110810120204^01,Field Msr/Obs,WATER,NA,8/10/2011,12:02:00,MDT,8/11/2011,10:08:00,MDT,24,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,No Fish Orig ID=0810111202 Organization ActivityID=YELL_YSL_012_20110810120204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 18:02,8/11/2011 16:08,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20110801131302^01,Field Msr/Obs,WATER,NA,8/1/2011,13:13:00,MDT,8/2/2011,13:29:00,MDT,18.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,No Fish Orig ID=0801111313 Organization ActivityID=YELL_YSL_065_20110801131302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 19:13,8/2/2011 19:29,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20140802120103^01,Field Msr/Obs,WATER,NA,8/2/2014,12:01:00,MDT,8/3/2014,10:33:00,MDT,8.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Mesh 3.5 to shore Orig ID=0802141201 Organization ActivityID=YELL_YSL_009_20140802120103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 18:01,8/3/2014 16:33,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202008021047_00^01,Field Msr/Obs,WATER,NA,8/2/2020,10:47:00,MDT,8/3/2020,7:29:00,MDT,41.68,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: Small ETS|4017|23|553272|4914401|553349|4914387 Organization ActivityID=YELL_YSL_128_202008021047_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 16:47,8/3/2020 13:29,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20150802101702^01,Field Msr/Obs,WATER,NA,8/2/2015,10:17:00,MDT,8/3/2015,9:07:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Small mesh towards shore. Orig ID=0802151017 Organization ActivityID=YELL_YSL_120_20150802101702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 16:17,8/3/2015 15:07,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20180804105103^01,Field Msr/Obs,WATER,NA,8/4/2018,10:51:00,MDT,8/5/2018,9:01:00,MDT,7.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Organization ActivityID=YELL_YSL_067_20180804105103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:51,8/5/2018 15:01,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20150802110001^01,Field Msr/Obs,WATER,NA,8/2/2015,11:00:00,MDT,8/3/2015,9:30:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802151100 Organization ActivityID=YELL_YSL_089_20150802110001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:00,8/3/2015 15:30,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20170807132004^01,Field Msr/Obs,WATER,NA,8/7/2017,13:20:00,MDT,8/8/2017,8:36:00,MDT,8.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0807171320 Organization ActivityID=YELL_YSL_190_20170807132004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:20,8/8/2017 14:36,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20100812162206^01,Field Msr/Obs,WATER,NA,8/12/2010,16:22:00,MDT,8/13/2010,10:25:00,MDT,41.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Not Fish Caught Orig ID=0812101622 Organization ActivityID=YELL_YSL_171_20100812162206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 22:22,8/13/2010 16:25,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20150807090901^01,Field Msr/Obs,WATER,NA,8/7/2015,9:09:00,MDT,8/8/2015,8:03:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Orig ID=0807150909 Organization ActivityID=YELL_YSL_027_20150807090901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 15:09,8/8/2015 14:03,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_004_20100816155503^01,Field Msr/Obs,WATER,NA,8/16/2010,15:55:00,MDT,8/17/2010,9:17:00,MDT,20.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_004,Orig ID=0816101555 Organization ActivityID=YELL_YSL_004_20100816155503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 21:55,8/17/2010 15:17,Yellowstone Lake Shoreline KM 4,Lake,Station located on the southeast corner of West Thumb of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_227_20170807131302^01,Field Msr/Obs,WATER,NA,8/7/2017,13:13:00,MDT,8/8/2017,8:09:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_227,Orig ID=0807171313 Organization ActivityID=YELL_YSL_227_20170807131302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:13,8/8/2017 14:09,Yellowstone Lake Shoreline KM 227,Lake,This site is located in the South Arm of Yellowstone Lake along the western shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.295507,-110.34286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20170802123106^01,Field Msr/Obs,WATER,NA,8/2/2017,12:31:00,MDT,8/3/2017,10:01:00,MDT,39.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,no fish Orig ID=0802171231 Organization ActivityID=YELL_YSL_021_20170802123106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:31,8/3/2017 16:01,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20120814153005^01,Field Msr/Obs,WATER,NA,8/14/2012,15:30:00,MDT,8/15/2012,10:53:00,MDT,33.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0814121530 Organization ActivityID=YELL_YSL_221_20120814153005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 21:30,8/15/2012 16:53,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20110802131401^01,Field Msr/Obs,WATER,NA,8/2/2011,13:14:00,MDT,8/3/2011,9:01:00,MDT,14.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,"Alternate Site, No Fish Orig ID=0802111314 Organization ActivityID=YELL_YSL_052_20110802131401",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 19:14,8/3/2011 15:01,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_097_20100804165001^01,Field Msr/Obs,WATER,NA,8/4/2010,16:50:00,MDT,8/5/2010,8:57:00,MDT,12.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_097,Orig ID=0804101650 Organization ActivityID=YELL_YSL_097_20100804165001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 22:50,8/5/2010 14:57,Yellowstone Lake Shoreline KM 97,Lake,Station is located in the Southeast Arm of Yellowstone Lake along the west shore and approximately 2 km from the non-motorized zone.,10070001,NA,NA,NA,NA,44.3416933,-110.2771078,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20040913172503^01,Field Msr/Obs,WATER,NA,9/13/2004,17:25:00,MDT,9/14/2004,9:25:00,MDT,0.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=913041725 Organization ActivityID=YELL_2A_20040913172503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2004 23:25,9/14/2004 15:25,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20180807111002^01,Field Msr/Obs,WATER,NA,8/7/2018,11:10:00,MDT,8/8/2018,10:14:00,MDT,1.88,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Organization ActivityID=YELL_YSL_077_20180807111002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:10,8/8/2018 16:14,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20140806110901^01,Field Msr/Obs,WATER,NA,8/6/2014,11:09:00,MDT,8/7/2014,8:20:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0806141109 Organization ActivityID=YELL_YSL_058_20140806110901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 17:09,8/7/2014 14:20,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20120814123906^01,Field Msr/Obs,WATER,NA,8/14/2012,12:39:00,MDT,8/15/2012,7:58:00,MDT,40.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,No Fish Orig ID=0814121239 Organization ActivityID=YELL_YSL_091_20120814123906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 18:39,8/15/2012 13:58,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20190803120505^01,Field Msr/Obs,WATER,NA,8/3/2019,12:05:00,MDT,8/4/2019,9:27:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,small end to shore Organization ActivityID=YELL_YSL_077_20190803120505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 18:05,8/4/2019 15:27,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202008031117_00^01,Field Msr/Obs,WATER,NA,8/3/2020,11:17:00,MDT,8/4/2020,8:31:00,MDT,38.06,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: Small ETS|4017|21|544408|4920936|544478|4920971 Organization ActivityID=YELL_YSL_163_202008031117_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 17:17,8/4/2020 14:31,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20061004173004^01,Field Msr/Obs,WATER,NA,10/4/2006,17:30:00,MDT,10/5/2006,9:30:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=1004061730 Organization ActivityID=YELL_2A_20061004173004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.6,9.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 23:30,10/5/2006 15:30,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20061003194005^01,Field Msr/Obs,WATER,NA,10/3/2006,19:40:00,MDT,10/4/2006,11:40:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=1003061940 Organization ActivityID=YELL_7C_20061003194005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2006 1:40,10/4/2006 17:40,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20180802094503^01,Field Msr/Obs,WATER,NA,8/2/2018,9:45:00,MDT,8/3/2018,6:43:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,3.0 to Shore Orig ID=0802180945 Organization ActivityID=YELL_YSL_041_20180802094503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 15:45,8/3/2018 12:43,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_004_20100816160006^01,Field Msr/Obs,WATER,NA,8/16/2010,16:00:00,MDT,8/17/2010,9:07:00,MDT,42.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_004,No Fish Caught Orig ID=0816101600 Organization ActivityID=YELL_YSL_004_20100816160006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 22:00,8/17/2010 15:07,Yellowstone Lake Shoreline KM 4,Lake,Station located on the southeast corner of West Thumb of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_202008050915_00^01,Field Msr/Obs,WATER,NA,8/5/2020,9:15:00,MDT,8/6/2020,7:00:00,MDT,40.05,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,"Activity Net, Buoy, Start/End UTMs: Large ETS|2024|14|537102|4916596|537044|4916652 Organization ActivityID=YELL_YSL_009_202008050915_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 15:15,8/6/2020 13:00,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20190805103503^01,Field Msr/Obs,WATER,NA,8/5/2019,10:35:00,MDT,8/6/2019,7:41:00,MDT,9.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,small end to shore Organization ActivityID=YELL_YSL_168_20190805103503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 16:35,8/6/2019 13:41,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20180807114103^01,Field Msr/Obs,WATER,NA,8/7/2018,11:41:00,MDT,8/8/2018,9:35:00,MDT,10.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Organization ActivityID=YELL_YSL_210_20180807114103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:41,8/8/2018 15:35,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20190805125203^01,Field Msr/Obs,WATER,NA,8/5/2019,12:52:00,MDT,8/6/2019,8:28:00,MDT,30.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,small end to shore Organization ActivityID=YELL_YSL_144_20190805125203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 18:52,8/6/2019 14:28,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_061_20100819175001^01,Field Msr/Obs,WATER,NA,8/19/2010,17:50:00,MDT,8/20/2010,8:51:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_061,Orig ID=0819101750 Organization ActivityID=YELL_YSL_061_20100819175001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 23:50,8/20/2010 14:51,Yellowstone Lake Shoreline KM 61,Lake,This site is located on the south east corner of the West Thumb area of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.5486839,-110.3367893,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20120919102005^01,Field Msr/Obs,WATER,NA,9/19/2012,10:20:00,MDT,9/20/2012,8:23:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0919121020 Organization ActivityID=YELL_2B_20120919102005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 16:20,9/20/2012 14:23,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20110808085304^01,Field Msr/Obs,WATER,NA,8/8/2011,8:53:00,MDT,8/9/2011,8:05:00,MDT,23.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,No Fish Orig ID=0808110853 Organization ActivityID=YELL_YSL_171_20110808085304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 14:53,8/9/2011 14:05,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20140804110802^01,Field Msr/Obs,WATER,NA,8/4/2014,11:08:00,MDT,8/5/2014,8:28:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804141108 Organization ActivityID=YELL_YSL_163_20140804110802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:08,8/5/2014 14:28,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20110808101504^01,Field Msr/Obs,WATER,NA,8/8/2011,10:15:00,MDT,8/9/2011,10:47:00,MDT,24,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,No Fish Orig ID=0808111015 Organization ActivityID=YELL_YSL_158_20110808101504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 16:15,8/9/2011 16:47,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20190803112306^01,Field Msr/Obs,WATER,NA,8/3/2019,11:23:00,MDT,8/4/2019,8:09:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,small end to shore Organization ActivityID=YELL_YSL_177_20190803112306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:23,8/4/2019 14:09,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20140802122906^01,Field Msr/Obs,WATER,NA,8/2/2014,12:29:00,MDT,8/3/2014,9:50:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,No Fish; Mesh 0.75 towards shore Orig ID=0802141229 Organization ActivityID=YELL_YSL_009_20140802122906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 18:29,8/3/2014 15:50,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_182_20180807105103^01,Field Msr/Obs,WATER,NA,8/7/2018,10:51:00,MDT,8/8/2018,7:51:00,MDT,10.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_182,Organization ActivityID=YELL_YSL_182_20180807105103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 16:51,8/8/2018 13:51,Yellowstone Lake Shoreline KM 182,Lake,This site is located in the South East Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.33109,-110.21466,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20050921200505^01,Field Msr/Obs,WATER,NA,9/21/2005,20:05:00,MDT,9/22/2005,12:05:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=921052005 Organization ActivityID=YELL_6C_20050921200505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 2:05,9/22/2005 18:05,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20170807141504^01,Field Msr/Obs,WATER,NA,8/7/2017,14:15:00,MDT,8/8/2017,10:01:00,MDT,11.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Orig ID=0807171415 Organization ActivityID=YELL_YSL_212_20170807141504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 20:15,8/8/2017 16:01,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20050921203005^01,Field Msr/Obs,WATER,NA,9/21/2005,20:30:00,MDT,9/22/2005,12:30:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=921052030 Organization ActivityID=YELL_7C_20050921203005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 2:30,9/22/2005 18:30,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20180804103803^01,Field Msr/Obs,WATER,NA,8/4/2018,10:38:00,MDT,8/5/2018,9:16:00,MDT,9.41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Organization ActivityID=YELL_YSL_171_20180804103803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:38,8/5/2018 15:16,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20040915161504^01,Field Msr/Obs,WATER,NA,9/15/2004,16:15:00,MDT,9/17/2004,8:15:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915041615 Organization ActivityID=YELL_1A_20040915161504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:15,9/17/2004 14:15,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20190805140906^01,Field Msr/Obs,WATER,NA,8/5/2019,14:09:00,MDT,8/6/2019,10:14:00,MDT,36.46,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,large end to shore Organization ActivityID=YELL_YSL_148_20190805140906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 20:09,8/6/2019 16:14,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20170803113104^01,Field Msr/Obs,WATER,NA,8/3/2017,11:31:00,MDT,8/4/2017,9:55:00,MDT,8.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,no fish Orig ID=0803171131 Organization ActivityID=YELL_YSL_003_20170803113104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:31,8/4/2017 15:55,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20180806110101^01,Field Msr/Obs,WATER,NA,8/6/2018,11:01:00,MDT,8/7/2018,7:47:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Organization ActivityID=YELL_YSL_089_20180806110101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:01,8/7/2018 13:47,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20140806123205^01,Field Msr/Obs,WATER,NA,8/6/2014,12:32:00,MDT,8/7/2014,9:07:00,MDT,43.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0806141232 Organization ActivityID=YELL_YSL_052_20140806123205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 18:32,8/7/2014 15:07,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202008050955_00^01,Field Msr/Obs,WATER,NA,8/5/2020,9:55:00,MDT,8/6/2020,8:58:00,MDT,15.05,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: Large ETS|4012|20|535465|4915929|535478|4916007 Organization ActivityID=YELL_YSL_012_202008050955_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 15:55,8/6/2020 14:58,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20170802114606^01,Field Msr/Obs,WATER,NA,8/2/2017,11:46:00,MDT,8/3/2017,8:00:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,no fish Orig ID=0802171146 Organization ActivityID=YELL_YSL_058_20170802114606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:46,8/3/2017 14:00,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20140805132004^01,Field Msr/Obs,WATER,NA,8/5/2014,13:20:00,MDT,8/6/2014,7:46:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0805141320 Organization ActivityID=YELL_YSL_045_20140805132004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 19:20,8/6/2014 13:46,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20120919095204^01,Field Msr/Obs,WATER,NA,9/19/2012,9:52:00,MDT,9/20/2012,7:24:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=0919120952 Organization ActivityID=YELL_2A_20120919095204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 15:52,9/20/2012 13:24,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20190805123002^01,Field Msr/Obs,WATER,NA,8/5/2019,12:30:00,MDT,8/6/2019,8:04:00,MDT,2.09,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,small end to shore Organization ActivityID=YELL_YSL_144_20190805123002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 18:30,8/6/2019 14:04,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20170801104006^01,Field Msr/Obs,WATER,NA,8/1/2017,10:40:00,MDT,8/2/2017,9:37:00,MDT,36.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,No Fish Orig ID=0801171040 Organization ActivityID=YELL_YSL_029_20170801104006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 16:40,8/2/2017 15:37,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202108031441_00^01,Field Msr/Obs,WATER,NA,8/3/2021,14:41:00,MDT,8/4/2021,9:29:00,MDT,39.66,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|4017|5|544504|4920322|544567|4920319 Organization ActivityID=YELL_YSL_163_202108031441_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 20:41,8/4/2021 15:29,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20150807095703^01,Field Msr/Obs,WATER,NA,8/7/2015,9:57:00,MDT,8/8/2015,7:17:00,MDT,44.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Orig ID=0807150957 Organization ActivityID=YELL_YSL_027_20150807095703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 15:57,8/8/2015 13:17,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20110809093503^01,Field Msr/Obs,WATER,NA,8/9/2011,9:35:00,MDT,8/10/2011,8:09:00,MDT,22,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0809110935 Organization ActivityID=YELL_YSL_153_20110809093503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 15:35,8/10/2011 14:09,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20180801105006^01,Field Msr/Obs,WATER,NA,8/1/2018,10:50:00,MDT,8/2/2018,10:14:00,MDT,41.06,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,2.225 to Shore; No Fish Orig ID=0801181050 Organization ActivityID=YELL_YSL_009_20180801105006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:50,8/2/2018 16:14,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20190802125603^01,Field Msr/Obs,WATER,NA,8/2/2019,12:56:00,MDT,8/3/2019,10:16:00,MDT,14,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,large to shore Organization ActivityID=YELL_YSL_021_20190802125603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 18:56,8/3/2019 16:16,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_210_20170807122404^01,Field Msr/Obs,WATER,NA,8/7/2017,12:24:00,MDT,8/8/2017,10:02:00,MDT,9.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_210,Orig ID=0807171224 Organization ActivityID=YELL_YSL_210_20170807122404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 18:24,8/8/2017 16:02,Yellowstone Lake Shoreline KM 210,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone.,10070001,NA,NA,NA,NA,44.32486,-110.274332,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20170805102901^01,Field Msr/Obs,WATER,NA,8/5/2017,10:29:00,MDT,8/6/2017,7:33:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0805171029 Organization ActivityID=YELL_YSL_148_20170805102901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:29,8/6/2017 13:33,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202108021243_00^01,Field Msr/Obs,WATER,NA,8/2/2021,12:43:00,MDT,8/3/2021,12:36:00,MDT,1.46,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|2029|15|546281|4919286|546364|4919332 Organization ActivityID=YELL_YSL_158_202108021243_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 18:43,8/3/2021 18:36,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20120808132703^01,Field Msr/Obs,WATER,NA,8/8/2012,13:27:00,MDT,8/9/2012,9:01:00,MDT,11.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0808121327 Organization ActivityID=YELL_YSL_025_20120808132703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 19:27,8/9/2012 15:01,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20170807131002^01,Field Msr/Obs,WATER,NA,8/7/2017,13:10:00,MDT,8/8/2017,8:15:00,MDT,0.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,"no fish, 2 goldeneyes Orig ID=0807171310 Organization ActivityID=YELL_YSL_190_20170807131002",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:10,8/8/2017 14:15,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20140805115903^01,Field Msr/Obs,WATER,NA,8/5/2014,11:59:00,MDT,8/6/2014,8:27:00,MDT,9.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805141159 Organization ActivityID=YELL_YSL_067_20140805115903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 17:59,8/6/2014 14:27,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20120815154305^01,Field Msr/Obs,WATER,NA,8/15/2012,15:43:00,MDT,8/16/2012,9:29:00,MDT,29.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0815121543 Organization ActivityID=YELL_YSL_128_20120815154305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2012 21:43,8/16/2012 15:29,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20170806112501^01,Field Msr/Obs,WATER,NA,8/6/2017,11:25:00,MDT,8/7/2017,10:53:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Orig ID=0806171125 Organization ActivityID=YELL_YSL_120_20170806112501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 17:25,8/7/2017 16:53,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20110915182905^01,Field Msr/Obs,WATER,NA,9/15/2011,18:29:00,MDT,9/16/2011,13:30:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915111829 Organization ActivityID=YELL_1A_20110915182905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2011 0:29,9/16/2011 19:30,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_202108051011_00^01,Field Msr/Obs,WATER,NA,8/5/2021,10:11:00,MDT,8/6/2021,8:25:00,MDT,38.67,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|4016|11|534394|4919917|534446|4919994 Organization ActivityID=YELL_YSL_021_202108051011_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 16:11,8/6/2021 14:25,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20190803120104^01,Field Msr/Obs,WATER,NA,8/3/2019,12:01:00,MDT,8/4/2019,9:13:00,MDT,14.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,large end to shore Organization ActivityID=YELL_YSL_077_20190803120104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 18:01,8/4/2019 15:13,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20150807104805^01,Field Msr/Obs,WATER,NA,8/7/2015,10:48:00,MDT,8/8/2015,7:14:00,MDT,38.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0807151048 Organization ActivityID=YELL_YSL_041_20150807104805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 16:48,8/8/2015 13:14,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20180801091902^01,Field Msr/Obs,WATER,NA,8/1/2018,9:19:00,MDT,8/2/2018,7:17:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,3.0 to shore Orig ID=0801180919 Organization ActivityID=YELL_YSL_023_20180801091902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:19,8/2/2018 13:17,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20100817181601^01,Field Msr/Obs,WATER,NA,8/17/2010,18:16:00,MDT,8/18/2010,9:44:00,MDT,7.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,one YCT dropped from 2 inch mesh Orig ID=0817101816 Organization ActivityID=YELL_YSL_153_20100817181601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 0:16,8/18/2010 15:44,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20140807112201^01,Field Msr/Obs,WATER,NA,8/7/2014,11:22:00,MDT,8/8/2014,11:17:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0807141122 Organization ActivityID=YELL_YSL_121_20140807112201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:22,8/8/2014 17:17,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20180806114501^01,Field Msr/Obs,WATER,NA,8/6/2018,11:45:00,MDT,8/7/2018,9:09:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Organization ActivityID=YELL_YSL_091_20180806114501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:45,8/7/2018 15:09,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20100810162006^01,Field Msr/Obs,WATER,NA,8/10/2010,16:20:00,MDT,8/11/2010,8:45:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0810101620 Organization ActivityID=YELL_YSL_029_20100810162006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 22:20,8/11/2010 14:45,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202108011029_00^01,Field Msr/Obs,WATER,NA,8/1/2021,10:29:00,MDT,8/2/2021,10:30:00,MDT,9.04,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|2027|19|551906|4914042|552002|4914059 Organization ActivityID=YELL_YSL_128_202108011029_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 16:29,8/2/2021 16:30,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20120917102005^01,Field Msr/Obs,WATER,NA,9/17/2012,10:20:00,MDT,9/18/2012,9:31:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917121020 Organization ActivityID=YELL_3A_20120917102005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 16:20,9/18/2012 15:31,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20190801094504^01,Field Msr/Obs,WATER,NA,8/1/2019,9:45:00,MDT,8/2/2019,9:01:00,MDT,13.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,large end to shore Organization ActivityID=YELL_YSL_042_20190801094504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 15:45,8/2/2019 15:01,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20170804113106^01,Field Msr/Obs,WATER,NA,8/4/2017,11:31:00,MDT,8/5/2017,8:27:00,MDT,39.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804171131 Organization ActivityID=YELL_YSL_163_20170804113106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 17:31,8/5/2017 14:27,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20170802122304^01,Field Msr/Obs,WATER,NA,8/2/2017,12:23:00,MDT,8/3/2017,9:25:00,MDT,27.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,no fish Orig ID=0802171223 Organization ActivityID=YELL_YSL_021_20170802122304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:23,8/3/2017 15:25,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_024_20100810164606^01,Field Msr/Obs,WATER,NA,8/10/2010,16:46:00,MDT,8/11/2010,9:15:00,MDT,42.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_024,No fish caught Orig ID=0810101646 Organization ActivityID=YELL_YSL_024_20100810164606,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 22:46,8/11/2010 15:15,Yellowstone Lake Shoreline KM 24,Lake,Station 24 is located in the West Thumb portion of Yellowstone Lake along the western shoreline near the vicinity of Carrington Island.,10070001,NA,NA,NA,NA,44.4562099,-110.5580606,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20140803105202^01,Field Msr/Obs,WATER,NA,8/3/2014,10:52:00,MDT,8/4/2014,7:36:00,MDT,11.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803141052 Organization ActivityID=YELL_YSL_080_20140803105202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 16:52,8/4/2014 13:36,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202008061007_00^01,Field Msr/Obs,WATER,NA,8/6/2020,10:07:00,MDT,8/7/2020,6:30:00,MDT,13.03,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: Small ETS|4013|19|535558|4922534|535661|4922537 Organization ActivityID=YELL_YSL_023_202008061007_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2020 16:07,8/7/2020 12:30,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20061001171005^01,Field Msr/Obs,WATER,NA,10/1/2006,17:10:00,MDT,10/2/2006,9:10:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=1001061710 Organization ActivityID=YELL_1C_20061001171005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/1/2006 23:10,10/2/2006 15:10,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20110801133104^01,Field Msr/Obs,WATER,NA,8/1/2011,13:31:00,MDT,8/2/2011,13:18:00,MDT,23.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,No Fish Orig ID=0801111331 Organization ActivityID=YELL_YSL_065_20110801133104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 19:31,8/2/2011 19:18,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20190804123206^01,Field Msr/Obs,WATER,NA,8/4/2019,12:32:00,MDT,8/5/2019,11:40:00,MDT,32.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,small end to shore Organization ActivityID=YELL_YSL_158_20190804123206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 18:32,8/5/2019 17:40,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20040913184504^01,Field Msr/Obs,WATER,NA,9/13/2004,18:45:00,MDT,9/14/2004,10:45:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=913041845 Organization ActivityID=YELL_3B_20040913184504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:45,9/14/2004 16:45,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20100916161201^01,Field Msr/Obs,WATER,NA,9/16/2010,16:12:00,MDT,9/17/2010,7:48:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=091813171618 Organization ActivityID=YELL_3B_20100916161201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 22:12,9/17/2010 13:48,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20050920185005^01,Field Msr/Obs,WATER,NA,9/20/2005,18:50:00,MDT,9/21/2005,10:50:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=920051850 Organization ActivityID=YELL_3B_20050920185005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 0:50,9/21/2005 16:50,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20190805112503^01,Field Msr/Obs,WATER,NA,8/5/2019,11:25:00,MDT,8/6/2019,9:07:00,MDT,15,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,large end to shore Organization ActivityID=YELL_YSL_171_20190805112503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:25,8/6/2019 15:07,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20061002185501^01,Field Msr/Obs,WATER,NA,10/2/2006,18:55:00,MDT,10/3/2006,10:55:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=1002061855 Organization ActivityID=YELL_4B_20061002185501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 0:55,10/3/2006 16:55,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20110801115106^01,Field Msr/Obs,WATER,NA,8/1/2011,11:51:00,MDT,8/2/2011,8:30:00,MDT,46.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0801111151 Organization ActivityID=YELL_YSL_058_20110801115106,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 17:51,8/2/2011 14:30,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20190805114306^01,Field Msr/Obs,WATER,NA,8/5/2019,11:43:00,MDT,8/6/2019,9:37:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,large end to shore Organization ActivityID=YELL_YSL_171_20190805114306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 17:43,8/6/2019 15:37,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202108051037_00^01,Field Msr/Obs,WATER,NA,8/5/2021,10:37:00,MDT,8/6/2021,9:09:00,MDT,7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|2026|23|535475|4922494|535535|4922446 Organization ActivityID=YELL_YSL_023_202108051037_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 16:37,8/6/2021 15:09,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_154_20100809175402^01,Field Msr/Obs,WATER,NA,8/9/2010,17:54:00,MDT,8/10/2010,8:42:00,MDT,6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_154,1 fish dropped at 2.5 inch mesh Orig ID=0809101754 Organization ActivityID=YELL_YSL_154_20100809175402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 23:54,8/10/2010 14:42,Yellowstone Lake Shoreline KM 154,Lake,This site is located within the main basin of Yellowstone Lake within region 2. It is located southwest of Frank Island on the western shoreline of the lake.,10070001,NA,NA,NA,NA,44.4068074,-110.4040786,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20120808131904^01,Field Msr/Obs,WATER,NA,8/8/2012,13:19:00,MDT,8/9/2012,8:53:00,MDT,13.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0808121319 Organization ActivityID=YELL_YSL_025_20120808131904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 19:19,8/9/2012 14:53,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_106_20100803173501^01,Field Msr/Obs,WATER,NA,8/3/2010,17:35:00,MDT,8/4/2010,9:55:00,MDT,5.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_106,Orig ID=0803101735 Organization ActivityID=YELL_YSL_106_20100803173501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 23:35,8/4/2010 15:55,Yellowstone Lake Shoreline KM 106,Lake,This station is located in the South Arm of Yellowstone Lake along the east shore approximately one fourth the way between the main lake basin and the non-motorized zone.,10070001,NA,NA,NA,NA,44.3777623,-110.2979164,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_202108010919_00^01,Field Msr/Obs,WATER,NA,8/1/2021,9:19:00,MDT,8/2/2021,9:01:00,MDT,7.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|4013|9|551896|4908959|551987|4909004 Organization ActivityID=YELL_YSL_120_202108010919_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 15:19,8/2/2021 15:01,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20050922172503^01,Field Msr/Obs,WATER,NA,9/22/2005,17:25:00,MDT,9/23/2005,9:25:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=922051725 Organization ActivityID=YELL_2A_20050922172503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 23:25,9/23/2005 15:25,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20170806103007^01,Field Msr/Obs,WATER,NA,8/6/2017,10:30:00,MDT,8/7/2017,10:30:00,MDT,39.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,no fish Orig ID=0806171030 Organization ActivityID=YELL_YSL_089_20170806103007,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:30,8/7/2017 16:30,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20140807105104^01,Field Msr/Obs,WATER,NA,8/7/2014,10:51:00,MDT,8/8/2014,7:40:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0807141051 Organization ActivityID=YELL_YSL_115_20140807105104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 16:51,8/8/2014 13:40,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20170802113305^01,Field Msr/Obs,WATER,NA,8/2/2017,11:33:00,MDT,8/3/2017,8:31:00,MDT,38.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0802171133 Organization ActivityID=YELL_YSL_023_20170802113305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:33,8/3/2017 14:31,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20100914152705^01,Field Msr/Obs,WATER,NA,9/14/2010,15:27:00,MDT,9/15/2010,8:14:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=0914101527 Organization ActivityID=YELL_2A_20100914152705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:27,9/15/2010 14:14,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20040913172002^01,Field Msr/Obs,WATER,NA,9/13/2004,17:20:00,MDT,9/14/2004,9:20:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=913041720 Organization ActivityID=YELL_2A_20040913172002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2004 23:20,9/14/2004 15:20,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20120809104103^01,Field Msr/Obs,WATER,NA,8/9/2012,10:41:00,MDT,8/10/2012,7:43:00,MDT,11.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0809121041 Organization ActivityID=YELL_YSL_041_20120809104103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 16:41,8/10/2012 13:43,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20100802181306^01,Field Msr/Obs,WATER,NA,8/2/2010,18:13:00,MDT,8/3/2010,9:38:00,MDT,43.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0802101813 Organization ActivityID=YELL_YSL_052_20100802181306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 0:13,8/3/2010 15:38,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20040916195503^01,Field Msr/Obs,WATER,NA,9/16/2004,19:55:00,MDT,9/17/2004,11:55:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=916041955 Organization ActivityID=YELL_6C_20040916195503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 1:55,9/17/2004 17:55,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20110802141201^01,Field Msr/Obs,WATER,NA,8/2/2011,14:12:00,MDT,8/3/2011,11:27:00,MDT,4.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0802111412 Organization ActivityID=YELL_YSL_077_20110802141201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 20:12,8/3/2011 17:27,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20180805102601^01,Field Msr/Obs,WATER,NA,8/5/2018,10:26:00,MDT,8/6/2018,8:40:00,MDT,2.09,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Organization ActivityID=YELL_YSL_144_20180805102601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 16:26,8/6/2018 14:40,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20120808103604^01,Field Msr/Obs,WATER,NA,8/8/2012,10:36:00,MDT,8/9/2012,7:48:00,MDT,17,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0808121036 Organization ActivityID=YELL_YSL_023_20120808103604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 16:36,8/9/2012 13:48,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20140805122202^01,Field Msr/Obs,WATER,NA,8/5/2014,12:22:00,MDT,8/6/2014,10:17:00,MDT,7.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0805141222 Organization ActivityID=YELL_YSL_041_20140805122202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:22,8/6/2014 16:17,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_150_20100809170504^01,Field Msr/Obs,WATER,NA,8/9/2010,17:05:00,MDT,8/10/2010,10:01:00,MDT,17.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_150,Orig ID=0809101705 Organization ActivityID=YELL_YSL_150_20100809170504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 23:05,8/10/2010 16:01,Yellowstone Lake Shoreline KM 150,Lake,This station is located in region 2 near the north and west side of Flat Mountain Arm of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20170803101602^01,Field Msr/Obs,WATER,NA,8/3/2017,10:16:00,MDT,8/4/2017,10:30:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0803171016 Organization ActivityID=YELL_YSL_077_20170803101602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:16,8/4/2017 16:30,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_013_20100816151202^01,Field Msr/Obs,WATER,NA,8/16/2010,15:12:00,MDT,8/17/2010,8:53:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_013,one YCT and two LKT escaped Orig ID=0816101512 Organization ActivityID=YELL_YSL_013_20100816151202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 21:12,8/17/2010 14:53,Yellowstone Lake Shoreline KM 13,Lake,This site is located in the West Thumb of Yellowstone Lake within region 1 near the West Thumb Geyser Basin.,10070001,NA,NA,NA,NA,44.3955718,-110.5587041,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20110808082501^01,Field Msr/Obs,WATER,NA,8/8/2011,8:25:00,MDT,8/9/2011,8:12:00,MDT,7.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0808110825 Organization ActivityID=YELL_YSL_171_20110808082501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 14:25,8/9/2011 14:12,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20110810121706^01,Field Msr/Obs,WATER,NA,8/10/2011,12:17:00,MDT,8/11/2011,9:42:00,MDT,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,No Fish Orig ID=0810111217 Organization ActivityID=YELL_YSL_012_20110810121706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 18:17,8/11/2011 15:42,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20170801114103^01,Field Msr/Obs,WATER,NA,8/1/2017,11:41:00,MDT,8/2/2017,10:19:00,MDT,30.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Orig ID=0801171141 Organization ActivityID=YELL_YSL_027_20170801114103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 17:41,8/2/2017 16:19,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20140804113001^01,Field Msr/Obs,WATER,NA,8/4/2014,11:30:00,MDT,8/5/2014,11:03:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0804141130 Organization ActivityID=YELL_YSL_077_20140804113001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 17:30,8/5/2014 17:03,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20150802111305^01,Field Msr/Obs,WATER,NA,8/2/2015,11:13:00,MDT,8/3/2015,10:01:00,MDT,41.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,"Small mesh towards shore. Loons seen over 40 m of water, 100 yards north of net site. Orig ID=0802151113 Organization ActivityID=YELL_YSL_120_20150802111305",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:13,8/3/2015 16:01,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20150803131005^01,Field Msr/Obs,WATER,NA,8/3/2015,13:10:00,MDT,8/4/2015,8:46:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803151310 Organization ActivityID=YELL_YSL_080_20150803131005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 19:10,8/4/2015 14:46,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20130802152605^01,Field Msr/Obs,WATER,NA,8/2/2013,15:26:00,MDT,8/3/2013,12:02:00,MDT,28,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,no fish Orig ID=0802131526 Organization ActivityID=YELL_YSL_144_20130802152605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 21:26,8/3/2013 18:02,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_016_20100811161202^01,Field Msr/Obs,WATER,NA,8/11/2010,16:12:00,MDT,8/12/2010,10:39:00,MDT,3.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_016,Orig ID=0811101612 Organization ActivityID=YELL_YSL_016_20100811161202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 22:12,8/12/2010 16:39,Yellowstone Lake Shoreline KM 16,Lake,This station is located in the West Thumb portion of Yellowstone Lake primarily on the western shoreline but in the southwest corner of West Thumb approximately 2km north of the West Thumb geyser basin.,10070001,NA,NA,NA,NA,44.4002273,-110.5615431,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20110801110001^01,Field Msr/Obs,WATER,NA,8/1/2011,11:00:00,MDT,8/2/2011,14:30:00,MDT,12.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Activity code was changed from 0801111110 to 0801111100 Orig ID=0801111100 Organization ActivityID=YELL_YSL_041_20110801110001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 17:00,8/2/2011 20:30,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20180801104703^01,Field Msr/Obs,WATER,NA,8/1/2018,10:47:00,MDT,8/2/2018,9:13:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,2.0 to Shore; No Fish Orig ID=0801181047 Organization ActivityID=YELL_YSL_025_20180801104703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:47,8/2/2018 15:13,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20140805120706^01,Field Msr/Obs,WATER,NA,8/5/2014,12:07:00,MDT,8/6/2014,8:01:00,MDT,44.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,NO FISH Orig ID=0805141207 Organization ActivityID=YELL_YSL_067_20140805120706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 18:07,8/6/2014 14:01,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20130917145805^01,Field Msr/Obs,WATER,NA,9/17/2013,14:58:00,MDT,9/18/2013,9:49:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917131458 Organization ActivityID=YELL_3A_20130917145805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2013 20:58,9/18/2013 15:49,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_202008010913_00^01,Field Msr/Obs,WATER,NA,8/1/2020,9:13:00,MDT,8/2/2020,7:57:00,MDT,2.45,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,"Activity Net, Buoy, Start/End UTMs: Large ETS|2020|16|551464|4908948|551533|4908997 Organization ActivityID=YELL_YSL_121_202008010913_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 15:13,8/2/2020 13:57,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20120807103806^01,Field Msr/Obs,WATER,NA,8/7/2012,10:38:00,MDT,8/8/2012,8:02:00,MDT,35.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,No Fish Orig ID=0807121038 Organization ActivityID=YELL_YSL_006_20120807103806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:38,8/8/2012 14:02,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20190804101102^01,Field Msr/Obs,WATER,NA,8/4/2019,10:11:00,MDT,8/5/2019,7:27:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,small end to shore Organization ActivityID=YELL_YSL_080_20190804101102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 16:11,8/5/2019 13:27,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_150_20100809171305^01,Field Msr/Obs,WATER,NA,8/9/2010,17:13:00,MDT,8/10/2010,9:05:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_150,Orig ID=0809101713 Organization ActivityID=YELL_YSL_150_20100809171305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 23:13,8/10/2010 15:05,Yellowstone Lake Shoreline KM 150,Lake,This station is located in region 2 near the north and west side of Flat Mountain Arm of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20120807170202^01,Field Msr/Obs,WATER,NA,8/7/2012,17:02:00,MDT,8/8/2012,12:31:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Logger 7 Orig ID=0807121702 Organization ActivityID=YELL_YSL_003_20120807170202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 23:02,8/8/2012 18:31,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20150805130305^01,Field Msr/Obs,WATER,NA,8/5/2015,13:03:00,MDT,8/6/2015,11:37:00,MDT,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0805151303 Organization ActivityID=YELL_YSL_012_20150805130305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 19:03,8/6/2015 17:37,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20130802145801^01,Field Msr/Obs,WATER,NA,8/2/2013,14:58:00,MDT,8/3/2013,12:36:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0802131458 Organization ActivityID=YELL_YSL_144_20130802145801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:58,8/3/2013 18:36,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20170803101001^01,Field Msr/Obs,WATER,NA,8/3/2017,10:10:00,MDT,8/4/2017,10:14:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0803171010 Organization ActivityID=YELL_YSL_077_20170803101001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:10,8/4/2017 16:14,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20180805111805^01,Field Msr/Obs,WATER,NA,8/5/2018,11:18:00,MDT,8/6/2018,10:14:00,MDT,41.78,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Organization ActivityID=YELL_YSL_128_20180805111805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:18,8/6/2018 16:14,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_150_20100809152602^01,Field Msr/Obs,WATER,NA,8/9/2010,15:26:00,MDT,8/10/2010,9:41:00,MDT,4.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_150,1 YCT dropped from 2.25 inch mesh; 2 LKT dropped from 3 inch mesh. Orig ID=0809101626 Organization ActivityID=YELL_YSL_150_20100809152602,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2010 21:26,8/10/2010 15:41,Yellowstone Lake Shoreline KM 150,Lake,This station is located in region 2 near the north and west side of Flat Mountain Arm of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20190801102004^01,Field Msr/Obs,WATER,NA,8/1/2019,10:20:00,MDT,8/2/2019,9:26:00,MDT,14.04,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,large to shore Organization ActivityID=YELL_YSL_029_20190801102004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 16:20,8/2/2019 15:26,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20120808134805^01,Field Msr/Obs,WATER,NA,8/8/2012,13:48:00,MDT,8/9/2012,8:39:00,MDT,34.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0808121348 Organization ActivityID=YELL_YSL_025_20120808134805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 19:48,8/9/2012 14:39,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20120806140606^01,Field Msr/Obs,WATER,NA,8/6/2012,14:06:00,MDT,8/7/2012,10:57:00,MDT,35.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,No Fish Orig ID=0806121406 Organization ActivityID=YELL_YSL_012_20120806140606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 20:06,8/7/2012 16:57,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202008021021_00^01,Field Msr/Obs,WATER,NA,8/2/2020,10:21:00,MDT,8/3/2020,6:54:00,MDT,13.69,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: Large ETS|4012|17|552203|4914216|552292|4914228 Organization ActivityID=YELL_YSL_128_202008021021_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 16:21,8/3/2020 12:54,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20100914152404^01,Field Msr/Obs,WATER,NA,9/14/2010,15:24:00,MDT,9/15/2010,8:08:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=0914101524 Organization ActivityID=YELL_2A_20100914152404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:24,9/15/2010 14:08,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20110802121605^01,Field Msr/Obs,WATER,NA,8/2/2011,12:16:00,MDT,8/3/2011,7:30:00,MDT,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Alternate Site Orig ID=0802111216 Organization ActivityID=YELL_YSL_052_20110802121605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 18:16,8/3/2011 13:30,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20190803131005^01,Field Msr/Obs,WATER,NA,8/3/2019,13:10:00,MDT,8/4/2019,10:12:00,MDT,35,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,small to shore Organization ActivityID=YELL_YSL_003_20190803131005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 19:10,8/4/2019 16:12,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_202008050905_00^01,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MDT,8/6/2020,6:52:00,MDT,12.32,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,"Activity Net, Buoy, Start/End UTMs: Large ETS|2026|21|537276|4915700|536275|4915786 Organization ActivityID=YELL_YSL_009_202008050905_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 15:05,8/6/2020 12:52,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20120919113302^01,Field Msr/Obs,WATER,NA,9/19/2012,11:33:00,MDT,9/20/2012,9:38:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0919121133 Organization ActivityID=YELL_7C_20120919113302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 17:33,9/20/2012 15:38,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20100913175705^01,Field Msr/Obs,WATER,NA,9/13/2010,17:57:00,MDT,9/14/2010,8:35:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0913101757 Organization ActivityID=YELL_4A_20100913175705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 23:57,9/14/2010 14:35,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20170801111501^01,Field Msr/Obs,WATER,NA,8/1/2017,11:15:00,MDT,8/2/2017,10:05:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Orig ID=0801171115 Organization ActivityID=YELL_YSL_027_20170801111501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 17:15,8/2/2017 16:05,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20040914191505^01,Field Msr/Obs,WATER,NA,9/14/2004,19:15:00,MDT,9/15/2004,11:15:00,MDT,0.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=914041915 Organization ActivityID=YELL_4A_20040914191505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 1:15,9/15/2004 17:15,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20120919101203^01,Field Msr/Obs,WATER,NA,9/19/2012,10:12:00,MDT,9/20/2012,8:03:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0919121012 Organization ActivityID=YELL_2B_20120919101203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 16:12,9/20/2012 14:03,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_051_20100802172006^01,Field Msr/Obs,WATER,NA,8/2/2010,17:20:00,MDT,8/3/2010,8:11:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_051,Orig ID=0802101720 Organization ActivityID=YELL_YSL_051_20100802172006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2010 23:20,8/3/2010 14:11,Yellowstone Lake Shoreline KM 51,Lake,Station located on north shore of Yellowstone Lake approximately 2 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.5367389,-110.4310425,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20150801110101^01,Field Msr/Obs,WATER,NA,8/1/2015,11:01:00,MDT,8/1/2015,11:01:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=080115113001 Organization ActivityID=YELL_YSL_218_20150801110101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:01,8/1/2015 17:01,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20170801134802^01,Field Msr/Obs,WATER,NA,8/1/2017,13:48:00,MDT,8/2/2017,7:42:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0801171348 Organization ActivityID=YELL_YSL_042_20170801134802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2017 19:48,8/2/2017 13:42,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20040913171501^01,Field Msr/Obs,WATER,NA,9/13/2004,17:15:00,MDT,9/14/2004,9:15:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=913041715 Organization ActivityID=YELL_2A_20040913171501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.7,11.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2004 23:15,9/14/2004 15:15,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20180801094603^01,Field Msr/Obs,WATER,NA,8/1/2018,9:46:00,MDT,8/2/2018,8:20:00,MDT,12.08,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,0.75 to shore Orig ID=0801180946 Organization ActivityID=YELL_YSL_012_20180801094603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:46,8/2/2018 14:20,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20120917112601^01,Field Msr/Obs,WATER,NA,9/17/2012,11:26:00,MDT,9/18/2012,11:20:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0917121126 Organization ActivityID=YELL_3B_20120917112601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 17:26,9/18/2012 17:20,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20040913181503^01,Field Msr/Obs,WATER,NA,9/13/2004,18:15:00,MDT,9/14/2004,10:15:00,MDT,1.52,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=913041815 Organization ActivityID=YELL_3A_20040913181503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 0:15,9/14/2004 16:15,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20110803133905^01,Field Msr/Obs,WATER,NA,8/3/2011,13:39:00,MDT,8/4/2011,8:00:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,No Fish Orig ID=0803111339 Organization ActivityID=YELL_YSL_089_20110803133905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:39,8/4/2011 14:00,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20190803121806^01,Field Msr/Obs,WATER,NA,8/3/2019,12:18:00,MDT,8/4/2019,8:54:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,large to shore Organization ActivityID=YELL_YSL_012_20190803121806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 18:18,8/4/2019 14:54,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20120809110906^01,Field Msr/Obs,WATER,NA,8/9/2012,11:09:00,MDT,8/10/2012,7:15:00,MDT,36.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,No Fish Orig ID=0809121109 Organization ActivityID=YELL_YSL_041_20120809110906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 17:09,8/10/2012 13:15,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20110808084403^01,Field Msr/Obs,WATER,NA,8/8/2011,8:44:00,MDT,8/9/2011,8:00:00,MDT,23.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0808110844 Organization ActivityID=YELL_YSL_171_20110808084403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 14:44,8/9/2011 14:00,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20110808093701^01,Field Msr/Obs,WATER,NA,8/8/2011,9:37:00,MDT,8/9/2011,10:08:00,MDT,12.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0808110937 Organization ActivityID=YELL_YSL_128_20110808093701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.9,12.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:37,8/9/2011 16:08,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20140802105204^01,Field Msr/Obs,WATER,NA,8/2/2014,10:52:00,MDT,8/3/2014,7:50:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0802141052 Organization ActivityID=YELL_YSL_091_20140802105204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 16:52,8/3/2014 13:50,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_013_20100816152206^01,Field Msr/Obs,WATER,NA,8/16/2010,15:22:00,MDT,8/17/2010,8:42:00,MDT,43,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_013,No Fish Caught Orig ID=0816101522 Organization ActivityID=YELL_YSL_013_20100816152206,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 21:22,8/17/2010 14:42,Yellowstone Lake Shoreline KM 13,Lake,This site is located in the West Thumb of Yellowstone Lake within region 1 near the West Thumb Geyser Basin.,10070001,NA,NA,NA,NA,44.3955718,-110.5587041,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20120807172505^01,Field Msr/Obs,WATER,NA,8/7/2012,17:25:00,MDT,8/8/2012,11:16:00,MDT,34.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0807121725 Organization ActivityID=YELL_YSL_003_20120807172505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 23:25,8/8/2012 17:16,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20150805154604^01,Field Msr/Obs,WATER,NA,8/5/2015,15:46:00,MDT,8/6/2015,10:36:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0805151546 Organization ActivityID=YELL_YSL_177_20150805154604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 21:46,8/6/2015 16:36,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20120918130102^01,Field Msr/Obs,WATER,NA,9/18/2012,13:01:00,MDT,9/19/2012,7:49:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0918121301 Organization ActivityID=YELL_1B_20120918130102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 19:01,9/19/2012 13:49,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20140807113804^01,Field Msr/Obs,WATER,NA,8/7/2014,11:38:00,MDT,8/8/2014,8:39:00,MDT,11.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0807141138 Organization ActivityID=YELL_YSL_153_20140807113804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:38,8/8/2014 14:39,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20190802115506^01,Field Msr/Obs,WATER,NA,8/2/2019,11:55:00,MDT,8/3/2019,8:47:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,small end to shore Organization ActivityID=YELL_YSL_058_20190802115506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 17:55,8/3/2019 14:47,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20150803124601^01,Field Msr/Obs,WATER,NA,8/3/2015,12:46:00,MDT,8/4/2015,9:32:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803151246 Organization ActivityID=YELL_YSL_080_20150803124601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 18:46,8/4/2015 15:32,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20110801103701^01,Field Msr/Obs,WATER,NA,8/1/2011,10:37:00,MDT,8/2/2011,9:10:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0801111037 Organization ActivityID=YELL_YSL_045_20110801103701,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 16:37,8/2/2011 15:10,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20190803120805^01,Field Msr/Obs,WATER,NA,8/3/2019,12:08:00,MDT,8/4/2019,8:40:00,MDT,38,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,small to shore Organization ActivityID=YELL_YSL_012_20190803120805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 18:08,8/4/2019 14:40,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202008031121_00^01,Field Msr/Obs,WATER,NA,8/3/2020,11:21:00,MDT,8/4/2020,8:39:00,MDT,30.94,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: Large ETS|4016|16|544644|4921230|544711|4921298 Organization ActivityID=YELL_YSL_163_202008031121_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 17:21,8/4/2020 14:39,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20120807132303^01,Field Msr/Obs,WATER,NA,8/7/2012,13:23:00,MDT,8/8/2012,8:10:00,MDT,11.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,logger 15 Orig ID=0807121323 Organization ActivityID=YELL_YSL_065_20120807132303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 19:23,8/8/2012 14:10,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20120808112703^01,Field Msr/Obs,WATER,NA,8/8/2012,11:27:00,MDT,8/9/2012,10:23:00,MDT,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0808121127 Organization ActivityID=YELL_YSL_079_20120808112703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 17:27,8/9/2012 16:23,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20100812171306^01,Field Msr/Obs,WATER,NA,8/12/2010,17:13:00,MDT,8/13/2010,8:48:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,No Fish Caught Orig ID=0812101713 Organization ActivityID=YELL_YSL_128_20100812171306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 23:13,8/13/2010 14:48,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_202008010931_00^01,Field Msr/Obs,WATER,NA,8/1/2020,9:31:00,MDT,8/2/2020,8:42:00,MDT,13.32,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,"Activity Net, Buoy, Start/End UTMs: Small ETS|4013|15|551557|4909312|551637|4909363 Organization ActivityID=YELL_YSL_121_202008010931_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2020 15:31,8/2/2020 14:42,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20150802115003^01,Field Msr/Obs,WATER,NA,8/2/2015,11:50:00,MDT,8/3/2015,10:58:00,MDT,21.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,"Yellow, green. Steep contour, net deeper than ideal. Orig ID=0802151150 Organization ActivityID=YELL_YSL_101_20150802115003",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:50,8/3/2015 16:58,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20140802113003^01,Field Msr/Obs,WATER,NA,8/2/2014,11:30:00,MDT,8/3/2014,9:35:00,MDT,9.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802141130 Organization ActivityID=YELL_YSL_089_20140802113003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:30,8/3/2014 15:35,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20190807105301^01,Field Msr/Obs,WATER,NA,8/7/2019,10:53:00,MDT,8/8/2019,7:21:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,small end to shore Organization ActivityID=YELL_YSL_175_20190807105301,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2019 16:53,8/8/2019 13:21,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20190804103506^01,Field Msr/Obs,WATER,NA,8/4/2019,10:35:00,MDT,8/5/2019,8:17:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,small end to shore Organization ActivityID=YELL_YSL_080_20190804103506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 16:35,8/5/2019 14:17,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20120807115801^01,Field Msr/Obs,WATER,NA,8/7/2012,11:58:00,MDT,8/8/2012,8:54:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Logger 17 Orig ID=0807121158 Organization ActivityID=YELL_YSL_067_20120807115801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:58,8/8/2012 14:54,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20120813122602^01,Field Msr/Obs,WATER,NA,8/13/2012,12:26:00,MDT,8/14/2012,11:19:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0813121226 Organization ActivityID=YELL_YSL_209_20120813122602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 18:26,8/14/2012 17:19,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20140805133306^01,Field Msr/Obs,WATER,NA,8/5/2014,13:33:00,MDT,8/6/2014,7:30:00,MDT,32.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,NO FISH Orig ID=0805141333 Organization ActivityID=YELL_YSL_045_20140805133306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2014 19:33,8/6/2014 13:30,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20040913174001^01,Field Msr/Obs,WATER,NA,9/13/2004,17:40:00,MDT,9/14/2004,9:40:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,scales turned over Orig ID=913041740 Organization ActivityID=YELL_2B_20040913174001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2004 23:40,9/14/2004 15:40,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20150802122905^01,Field Msr/Obs,WATER,NA,8/2/2015,12:29:00,MDT,8/3/2015,13:07:00,MDT,41.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Small mesh towards shore. Orig ID=0802151229 Organization ActivityID=YELL_YSL_128_20150802122905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 18:29,8/3/2015 19:07,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20140802115302^01,Field Msr/Obs,WATER,NA,8/2/2014,11:53:00,MDT,8/3/2014,10:42:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Mesh 0.75 towards shore Orig ID=0802141153 Organization ActivityID=YELL_YSL_009_20140802115302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:53,8/3/2014 16:42,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20190801095905^01,Field Msr/Obs,WATER,NA,8/1/2019,9:59:00,MDT,8/2/2019,9:15:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Large end to shore Organization ActivityID=YELL_YSL_042_20190801095905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 15:59,8/2/2019 15:15,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20170805103604^01,Field Msr/Obs,WATER,NA,8/5/2017,10:36:00,MDT,8/6/2017,8:00:00,MDT,6.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0805171036 Organization ActivityID=YELL_YSL_168_20170805103604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:36,8/6/2017 14:00,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20180801100906^01,Field Msr/Obs,WATER,NA,8/1/2018,10:09:00,MDT,8/2/2018,8:25:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,2.25 to shore Orig ID=0801181009 Organization ActivityID=YELL_YSL_025_20180801100906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:09,8/2/2018 14:25,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20120918133002^01,Field Msr/Obs,WATER,NA,9/18/2012,13:30:00,MDT,9/19/2012,9:07:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0918121330 Organization ActivityID=YELL_1C_20120918133002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 19:30,9/19/2012 15:07,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20050922174502^01,Field Msr/Obs,WATER,NA,9/22/2005,17:45:00,MDT,9/23/2005,9:45:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=922051745 Organization ActivityID=YELL_2B_20050922174502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 23:45,9/23/2005 15:45,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20170803102403^01,Field Msr/Obs,WATER,NA,8/3/2017,10:24:00,MDT,8/4/2017,11:00:00,MDT,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0803171024 Organization ActivityID=YELL_YSL_077_20170803102403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:24,8/4/2017 17:00,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20150802105202^01,Field Msr/Obs,WATER,NA,8/2/2015,10:52:00,MDT,8/3/2015,10:02:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,"Blue, white. Orig ID=0802151052 Organization ActivityID=YELL_YSL_089_20150802105202",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 16:52,8/3/2015 16:02,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20180803104903^01,Field Msr/Obs,WATER,NA,8/3/2018,10:49:00,MDT,8/4/2018,7:07:00,MDT,6.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Organization ActivityID=YELL_YSL_052_20180803104903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:49,8/4/2018 13:07,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20040915160001^01,Field Msr/Obs,WATER,NA,9/15/2004,16:00:00,MDT,9/17/2004,8:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915041600 Organization ActivityID=YELL_1A_20040915160001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:00,9/17/2004 14:00,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20120814111206^01,Field Msr/Obs,WATER,NA,8/14/2012,11:12:00,MDT,8/15/2012,8:47:00,MDT,33.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,No Fish Orig ID=0814121112 Organization ActivityID=YELL_YSL_121_20120814111206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 17:12,8/15/2012 14:47,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20180805071506^01,Field Msr/Obs,WATER,NA,8/5/2018,7:15:00,MDT,8/6/2018,9:52:00,MDT,41.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,buoy yellow/white Organization ActivityID=YELL_YSL_080_20180805071506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 13:15,8/6/2018 15:52,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20170807133405^01,Field Msr/Obs,WATER,NA,8/7/2017,13:34:00,MDT,8/8/2017,9:04:00,MDT,38.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0807171334 Organization ActivityID=YELL_YSL_190_20170807133405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:34,8/8/2017 15:04,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20150805100106^01,Field Msr/Obs,WATER,NA,8/5/2015,10:01:00,MDT,8/6/2015,8:23:00,MDT,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,No Fish Orig ID=0805151001 Organization ActivityID=YELL_YSL_003_20150805100106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 16:01,8/6/2015 14:23,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_202108031415_00^01,Field Msr/Obs,WATER,NA,8/3/2021,14:15:00,MDT,8/4/2021,8:51:00,MDT,1.17,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|3063|9|542896|4920461|542980|4920467 Organization ActivityID=YELL_YSL_163_202108031415_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2021 20:15,8/4/2021 14:51,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20170805110106^01,Field Msr/Obs,WATER,NA,8/5/2017,11:01:00,MDT,8/6/2017,8:43:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,no fish Orig ID=0805171101 Organization ActivityID=YELL_YSL_148_20170805110106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:01,8/6/2017 14:43,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20180805103403^01,Field Msr/Obs,WATER,NA,8/5/2018,10:34:00,MDT,8/6/2018,9:04:00,MDT,23.26,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Organization ActivityID=YELL_YSL_144_20180805103403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 16:34,8/6/2018 15:04,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_202008041017_00^01,Field Msr/Obs,WATER,NA,8/4/2020,10:17:00,MDT,8/5/2020,7:52:00,MDT,8.74,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,"Activity Net, Buoy, Start/End UTMs: Large ETS|2027|19|539246|4917154|539159|4917193 Organization ActivityID=YELL_YSL_006_202008041017_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 16:17,8/5/2020 13:52,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20110802142804^01,Field Msr/Obs,WATER,NA,8/2/2011,14:28:00,MDT,8/3/2011,10:38:00,MDT,26.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,No Fish Orig ID=0802111428 Organization ActivityID=YELL_YSL_077_20110802142804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 20:28,8/3/2011 16:38,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20170805113501^01,Field Msr/Obs,WATER,NA,8/5/2017,11:35:00,MDT,8/6/2017,9:21:00,MDT,18.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0805171135 Organization ActivityID=YELL_YSL_144_20170805113501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:35,8/6/2017 15:21,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20190804101703^01,Field Msr/Obs,WATER,NA,8/4/2019,10:17:00,MDT,8/5/2019,7:45:00,MDT,13.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,small end to shore Organization ActivityID=YELL_YSL_080_20190804101703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 16:17,8/5/2019 13:45,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20110808084902^01,Field Msr/Obs,WATER,NA,8/8/2011,8:49:00,MDT,8/9/2011,7:58:00,MDT,3.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0808110849 Organization ActivityID=YELL_YSL_152_20110808084902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 14:49,8/9/2011 13:58,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20150805150803^01,Field Msr/Obs,WATER,NA,8/5/2015,15:08:00,MDT,8/6/2015,8:20:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0805151508 Organization ActivityID=YELL_YSL_077_20150805150803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 21:08,8/6/2015 14:20,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20130917151003^01,Field Msr/Obs,WATER,NA,9/17/2013,15:10:00,MDT,9/18/2013,9:24:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917131510 Organization ActivityID=YELL_3A_20130917151003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2013 21:10,9/18/2013 15:24,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20110810141201^01,Field Msr/Obs,WATER,NA,8/10/2011,14:12:00,MDT,8/11/2011,10:35:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0810111412 Organization ActivityID=YELL_YSL_025_20110810141201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 20:12,8/11/2011 16:35,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20140801103302^01,Field Msr/Obs,WATER,NA,8/1/2014,10:33:00,MDT,8/2/2014,8:40:00,MDT,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,2.25 to shore Orig ID=0801141033 Organization ActivityID=YELL_YSL_025_20140801103302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 16:33,8/2/2014 14:40,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20120917131305^01,Field Msr/Obs,WATER,NA,9/17/2012,13:13:00,MDT,9/18/2012,9:33:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0917121313 Organization ActivityID=YELL_6C_20120917131305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 19:13,9/18/2012 15:33,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20130917152301^01,Field Msr/Obs,WATER,NA,9/17/2013,15:23:00,MDT,9/18/2013,8:39:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917131523 Organization ActivityID=YELL_3A_20130917152301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2013 21:23,9/18/2013 14:39,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20180806105002^01,Field Msr/Obs,WATER,NA,8/6/2018,10:50:00,MDT,8/7/2018,7:30:00,MDT,2.34,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Organization ActivityID=YELL_YSL_121_20180806105002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 16:50,8/7/2018 13:30,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20100812160502^01,Field Msr/Obs,WATER,NA,8/12/2010,16:05:00,MDT,8/13/2010,10:07:00,MDT,5.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0812101605 Organization ActivityID=YELL_YSL_171_20100812160502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 22:05,8/13/2010 16:07,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20170805111105^01,Field Msr/Obs,WATER,NA,8/5/2017,11:11:00,MDT,8/6/2017,8:51:00,MDT,40.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0805171111 Organization ActivityID=YELL_YSL_148_20170805111105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:11,8/6/2017 14:51,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20120807101104^01,Field Msr/Obs,WATER,NA,8/7/2012,10:11:00,MDT,8/8/2012,8:46:00,MDT,12.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0807121011 Organization ActivityID=YELL_YSL_006_20120807101104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:11,8/8/2012 14:46,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20170805104904^01,Field Msr/Obs,WATER,NA,8/5/2017,10:49:00,MDT,8/6/2017,7:59:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0805171049 Organization ActivityID=YELL_YSL_148_20170805104904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:49,8/6/2017 13:59,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20100913181201^01,Field Msr/Obs,WATER,NA,9/13/2010,18:12:00,MDT,9/14/2010,8:50:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=0913101812 Organization ActivityID=YELL_4B_20100913181201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 0:12,9/14/2010 14:50,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20110808095203^01,Field Msr/Obs,WATER,NA,8/8/2011,9:52:00,MDT,8/9/2011,9:44:00,MDT,23,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0808110952 Organization ActivityID=YELL_YSL_128_20110808095203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.9,12.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:52,8/9/2011 15:44,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_013_20100816153204^01,Field Msr/Obs,WATER,NA,8/16/2010,15:32:00,MDT,8/17/2010,8:26:00,MDT,20.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_013,No Fish Caught Orig ID=0816101532 Organization ActivityID=YELL_YSL_013_20100816153204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/16/2010 21:32,8/17/2010 14:26,Yellowstone Lake Shoreline KM 13,Lake,This site is located in the West Thumb of Yellowstone Lake within region 1 near the West Thumb Geyser Basin.,10070001,NA,NA,NA,NA,44.3955718,-110.5587041,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_016_20100811164004^01,Field Msr/Obs,WATER,NA,8/11/2010,16:40:00,MDT,8/12/2010,10:02:00,MDT,21.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_016,No fish caught Orig ID=0811101640 Organization ActivityID=YELL_YSL_016_20100811164004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 22:40,8/12/2010 16:02,Yellowstone Lake Shoreline KM 16,Lake,This station is located in the West Thumb portion of Yellowstone Lake primarily on the western shoreline but in the southwest corner of West Thumb approximately 2km north of the West Thumb geyser basin.,10070001,NA,NA,NA,NA,44.4002273,-110.5615431,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20050919160001^01,Field Msr/Obs,WATER,NA,9/19/2005,16:00:00,MDT,9/20/2005,8:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=919051600 Organization ActivityID=YELL_1A_20050919160001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:00,9/20/2005 14:00,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20190802113703^01,Field Msr/Obs,WATER,NA,8/2/2019,11:37:00,MDT,8/3/2019,8:11:00,MDT,13.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,small end to shore Organization ActivityID=YELL_YSL_058_20190802113703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 17:37,8/3/2019 14:11,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_036_20100817192103^01,Field Msr/Obs,WATER,NA,8/17/2010,19:21:00,MDT,8/18/2010,8:30:00,MDT,17.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_036,4 lake trout Orig ID=0817101921 Organization ActivityID=YELL_YSL_036_20100817192103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 1:21,8/18/2010 14:30,Yellowstone Lake Shoreline KM 36,Lake,This site is located in the Breeze Channel portion of Yellowstone Lake in region 2. It is on the north shore of the channel approximately midway between Pumice and Rock points.,10070001,NA,NA,NA,NA,44.4716928,-110.4539624,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20061004181503^01,Field Msr/Obs,WATER,NA,10/4/2006,18:15:00,MDT,10/5/2006,10:15:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=1004061815 Organization ActivityID=YELL_3B_20061004181503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 0:15,10/5/2006 16:15,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20140804104303^01,Field Msr/Obs,WATER,NA,8/4/2014,10:43:00,MDT,8/5/2014,8:58:00,MDT,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804141043 Organization ActivityID=YELL_YSL_171_20140804104303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 16:43,8/5/2014 14:58,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20120814145402^01,Field Msr/Obs,WATER,NA,8/14/2012,14:54:00,MDT,8/15/2012,11:52:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0814121454 Organization ActivityID=YELL_YSL_221_20120814145402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2012 20:54,8/15/2012 17:52,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20140807102502^01,Field Msr/Obs,WATER,NA,8/7/2014,10:25:00,MDT,8/8/2014,9:40:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0807141025 Organization ActivityID=YELL_YSL_115_20140807102502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 16:25,8/8/2014 15:40,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20150805145204^01,Field Msr/Obs,WATER,NA,8/5/2015,14:52:00,MDT,8/6/2015,8:00:00,MDT,11.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0805151452 Organization ActivityID=YELL_YSL_077_20150805145204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 20:52,8/6/2015 14:00,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20150803120801^01,Field Msr/Obs,WATER,NA,8/3/2015,12:08:00,MDT,8/4/2015,7:58:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Net set through thermic line. Orig ID=0803151208 Organization ActivityID=YELL_YSL_082_20150803120801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2015 18:08,8/4/2015 13:58,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20040915164004^01,Field Msr/Obs,WATER,NA,9/15/2004,16:40:00,MDT,9/16/2004,8:40:00,MDT,1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=915041640 Organization ActivityID=YELL_1B_20040915164004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:40,9/16/2004 14:40,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_212_20180807100603^01,Field Msr/Obs,WATER,NA,8/7/2018,10:06:00,MDT,8/8/2018,8:28:00,MDT,6.44,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_212,Organization ActivityID=YELL_YSL_212_20180807100603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 16:06,8/8/2018 14:28,Yellowstone Lake Shoreline KM 212,Lake,This station is located in the South Arm of Yellowstone Lake along the eastern shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.30263,-110.30812,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20100812164305^01,Field Msr/Obs,WATER,NA,8/12/2010,16:43:00,MDT,8/13/2010,9:44:00,MDT,44.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0812101643 Organization ActivityID=YELL_YSL_171_20100812164305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 22:43,8/13/2010 15:44,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20180806110003^01,Field Msr/Obs,WATER,NA,8/6/2018,11:00:00,MDT,8/7/2018,8:10:00,MDT,7.77,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Organization ActivityID=YELL_YSL_121_20180806110003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 17:00,8/7/2018 14:10,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20050919170003^01,Field Msr/Obs,WATER,NA,9/19/2005,17:00:00,MDT,9/20/2005,9:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=919051700 Organization ActivityID=YELL_1C_20050919170003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 23:00,9/20/2005 15:00,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20120806105701^01,Field Msr/Obs,WATER,NA,8/6/2012,10:57:00,MDT,8/7/2012,11:15:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Logger 17 Orig ID=0806121057 Organization ActivityID=YELL_YSL_058_20120806105701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 16:57,8/7/2012 17:15,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20040913175003^01,Field Msr/Obs,WATER,NA,9/13/2004,17:50:00,MDT,9/14/2004,9:50:00,MDT,1.1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=913041750 Organization ActivityID=YELL_2B_20040913175003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2004 23:50,9/14/2004 15:50,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20180802105201^01,Field Msr/Obs,WATER,NA,8/2/2018,10:52:00,MDT,8/3/2018,7:58:00,MDT,10.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,2.25 to Shore; No Fish Orig ID=0802181052 Organization ActivityID=YELL_YSL_006_20180802105201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:52,8/3/2018 13:58,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20180804100806^01,Field Msr/Obs,WATER,NA,8/4/2018,10:08:00,MDT,8/5/2018,8:04:00,MDT,40.03,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Organization ActivityID=YELL_YSL_153_20180804100806,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:08,8/5/2018 14:04,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20140806114806^01,Field Msr/Obs,WATER,NA,8/6/2014,11:48:00,MDT,8/7/2014,7:00:00,MDT,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,NO FISH Orig ID=0806141148 Organization ActivityID=YELL_YSL_058_20140806114806,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 17:48,8/7/2014 13:00,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20180804095002^01,Field Msr/Obs,WATER,NA,8/4/2018,9:50:00,MDT,8/5/2018,7:14:00,MDT,1.54,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Organization ActivityID=YELL_YSL_153_20180804095002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 15:50,8/5/2018 13:14,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20190802115105^01,Field Msr/Obs,WATER,NA,8/2/2019,11:51:00,MDT,8/3/2019,8:39:00,MDT,42.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,large end to shore Organization ActivityID=YELL_YSL_058_20190802115105,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 17:51,8/3/2019 14:39,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20061002191004^01,Field Msr/Obs,WATER,NA,10/2/2006,19:10:00,MDT,10/3/2006,11:10:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=1002061910 Organization ActivityID=YELL_4B_20061002191004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 1:10,10/3/2006 17:10,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20150806104906^01,Field Msr/Obs,WATER,NA,8/6/2015,10:49:00,MDT,8/7/2015,7:23:00,MDT,36.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,No Fish Orig ID=0806151049 Organization ActivityID=YELL_YSL_021_20150806104906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.1,14.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 16:49,8/7/2015 13:23,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20190804122605^01,Field Msr/Obs,WATER,NA,8/4/2019,12:26:00,MDT,8/5/2019,11:26:00,MDT,33.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,large end to shore Organization ActivityID=YELL_YSL_158_20190804122605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 18:26,8/5/2019 17:26,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20120918103802^01,Field Msr/Obs,WATER,NA,9/18/2012,10:38:00,MDT,9/19/2012,8:18:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0918121038 Organization ActivityID=YELL_1A_20120918103802,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 16:38,9/19/2012 14:18,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20100810154304^01,Field Msr/Obs,WATER,NA,8/10/2010,15:43:00,MDT,8/11/2010,8:27:00,MDT,19.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,No Fish caught Orig ID=0810101543 Organization ActivityID=YELL_YSL_029_20100810154304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 21:43,8/11/2010 14:27,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20120807124406^01,Field Msr/Obs,WATER,NA,8/7/2012,12:44:00,MDT,8/8/2012,9:53:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Logger 16. No Fish Orig ID=0807121244 Organization ActivityID=YELL_YSL_067_20120807124406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:44,8/8/2012 15:53,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20100810160201^01,Field Msr/Obs,WATER,NA,8/10/2010,16:02:00,MDT,8/11/2010,9:03:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0810101602 Organization ActivityID=YELL_YSL_029_20100810160201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 22:02,8/11/2010 15:03,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20170803110105^01,Field Msr/Obs,WATER,NA,8/3/2017,11:01:00,MDT,8/4/2017,8:43:00,MDT,39.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0803171101 Organization ActivityID=YELL_YSL_012_20170803110105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:01,8/4/2017 14:43,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20110808103506^01,Field Msr/Obs,WATER,NA,8/8/2011,10:35:00,MDT,8/9/2011,10:25:00,MDT,44.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,No Fish Orig ID=0808111035 Organization ActivityID=YELL_YSL_158_20110808103506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 16:35,8/9/2011 16:25,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20150807103404^01,Field Msr/Obs,WATER,NA,8/7/2015,10:34:00,MDT,8/8/2015,7:28:00,MDT,7.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0807151034 Organization ActivityID=YELL_YSL_041_20150807103404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 16:34,8/8/2015 13:28,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_097_20100804161906^01,Field Msr/Obs,WATER,NA,8/4/2010,16:19:00,MDT,8/5/2010,8:32:00,MDT,41.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_097,No Fish Orig ID=0804101619 Organization ActivityID=YELL_YSL_097_20100804161906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 22:19,8/5/2010 14:32,Yellowstone Lake Shoreline KM 97,Lake,Station is located in the Southeast Arm of Yellowstone Lake along the west shore and approximately 2 km from the non-motorized zone.,10070001,NA,NA,NA,NA,44.3416933,-110.2771078,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20170805111404^01,Field Msr/Obs,WATER,NA,8/5/2017,11:14:00,MDT,8/6/2017,9:10:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0805171114 Organization ActivityID=YELL_YSL_171_20170805111404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:14,8/6/2017 15:10,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20050919162005^01,Field Msr/Obs,WATER,NA,9/19/2005,16:20:00,MDT,9/20/2005,8:20:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=919051620 Organization ActivityID=YELL_1A_20050919162005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:20,9/20/2005 14:20,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20130801124804^01,Field Msr/Obs,WATER,NA,8/1/2013,12:48:00,MDT,8/2/2013,10:58:00,MDT,7.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801131248 Organization ActivityID=YELL_YSL_209_20130801124804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 18:48,8/2/2013 16:58,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202008030949_00^01,Field Msr/Obs,WATER,NA,8/3/2020,9:49:00,MDT,8/4/2020,6:07:00,MDT,2.37,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: Large ETS|3029|22|546208|4919397|546321|4919445 Organization ActivityID=YELL_YSL_158_202008030949_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2020 15:49,8/4/2020 12:07,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20170806102102^01,Field Msr/Obs,WATER,NA,8/6/2017,10:21:00,MDT,8/7/2017,8:55:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0806171021 Organization ActivityID=YELL_YSL_128_20170806102102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:21,8/7/2017 14:55,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20140803105901^01,Field Msr/Obs,WATER,NA,8/3/2014,10:59:00,MDT,8/4/2014,7:21:00,MDT,11.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803141059 Organization ActivityID=YELL_YSL_080_20140803105901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2014 16:59,8/4/2014 13:21,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_097_20100804162705^01,Field Msr/Obs,WATER,NA,8/4/2010,16:27:00,MDT,8/5/2010,9:15:00,MDT,44.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_097,Orig ID=0804101627 Organization ActivityID=YELL_YSL_097_20100804162705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 22:27,8/5/2010 15:15,Yellowstone Lake Shoreline KM 97,Lake,Station is located in the Southeast Arm of Yellowstone Lake along the west shore and approximately 2 km from the non-motorized zone.,10070001,NA,NA,NA,NA,44.3416933,-110.2771078,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20061005160001^01,Field Msr/Obs,WATER,NA,10/5/2006,16:00:00,MDT,10/6/2006,8:00:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=100506600 Organization ActivityID=YELL_1A_20061005160001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:00,10/6/2006 14:00,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20190803113602^01,Field Msr/Obs,WATER,NA,8/3/2019,11:36:00,MDT,8/4/2019,8:04:00,MDT,2.04,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,large to shore Organization ActivityID=YELL_YSL_012_20190803113602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:36,8/4/2019 14:04,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20050919170504^01,Field Msr/Obs,WATER,NA,9/19/2005,17:05:00,MDT,9/20/2005,9:05:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=919051705 Organization ActivityID=YELL_1C_20050919170504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 23:05,9/20/2005 15:05,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20100916165503^01,Field Msr/Obs,WATER,NA,9/16/2010,16:55:00,MDT,9/17/2010,8:25:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0916101655 Organization ActivityID=YELL_3A_20100916165503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 22:55,9/17/2010 14:25,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20061002190503^01,Field Msr/Obs,WATER,NA,10/2/2006,19:05:00,MDT,10/3/2006,11:05:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=1002061905 Organization ActivityID=YELL_4B_20061002190503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 1:05,10/3/2006 17:05,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20120806123404^01,Field Msr/Obs,WATER,NA,8/6/2012,12:34:00,MDT,8/7/2012,7:57:00,MDT,14.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Logger 5 Orig ID=0806121234 Organization ActivityID=YELL_YSL_009_20120806123404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 18:34,8/7/2012 13:57,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20170805111003^01,Field Msr/Obs,WATER,NA,8/5/2017,11:10:00,MDT,8/6/2017,9:00:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0805171110 Organization ActivityID=YELL_YSL_171_20170805111003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 17:10,8/6/2017 15:00,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20100818163606^01,Field Msr/Obs,WATER,NA,8/18/2010,16:36:00,MDT,8/19/2010,10:09:00,MDT,41.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,No Fish Caught Orig ID=0818101636 Organization ActivityID=YELL_YSL_042_20100818163606,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 22:36,8/19/2010 16:09,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20170803113404^01,Field Msr/Obs,WATER,NA,8/3/2017,11:34:00,MDT,8/4/2017,7:40:00,MDT,8.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0803171134 Organization ActivityID=YELL_YSL_177_20170803113404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 17:34,8/4/2017 13:40,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20190804102504^01,Field Msr/Obs,WATER,NA,8/4/2019,10:25:00,MDT,8/5/2019,7:59:00,MDT,13.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,large end to shore Organization ActivityID=YELL_YSL_080_20190804102504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 16:25,8/5/2019 13:59,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20110915181602^01,Field Msr/Obs,WATER,NA,9/15/2011,18:16:00,MDT,9/16/2011,11:45:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=915111816 Organization ActivityID=YELL_1A_20110915181602,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2011 0:16,9/16/2011 17:45,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_202108051027_00^01,Field Msr/Obs,WATER,NA,8/5/2021,10:27:00,MDT,8/6/2021,8:49:00,MDT,1.79,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|2029|9|535290|4922829|535438|4922799 Organization ActivityID=YELL_YSL_023_202108051027_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2021 16:27,8/6/2021 14:49,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20150801102806^01,Field Msr/Obs,WATER,NA,8/1/2015,10:28:00,MDT,8/2/2015,7:30:00,MDT,41.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,No Fish Orig ID=0801151028 Organization ActivityID=YELL_YSL_190_20150801102806,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 16:28,8/2/2015 13:30,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20040914185501^01,Field Msr/Obs,WATER,NA,9/14/2004,18:55:00,MDT,9/15/2004,10:55:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=914041855 Organization ActivityID=YELL_4A_20040914185501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.8,9.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 0:55,9/15/2004 16:55,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_201708051030^01,Field Msr/Obs,WATER,NA,8/5/2017,10:30:00,MDT,8/6/2017,7:55:00,MDT,7.93,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0805171030 Organization ActivityID=YELL_YSL_168_201708051030,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2017 16:30,8/6/2017 13:55,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20150804101305^01,Field Msr/Obs,WATER,NA,8/4/2015,10:13:00,MDT,8/5/2015,8:31:00,MDT,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804151013 Organization ActivityID=YELL_YSL_158_20150804101305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:13,8/5/2015 14:31,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20110810114902^01,Field Msr/Obs,WATER,NA,8/10/2011,11:49:00,MDT,8/11/2011,10:37:00,MDT,4.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0810111149 Organization ActivityID=YELL_YSL_012_20110810114902,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 17:49,8/11/2011 16:37,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20120813140901^01,Field Msr/Obs,WATER,NA,8/13/2012,14:09:00,MDT,8/14/2012,9:22:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0813121409 Organization ActivityID=YELL_YSL_115_20120813140901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2012 20:09,8/14/2012 15:22,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20100916161502^01,Field Msr/Obs,WATER,NA,9/16/2010,16:15:00,MDT,9/17/2010,7:53:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0916101615 Organization ActivityID=YELL_3B_20100916161502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2010 22:15,9/17/2010 13:53,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20150806115203^01,Field Msr/Obs,WATER,NA,8/6/2015,11:52:00,MDT,8/7/2015,9:20:00,MDT,12.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0806151152 Organization ActivityID=YELL_YSL_058_20150806115203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:52,8/7/2015 15:20,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20190803110703^01,Field Msr/Obs,WATER,NA,8/3/2019,11:07:00,MDT,8/4/2019,7:37:00,MDT,15,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,large end to shore Organization ActivityID=YELL_YSL_177_20190803110703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2019 17:07,8/4/2019 13:37,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_AMP01_071761325G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,6/25/2007,13:25:00,MDT,6/25/2007,14:31:00,MDT,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_AMP01,Field observations and water column parameters. Organization ActivityID=GRTE_AMP01_071761325G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.97,11.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/25/2007 19:25,6/25/2007 20:31,Amphitheater Lake,Lake,The hiking trial will lead you right up to the outlet of the lake. Our site is located on the right side of the outlet when you are looking at the lake. The site is at the first sign of running water in the outlet.,17040101,NA,NA,NA,NA,43.72922327,-110.7798475,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9663.09,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20110810131903^01,Field Msr/Obs,WATER,NA,8/10/2011,13:19:00,MDT,8/11/2011,8:19:00,MDT,24,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0810111319 Organization ActivityID=YELL_YSL_023_20110810131903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 19:19,8/11/2011 14:19,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_202008021027_00^01,Field Msr/Obs,WATER,NA,8/2/2020,10:27:00,MDT,8/3/2020,7:03:00,MDT,13.23,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,"Activity Net, Buoy, Start/End UTMs: Large ETS|4013|22|552196|4914450|552297|4914470 Organization ActivityID=YELL_YSL_128_202008021027_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2020 16:27,8/3/2020 13:03,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20180801093802^01,Field Msr/Obs,WATER,NA,8/1/2018,9:38:00,MDT,8/2/2018,8:02:00,MDT,2.06,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,3.5 to shore Orig ID=0801180938 Organization ActivityID=YELL_YSL_012_20180801093802,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:38,8/2/2018 14:02,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20120919093801^01,Field Msr/Obs,WATER,NA,9/19/2012,9:38:00,MDT,9/20/2012,6:53:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=0919120938 Organization ActivityID=YELL_2A_20120919093801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 15:38,9/20/2012 12:53,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20110802140302^01,Field Msr/Obs,WATER,NA,8/2/2011,14:03:00,MDT,8/3/2011,11:03:00,MDT,4.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0802111403 Organization ActivityID=YELL_YSL_077_20110802140302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 20:03,8/3/2011 17:03,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20190804113606^01,Field Msr/Obs,WATER,NA,8/4/2019,11:36:00,MDT,8/5/2019,11:54:00,MDT,36,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,large to shore Organization ActivityID=YELL_YSL_163_20190804113606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:36,8/5/2019 17:54,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20180803102501^01,Field Msr/Obs,WATER,NA,8/3/2018,10:25:00,MDT,8/4/2018,6:33:00,MDT,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Organization ActivityID=YELL_YSL_052_20180803102501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:25,8/4/2018 12:33,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20150807102801^01,Field Msr/Obs,WATER,NA,8/7/2015,10:28:00,MDT,8/8/2015,8:08:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0807151028 Organization ActivityID=YELL_YSL_041_20150807102801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 16:28,8/8/2015 14:08,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20120809104804^01,Field Msr/Obs,WATER,NA,8/9/2012,10:48:00,MDT,8/10/2012,7:53:00,MDT,11.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0809121048 Organization ActivityID=YELL_YSL_041_20120809104804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 16:48,8/10/2012 13:53,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20100818170004^01,Field Msr/Obs,WATER,NA,8/18/2010,17:00:00,MDT,8/19/2010,9:28:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0818101700 Organization ActivityID=YELL_YSL_042_20100818170004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 23:00,8/19/2010 15:28,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20050920191505^01,Field Msr/Obs,WATER,NA,9/20/2005,19:15:00,MDT,9/21/2005,11:15:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=920051915 Organization ActivityID=YELL_4A_20050920191505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 1:15,9/21/2005 17:15,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20180801095106^01,Field Msr/Obs,WATER,NA,8/1/2018,9:51:00,MDT,8/2/2018,7:39:00,MDT,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,3.0 to shore Orig ID=0801180951 Organization ActivityID=YELL_YSL_023_20180801095106,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:51,8/2/2018 13:39,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20170804120104^01,Field Msr/Obs,WATER,NA,8/4/2017,12:01:00,MDT,8/5/2017,9:15:00,MDT,8.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804171201 Organization ActivityID=YELL_YSL_158_20170804120104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 18:01,8/5/2017 15:15,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20120918132401^01,Field Msr/Obs,WATER,NA,9/18/2012,13:24:00,MDT,9/19/2012,9:20:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0918121324 Organization ActivityID=YELL_1C_20120918132401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 19:24,9/19/2012 15:20,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20150801120003^01,Field Msr/Obs,WATER,NA,8/1/2015,12:00:00,MDT,8/2/2015,9:44:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,"Yellow, green Orig ID=0801151200 Organization ActivityID=YELL_YSL_209_20150801120003",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 18:00,8/2/2015 15:44,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20140807111502^01,Field Msr/Obs,WATER,NA,8/7/2014,11:15:00,MDT,8/8/2014,11:02:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0807141115 Organization ActivityID=YELL_YSL_121_20140807111502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:15,8/8/2014 17:02,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20190804115802^01,Field Msr/Obs,WATER,NA,8/4/2019,11:58:00,MDT,8/5/2019,10:46:00,MDT,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,large to shore Organization ActivityID=YELL_YSL_158_20190804115802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2019 17:58,8/5/2019 16:46,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20180805112502^01,Field Msr/Obs,WATER,NA,8/5/2018,11:25:00,MDT,8/6/2018,9:49:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Organization ActivityID=YELL_YSL_080_20180805112502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:25,8/6/2018 15:49,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_018_20100811170906^01,Field Msr/Obs,WATER,NA,8/11/2010,17:09:00,MDT,8/12/2010,9:12:00,MDT,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_018,No Fish Caught Orig ID=0811101709 Organization ActivityID=YELL_YSL_018_20100811170906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 23:09,8/12/2010 15:12,Yellowstone Lake Shoreline KM 18,Lake,This site is located in the West Thumb portion of Yellowstone Lake. It is on the western shoreline approximately 4 km from the West Thumb Geyser basin.,10070001,NA,NA,NA,NA,44.4151631,-110.5687369,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20180801101006^01,Field Msr/Obs,WATER,NA,8/1/2018,10:10:00,MDT,8/2/2018,8:48:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,2.25 to shore; No fish Orig ID=0801181010 Organization ActivityID=YELL_YSL_012_20180801101006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:10,8/2/2018 14:48,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20120918130601^01,Field Msr/Obs,WATER,NA,9/18/2012,13:06:00,MDT,9/19/2012,8:08:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0918121306 Organization ActivityID=YELL_1B_20120918130601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 19:06,9/19/2012 14:08,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20150804111405^01,Field Msr/Obs,WATER,NA,8/4/2015,11:14:00,MDT,8/5/2015,13:00:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804151114 Organization ActivityID=YELL_YSL_171_20150804111405,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 17:14,8/5/2015 19:00,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20190806112006^01,Field Msr/Obs,WATER,NA,8/6/2019,11:20:00,MDT,8/7/2019,9:18:00,MDT,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,small end to shore Organization ActivityID=YELL_YSL_120_20190806112006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 17:20,8/7/2019 15:18,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_018_20100811170102^01,Field Msr/Obs,WATER,NA,8/11/2010,17:01:00,MDT,8/12/2010,9:31:00,MDT,8.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_018,Orig ID=0811101701 Organization ActivityID=YELL_YSL_018_20100811170102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2010 23:01,8/12/2010 15:31,Yellowstone Lake Shoreline KM 18,Lake,This site is located in the West Thumb portion of Yellowstone Lake. It is on the western shoreline approximately 4 km from the West Thumb Geyser basin.,10070001,NA,NA,NA,NA,44.4151631,-110.5687369,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20150806111204^01,Field Msr/Obs,WATER,NA,8/6/2015,11:12:00,MDT,8/7/2015,7:48:00,MDT,11.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0806151112 Organization ActivityID=YELL_YSL_059_20150806111204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:12,8/7/2015 13:48,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20110802102801^01,Field Msr/Obs,WATER,NA,8/2/2011,10:28:00,MDT,8/3/2011,9:22:00,MDT,5.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0802111028 Organization ActivityID=YELL_YSL_067_20110802102801,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 16:28,8/3/2011 15:22,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20120806101205^01,Field Msr/Obs,WATER,NA,8/6/2012,10:12:00,MDT,8/7/2012,7:28:00,MDT,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Logger 19 Orig ID=0806121012 Organization ActivityID=YELL_YSL_052_20120806101205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 16:12,8/7/2012 13:28,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20140807114206^01,Field Msr/Obs,WATER,NA,8/7/2014,11:42:00,MDT,8/8/2014,10:07:00,MDT,39.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,NO FISH Orig ID=0807141142 Organization ActivityID=YELL_YSL_121_20140807114206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2014 17:42,8/8/2014 16:07,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20120806142505^01,Field Msr/Obs,WATER,NA,8/6/2012,14:25:00,MDT,8/7/2012,11:12:00,MDT,34,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Logger 10 Orig ID=0806121425 Organization ActivityID=YELL_YSL_012_20120806142505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 20:25,8/7/2012 17:12,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20050920184504^01,Field Msr/Obs,WATER,NA,9/20/2005,18:45:00,MDT,9/21/2005,10:45:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=920051845 Organization ActivityID=YELL_3B_20050920184504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 0:45,9/21/2005 16:45,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20120806124203^01,Field Msr/Obs,WATER,NA,8/6/2012,12:42:00,MDT,8/7/2012,8:06:00,MDT,12.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Logger 14 Orig ID=0806121242 Organization ActivityID=YELL_YSL_009_20120806124203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 18:42,8/7/2012 14:06,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20180805112406^01,Field Msr/Obs,WATER,NA,8/5/2018,11:24:00,MDT,8/6/2018,10:22:00,MDT,39.91,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Organization ActivityID=YELL_YSL_128_20180805112406,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:24,8/6/2018 16:22,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20130802150402^01,Field Msr/Obs,WATER,NA,8/2/2013,15:04:00,MDT,8/3/2013,13:06:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0802131504 Organization ActivityID=YELL_YSL_144_20130802150402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 21:04,8/3/2013 19:06,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20150805154001^01,Field Msr/Obs,WATER,NA,8/5/2015,15:40:00,MDT,8/6/2015,10:04:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0805151540 Organization ActivityID=YELL_YSL_177_20150805154001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 21:40,8/6/2015 16:04,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20180805111104^01,Field Msr/Obs,WATER,NA,8/5/2018,11:11:00,MDT,8/6/2018,9:19:00,MDT,42.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Organization ActivityID=YELL_YSL_079_20180805111104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 17:11,8/6/2018 15:19,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20140801080901^01,Field Msr/Obs,WATER,NA,8/1/2014,8:09:00,MDT,8/2/2014,8:17:00,MDT,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,"Dropped cut @ 1.25"" Orig ID=0801140809 Organization ActivityID=YELL_YSL_190_20140801080901",NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 14:09,8/2/2014 14:17,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20130802142703^01,Field Msr/Obs,WATER,NA,8/2/2013,14:27:00,MDT,8/3/2013,9:03:00,MDT,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0802131427 Organization ActivityID=YELL_YSL_128_20130802142703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:27,8/3/2013 15:03,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20180804104102^01,Field Msr/Obs,WATER,NA,8/4/2018,10:41:00,MDT,8/5/2018,8:41:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Organization ActivityID=YELL_YSL_067_20180804104102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:41,8/5/2018 14:41,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20120916094402^01,Field Msr/Obs,WATER,NA,9/16/2012,9:44:00,MDT,9/17/2012,9:01:00,MDT,1.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=0916120944 Organization ActivityID=YELL_4A_20120916094402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2012 15:44,9/17/2012 15:01,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_106_20100803174002^01,Field Msr/Obs,WATER,NA,8/3/2010,17:40:00,MDT,8/4/2010,10:20:00,MDT,10.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_106,Orig ID=0803101740 Organization ActivityID=YELL_YSL_106_20100803174002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 23:40,8/4/2010 16:20,Yellowstone Lake Shoreline KM 106,Lake,This station is located in the South Arm of Yellowstone Lake along the east shore approximately one fourth the way between the main lake basin and the non-motorized zone.,10070001,NA,NA,NA,NA,44.3777623,-110.2979164,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20100819170205^01,Field Msr/Obs,WATER,NA,8/19/2010,17:02:00,MDT,8/20/2010,10:11:00,MDT,42,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,No Scale Card # 1.6 Orig ID=0819101702 Organization ActivityID=YELL_YSL_059_20100819170205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 23:02,8/20/2010 16:11,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20150807105406^01,Field Msr/Obs,WATER,NA,8/7/2015,10:54:00,MDT,8/8/2015,7:00:00,MDT,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,No Fish Orig ID=0807151054 Organization ActivityID=YELL_YSL_041_20150807105406,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2015 16:54,8/8/2015 13:00,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20050919164505^01,Field Msr/Obs,WATER,NA,9/19/2005,16:45:00,MDT,9/20/2005,8:45:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=919051645 Organization ActivityID=YELL_1B_20050919164505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:45,9/20/2005 14:45,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20170803103101^01,Field Msr/Obs,WATER,NA,8/3/2017,10:31:00,MDT,8/4/2017,7:33:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0803171031 Organization ActivityID=YELL_YSL_012_20170803103101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:31,8/4/2017 13:33,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20061004180501^01,Field Msr/Obs,WATER,NA,10/4/2006,18:05:00,MDT,10/5/2006,10:05:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=1004061805 Organization ActivityID=YELL_3B_20061004180501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 0:05,10/5/2006 16:05,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20050922174001^01,Field Msr/Obs,WATER,NA,9/22/2005,17:40:00,MDT,9/23/2005,9:40:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=922051740 Organization ActivityID=YELL_2B_20050922174001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2005 23:40,9/23/2005 15:40,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20150806110401^01,Field Msr/Obs,WATER,NA,8/6/2015,11:04:00,MDT,8/7/2015,8:00:00,MDT,3.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0806151104 Organization ActivityID=YELL_YSL_059_20150806110401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:04,8/7/2015 14:00,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20190801095503^01,Field Msr/Obs,WATER,NA,8/1/2019,9:55:00,MDT,8/2/2019,9:10:00,MDT,13.62,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,small to shore Organization ActivityID=YELL_YSL_029_20190801095503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 15:55,8/2/2019 15:10,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20170804114901^01,Field Msr/Obs,WATER,NA,8/4/2017,11:49:00,MDT,8/5/2017,8:43:00,MDT,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804171149 Organization ActivityID=YELL_YSL_158_20170804114901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 17:49,8/5/2017 14:43,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20150802115904^01,Field Msr/Obs,WATER,NA,8/2/2015,11:59:00,MDT,8/3/2015,12:51:00,MDT,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0802151159 Organization ActivityID=YELL_YSL_128_20150802115904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2015 17:59,8/3/2015 18:51,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20180802110602^01,Field Msr/Obs,WATER,NA,8/2/2018,11:06:00,MDT,8/3/2018,8:30:00,MDT,44.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,2.0 to Shore Orig ID=0802181106 Organization ActivityID=YELL_YSL_006_20180802110602,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 17:06,8/3/2018 14:30,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_097_20100804163504^01,Field Msr/Obs,WATER,NA,8/4/2010,16:35:00,MDT,8/5/2010,8:43:00,MDT,19.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_097,Orig ID=0804101635 Organization ActivityID=YELL_YSL_097_20100804163504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 22:35,8/5/2010 14:43,Yellowstone Lake Shoreline KM 97,Lake,Station is located in the Southeast Arm of Yellowstone Lake along the west shore and approximately 2 km from the non-motorized zone.,10070001,NA,NA,NA,NA,44.3416933,-110.2771078,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20140806111902^01,Field Msr/Obs,WATER,NA,8/6/2014,11:19:00,MDT,8/7/2014,8:11:00,MDT,3.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0806141119 Organization ActivityID=YELL_YSL_058_20140806111902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2014 17:19,8/7/2014 14:11,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20120809124106^01,Field Msr/Obs,WATER,NA,8/9/2012,12:41:00,MDT,8/10/2012,10:10:00,MDT,41.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Logger 25. No Fish Orig ID=0809121241 Organization ActivityID=YELL_YSL_089_20120809124106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 18:41,8/10/2012 16:10,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20190805105305^01,Field Msr/Obs,WATER,NA,8/5/2019,10:53:00,MDT,8/6/2019,8:09:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,small end to shore Organization ActivityID=YELL_YSL_168_20190805105305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 16:53,8/6/2019 14:09,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20150804094702^01,Field Msr/Obs,WATER,NA,8/4/2015,9:47:00,MDT,8/5/2015,7:04:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804150947 Organization ActivityID=YELL_YSL_158_20150804094702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 15:47,8/5/2015 13:04,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20150801111706^01,Field Msr/Obs,WATER,NA,8/1/2015,11:17:00,MDT,8/2/2015,8:39:00,MDT,41.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,No Fish Orig ID=0801151117 Organization ActivityID=YELL_YSL_218_20150801111706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 17:17,8/2/2015 14:39,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20180803103702^01,Field Msr/Obs,WATER,NA,8/3/2018,10:37:00,MDT,8/4/2018,6:59:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Organization ActivityID=YELL_YSL_052_20180803103702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2018 16:37,8/4/2018 12:59,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20180801103803^01,Field Msr/Obs,WATER,NA,8/1/2018,10:38:00,MDT,8/2/2018,9:50:00,MDT,8.16,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,2.0 to shore Orig ID=0801181038 Organization ActivityID=YELL_YSL_009_20180801103803,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 16:38,8/2/2018 15:50,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20160801092504^01,Field Msr/Obs,WATER,NA,8/1/2016,9:25:00,MDT,8/2/2016,9:11:00,MDT,19,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,No fish Orig ID=0801160925 Organization ActivityID=YELL_YSL_218_20160801092504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:25,8/2/2016 15:11,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20040914165001^01,Field Msr/Obs,WATER,NA,9/14/2004,16:50:00,MDT,9/15/2004,8:50:00,MDT,0.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=914041650 Organization ActivityID=YELL_1C_20040914165001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2004 22:50,9/15/2004 14:50,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20120807130201^01,Field Msr/Obs,WATER,NA,8/7/2012,13:02:00,MDT,8/8/2012,8:26:00,MDT,3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,logger 21 Orig ID=0807121302 Organization ActivityID=YELL_YSL_065_20120807130201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 19:02,8/8/2012 14:26,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20110802104002^01,Field Msr/Obs,WATER,NA,8/2/2011,10:40:00,MDT,8/3/2011,8:57:00,MDT,5.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0802111040 Organization ActivityID=YELL_YSL_067_20110802104002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 16:40,8/3/2011 14:57,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20110802130902^01,Field Msr/Obs,WATER,NA,8/2/2011,13:09:00,MDT,8/3/2011,8:35:00,MDT,7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Alternate Site Orig ID=0802111309 Organization ActivityID=YELL_YSL_052_20110802130902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 19:09,8/3/2011 14:35,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3A_20130917150304^01,Field Msr/Obs,WATER,NA,9/17/2013,15:03:00,MDT,9/18/2013,9:38:00,MDT,4.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3A,Orig ID=0917131503 Organization ActivityID=YELL_3A_20130917150304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2013 21:03,9/18/2013 15:38,Sand Point,Lake,Site 3A: Sand Point. Start just north of Sand Point and work north along the shoreline. This area drops off quickly. Make sure to have 40 meter float lines for the deep ends. These sets are usually set at a 45-degree angle to the shore. Make sure shallow ends have enough weight so nets don't roll down the drop-off. 546869 Easting 4926854 Northing,10070001,NA,NA,NA,NA,44.49348056,-110.4105028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20100912172305^01,Field Msr/Obs,WATER,NA,9/12/2010,17:23:00,MDT,9/13/2010,8:15:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0912101723 Organization ActivityID=YELL_6C_20100912172305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2010 23:23,9/13/2010 14:15,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20050919161504^01,Field Msr/Obs,WATER,NA,9/19/2005,16:15:00,MDT,9/20/2005,8:15:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=919051615 Organization ActivityID=YELL_1A_20050919161504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:15,9/20/2005 14:15,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20120809093905^01,Field Msr/Obs,WATER,NA,8/9/2012,9:39:00,MDT,8/10/2012,7:40:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,logger 24 Orig ID=0809120939 Organization ActivityID=YELL_YSL_080_20120809093905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2012 15:39,8/10/2012 13:40,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20180807112203^01,Field Msr/Obs,WATER,NA,8/7/2018,11:22:00,MDT,8/8/2018,10:40:00,MDT,11.04,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Organization ActivityID=YELL_YSL_077_20180807112203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 17:22,8/8/2018 16:40,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20040916200505^01,Field Msr/Obs,WATER,NA,9/16/2004,20:05:00,MDT,9/17/2004,12:05:00,MDT,0.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=916042005 Organization ActivityID=YELL_6C_20040916200505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,100.7,100.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2004 2:05,9/17/2004 18:05,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20061002185005^01,Field Msr/Obs,WATER,NA,10/2/2006,18:50:00,MDT,10/3/2006,10:50:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=1002061850 Organization ActivityID=YELL_4A_20061002185005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.8,8.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 0:50,10/3/2006 16:50,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20120917125602^01,Field Msr/Obs,WATER,NA,9/17/2012,12:56:00,MDT,9/18/2012,8:18:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0917121256 Organization ActivityID=YELL_6C_20120917125602,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2012 18:56,9/18/2012 14:18,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_202108010945_00^01,Field Msr/Obs,WATER,NA,8/1/2021,9:45:00,MDT,8/2/2021,9:45:00,MDT,41.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,"Activity Net, Buoy, Start/End UTMs: 0.75'' TO SHORE|4016|11|552412|4909226|552509|4909274 Organization ActivityID=YELL_YSL_120_202108010945_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2021 15:45,8/2/2021 15:45,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202008051003_00^01,Field Msr/Obs,WATER,NA,8/5/2020,10:03:00,MDT,8/6/2020,9:04:00,MDT,41.86,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: Large ETS|4017|24|535594|4916157|535641|4916197 Organization ActivityID=YELL_YSL_012_202008051003_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2020 16:03,8/6/2020 15:04,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20170802124105^01,Field Msr/Obs,WATER,NA,8/2/2017,12:41:00,MDT,8/3/2017,9:49:00,MDT,39.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0802171241 Organization ActivityID=YELL_YSL_021_20170802124105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 18:41,8/3/2017 15:49,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20150804110004^01,Field Msr/Obs,WATER,NA,8/4/2015,11:00:00,MDT,8/5/2015,13:38:00,MDT,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804151100 Organization ActivityID=YELL_YSL_171_20150804110004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 17:00,8/5/2015 19:38,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_227_20170807134306^01,Field Msr/Obs,WATER,NA,8/7/2017,13:43:00,MDT,8/8/2017,9:15:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_227,Orig ID=0807171343 Organization ActivityID=YELL_YSL_227_20170807134306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:43,8/8/2017 15:15,Yellowstone Lake Shoreline KM 227,Lake,This site is located in the South Arm of Yellowstone Lake along the western shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.295507,-110.34286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20061001180005^01,Field Msr/Obs,WATER,NA,10/1/2006,18:00:00,MDT,10/2/2006,10:00:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=1001061800 Organization ActivityID=YELL_2B_20061001180005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/2/2006 0:00,10/2/2006 16:00,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20140804105401^01,Field Msr/Obs,WATER,NA,8/4/2014,10:54:00,MDT,8/5/2014,8:35:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0804141054 Organization ActivityID=YELL_YSL_163_20140804105401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2014 16:54,8/5/2014 14:35,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20100805165506^01,Field Msr/Obs,WATER,NA,8/5/2010,16:55:00,MDT,8/6/2010,9:14:00,MDT,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,No Fish Caught Orig ID=0805101655 Organization ActivityID=YELL_YSL_082_20100805165506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 22:55,8/6/2010 15:14,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20150806115804^01,Field Msr/Obs,WATER,NA,8/6/2015,11:58:00,MDT,8/7/2015,9:30:00,MDT,12.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0806151158 Organization ActivityID=YELL_YSL_058_20150806115804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2015 17:58,8/7/2015 15:30,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_051_20100802162504^01,Field Msr/Obs,WATER,NA,8/2/2010,16:25:00,MDT,8/3/2010,9:20:00,MDT,15.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_051,Orig ID=0802101625 Organization ActivityID=YELL_YSL_051_20100802162504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2010 22:25,8/3/2010 15:20,Yellowstone Lake Shoreline KM 51,Lake,Station located on north shore of Yellowstone Lake approximately 2 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.5367389,-110.4310425,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202108021249_00^01,Field Msr/Obs,WATER,NA,8/2/2021,12:49:00,MDT,8/3/2021,12:52:00,MDT,1.36,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: 3.5'' TO SHORE|4018|11|546142|4919421|546245|4919457 Organization ActivityID=YELL_YSL_158_202108021249_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 18:49,8/3/2021 18:52,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_202108021309_00^01,Field Msr/Obs,WATER,NA,8/2/2021,13:09:00,MDT,8/3/2021,13:31:00,MDT,43.52,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|4016|13|546660|4919545|546756|4919607 Organization ActivityID=YELL_YSL_158_202108021309_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 19:09,8/3/2021 19:31,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20150804102805^01,Field Msr/Obs,WATER,NA,8/4/2015,10:28:00,MDT,8/5/2015,7:04:00,MDT,41.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804151028 Organization ActivityID=YELL_YSL_168_20150804102805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:28,8/5/2015 13:04,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20170804113705^01,Field Msr/Obs,WATER,NA,8/4/2017,11:37:00,MDT,8/5/2017,8:15:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,no fish Orig ID=0804171137 Organization ActivityID=YELL_YSL_163_20170804113705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 17:37,8/5/2017 14:15,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_6C_20100912171002^01,Field Msr/Obs,WATER,NA,9/12/2010,17:10:00,MDT,9/13/2010,7:42:00,MDT,2.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_6C,Orig ID=0912101710 Organization ActivityID=YELL_6C_20100912171002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2010 23:10,9/13/2010 13:42,Peale Island,Lake,Site 6C: Peale Island. Start just east of Monument Bay and Chipmunk Creek and work northeast. Starting point should be just east of Peale Island. 555053 Easting 4904307 Northing,10070001,NA,NA,NA,NA,44.28993056,-110.3099639,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20040914190503^01,Field Msr/Obs,WATER,NA,9/14/2004,19:05:00,MDT,9/15/2004,11:05:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=914041905 Organization ActivityID=YELL_4A_20040914190503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 1:05,9/15/2004 17:05,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20120918134104^01,Field Msr/Obs,WATER,NA,9/18/2012,13:41:00,MDT,9/19/2012,8:47:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=0918121341 Organization ActivityID=YELL_1C_20120918134104,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/18/2012 19:41,9/19/2012 14:47,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20110801101503^01,Field Msr/Obs,WATER,NA,8/1/2011,10:15:00,MDT,8/2/2011,9:15:00,MDT,25.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0801111015 Organization ActivityID=YELL_YSL_045_20110801101503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 16:15,8/2/2011 15:15,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20130802151604^01,Field Msr/Obs,WATER,NA,8/2/2013,15:16:00,MDT,8/3/2013,12:27:00,MDT,27,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,no fish Orig ID=0802131516 Organization ActivityID=YELL_YSL_144_20130802151604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 21:16,8/3/2013 18:27,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20190801093001^01,Field Msr/Obs,WATER,NA,8/1/2019,9:30:00,MDT,8/2/2019,8:30:00,MDT,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,large end to shore Organization ActivityID=YELL_YSL_029_20190801093001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 15:30,8/2/2019 14:30,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20180806105604^01,Field Msr/Obs,WATER,NA,8/6/2018,10:56:00,MDT,8/7/2018,8:00:00,MDT,8.36,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Organization ActivityID=YELL_YSL_121_20180806105604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2018 16:56,8/7/2018 14:00,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20120919114303^01,Field Msr/Obs,WATER,NA,9/19/2012,11:43:00,MDT,9/20/2012,9:51:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0919121143 Organization ActivityID=YELL_7C_20120919114303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2012 17:43,9/20/2012 15:51,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_202108021213_00^01,Field Msr/Obs,WATER,NA,8/2/2021,12:13:00,MDT,8/3/2021,11:47:00,MDT,9.64,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,"Activity Net, Buoy, Start/End UTMs: 2.0'' TO SHORE|2027|1|548786|4915547|548888|4915517 Organization ActivityID=YELL_YSL_148_202108021213_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.5,19.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2021 18:13,8/3/2021 17:47,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20190801091502^01,Field Msr/Obs,WATER,NA,8/1/2019,9:15:00,MDT,8/2/2019,8:35:00,MDT,3.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,small end to shore Organization ActivityID=YELL_YSL_042_20190801091502,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 15:15,8/2/2019 14:35,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20160801094706^01,Field Msr/Obs,WATER,NA,8/1/2016,9:47:00,MDT,8/2/2016,9:53:00,MDT,42.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,No fish Orig ID=0801160947 Organization ActivityID=YELL_YSL_218_20160801094706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:47,8/2/2016 15:53,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20170804095003^01,Field Msr/Obs,WATER,NA,8/4/2017,9:50:00,MDT,8/5/2017,8:10:00,MDT,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0804170950 Organization ActivityID=YELL_YSL_080_20170804095003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 15:50,8/5/2017 14:10,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20180804100904^01,Field Msr/Obs,WATER,NA,8/4/2018,10:09:00,MDT,8/5/2018,7:41:00,MDT,9.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Organization ActivityID=YELL_YSL_058_20180804100904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:09,8/5/2018 13:41,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20110803132902^01,Field Msr/Obs,WATER,NA,8/3/2011,13:29:00,MDT,8/4/2011,11:49:00,MDT,4.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0803111329 Organization ActivityID=YELL_YSL_121_20110803132902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 19:29,8/4/2011 17:49,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20170802111601^01,Field Msr/Obs,WATER,NA,8/2/2017,11:16:00,MDT,8/3/2017,7:14:00,MDT,1.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0802171116 Organization ActivityID=YELL_YSL_058_20170802111601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:16,8/3/2017 13:14,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20180805071805^01,Field Msr/Obs,WATER,NA,8/5/2018,7:18:00,MDT,8/6/2018,10:00:00,MDT,43.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Organization ActivityID=YELL_YSL_080_20180805071805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2018 13:18,8/6/2018 16:00,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2A_20040913173004^01,Field Msr/Obs,WATER,NA,9/13/2004,17:30:00,MDT,9/14/2004,9:30:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2A,Orig ID=913041730 Organization ActivityID=YELL_2A_20040913173004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2004 23:30,9/14/2004 15:30,Lake Outlet,Lake,"Site 2A: Lake Outlet. Start just west of Yellowstone River outlet by old sewage hut (small brown building on shore in small patch of trees) and work west toward Ranger Station and convenience store. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 548839 Easting 4933675 Northing",10070001,NA,NA,NA,NA,44.55475278,-110.3850806,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20100812163504^01,Field Msr/Obs,WATER,NA,8/12/2010,16:35:00,MDT,8/13/2010,9:51:00,MDT,20.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,No Fish Caught Orig ID=0812101635 Organization ActivityID=YELL_YSL_171_20100812163504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2010 22:35,8/13/2010 15:51,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20100817183402^01,Field Msr/Obs,WATER,NA,8/17/2010,18:34:00,MDT,8/18/2010,9:20:00,MDT,6.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,2 dropped from 2.5 inch; one dropped in from 1.25 inch Orig ID=0817101834 Organization ActivityID=YELL_YSL_153_20100817183402,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 0:34,8/18/2010 15:20,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20110801112605^01,Field Msr/Obs,WATER,NA,8/1/2011,11:26:00,MDT,8/2/2011,13:53:00,MDT,45.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0801111126 Organization ActivityID=YELL_YSL_041_20110801112605,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 17:26,8/2/2011 19:53,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4A_20061002184003^01,Field Msr/Obs,WATER,NA,10/2/2006,18:40:00,MDT,10/3/2006,10:40:00,MDT,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4A,Orig ID=1002061840 Organization ActivityID=YELL_4A_20061002184003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.8,8.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/3/2006 0:40,10/3/2006 16:40,Arnica Creek,Lake,Site 4A: Arnica Creek. Start just south of Arnica Creek (may not be connected to lake but is just west of hard road to travel) and work west along high bank. 536555 Easting 4924293 Northing,10070001,NA,NA,NA,NA,44.47102222,-110.5404028,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20061005161003^01,Field Msr/Obs,WATER,NA,10/5/2006,16:10:00,MDT,10/6/2006,8:10:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=1005061610 Organization ActivityID=YELL_1A_20061005161003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/5/2006 22:10,10/6/2006 14:10,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_061_20100819173904^01,Field Msr/Obs,WATER,NA,8/19/2010,17:39:00,MDT,8/20/2010,9:30:00,MDT,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_061,No Fish Orig ID=0819101739 Organization ActivityID=YELL_YSL_061_20100819173904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/19/2010 23:39,8/20/2010 15:30,Yellowstone Lake Shoreline KM 61,Lake,This site is located on the south east corner of the West Thumb area of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.5486839,-110.3367893,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20190802131005^01,Field Msr/Obs,WATER,NA,8/2/2019,13:10:00,MDT,8/3/2019,10:48:00,MDT,41.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,small to shore Organization ActivityID=YELL_YSL_021_20190802131005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 19:10,8/3/2019 16:48,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_202108041115_00^01,Field Msr/Obs,WATER,NA,8/4/2021,11:15:00,MDT,8/5/2021,8:37:00,MDT,8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,"Activity Net, Buoy, Start/End UTMs: 2.25'' TO SHORE|4012|17|535428|4915887|535456|4915991 Organization ActivityID=YELL_YSL_012_202108041115_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2021 17:15,8/5/2021 14:37,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20130801104101^01,Field Msr/Obs,WATER,NA,8/1/2013,10:41:00,MDT,8/2/2013,9:38:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0801131041 Organization ActivityID=YELL_YSL_218_20130801104101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 16:41,8/2/2013 15:38,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20140802115005^01,Field Msr/Obs,WATER,NA,8/2/2014,11:50:00,MDT,8/3/2014,9:23:00,MDT,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802141150 Organization ActivityID=YELL_YSL_089_20140802115005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 17:50,8/3/2014 15:23,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20150804100201^01,Field Msr/Obs,WATER,NA,8/4/2015,10:02:00,MDT,8/5/2015,7:56:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804151002 Organization ActivityID=YELL_YSL_168_20150804100201,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 16:02,8/5/2015 13:56,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20110803122003^01,Field Msr/Obs,WATER,NA,8/3/2011,12:20:00,MDT,8/4/2011,10:17:00,MDT,23.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803111220 Organization ActivityID=YELL_YSL_080_20110803122003,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2011 18:20,8/4/2011 16:17,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20110801123501^01,Field Msr/Obs,WATER,NA,8/1/2011,12:35:00,MDT,8/2/2011,9:54:00,MDT,14.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0801111235 Organization ActivityID=YELL_YSL_058_20110801123501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2011 18:35,8/2/2011 15:54,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_227_20170807132905^01,Field Msr/Obs,WATER,NA,8/7/2017,13:29:00,MDT,8/8/2017,8:45:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_227,Orig ID=0807171329 Organization ActivityID=YELL_YSL_227_20170807132905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2017 19:29,8/8/2017 14:45,Yellowstone Lake Shoreline KM 227,Lake,This site is located in the South Arm of Yellowstone Lake along the western shoreline and within the non-motorized zone.,10070001,NA,NA,NA,NA,44.295507,-110.34286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_2B_20100914153902^01,Field Msr/Obs,WATER,NA,9/14/2010,15:39:00,MDT,9/15/2010,8:25:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_2B,Orig ID=0914101539 Organization ActivityID=YELL_2B_20100914153902,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/14/2010 21:39,9/15/2010 14:25,Boathouse,Lake,Site 2B: Boathouse. Start 100 meters west of old boathouse and work west towards marina. 547131 Easting 4932930 Northing,10070001,NA,NA,NA,NA,44.54816111,-110.4066528,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20190801110905^01,Field Msr/Obs,WATER,NA,8/1/2019,11:09:00,MDT,8/2/2019,10:47:00,MDT,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Small end to shore Organization ActivityID=YELL_YSL_041_20190801110905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 17:09,8/2/2019 16:47,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20050920192001^01,Field Msr/Obs,WATER,NA,9/20/2005,19:20:00,MDT,9/21/2005,11:20:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=920051920 Organization ActivityID=YELL_4B_20050920192001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/21/2005 1:20,9/21/2005 17:20,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20190805104504^01,Field Msr/Obs,WATER,NA,8/5/2019,10:45:00,MDT,8/6/2019,7:51:00,MDT,6.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,large end to shore Organization ActivityID=YELL_YSL_168_20190805104504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2019 16:45,8/6/2019 13:51,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20120808110401^01,Field Msr/Obs,WATER,NA,8/8/2012,11:04:00,MDT,8/9/2012,11:24:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,logger 23 Orig ID=0808121104 Organization ActivityID=YELL_YSL_079_20120808110401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2012 17:04,8/9/2012 17:24,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20110809121202^01,Field Msr/Obs,WATER,NA,8/9/2011,12:12:00,MDT,8/10/2011,10:22:00,MDT,8.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0809111212 Organization ActivityID=YELL_YSL_006_20110809121202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 18:12,8/10/2011 16:22,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_202008040935_00^01,Field Msr/Obs,WATER,NA,8/4/2020,9:35:00,MDT,8/5/2020,6:43:00,MDT,40.61,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,"Activity Net, Buoy, Start/End UTMs: Large ETS|4016|22|539618|4920538|539582|4920628 Organization ActivityID=YELL_YSL_003_202008040935_00",NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2020 15:35,8/5/2020 12:43,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20190806101901^01,Field Msr/Obs,WATER,NA,8/6/2019,10:19:00,MDT,8/7/2019,7:27:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,small end to shore Organization ActivityID=YELL_YSL_089_20190806101901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 16:19,8/7/2019 13:27,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20150801103503^01,Field Msr/Obs,WATER,NA,8/1/2015,10:35:00,MDT,8/2/2015,7:48:00,MDT,10.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,0.75 mesh towards shore Orig ID=0801151035 Organization ActivityID=YELL_YSL_218_20150801103503,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2015 16:35,8/2/2015 13:48,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_082_20170804120004^01,Field Msr/Obs,WATER,NA,8/4/2017,12:00:00,MDT,8/5/2017,9:25:00,MDT,11.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_082,Orig ID=0804171200 Organization ActivityID=YELL_YSL_082_20170804120004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 18:00,8/5/2017 15:25,Yellowstone Lake Shoreline KM 82,Lake,This station is located in the main lake basin along the east shoreline. It is approximately 2 km south of Park Point.,10070001,NA,NA,NA,NA,44.4278007,-110.2933926,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20120807171904^01,Field Msr/Obs,WATER,NA,8/7/2012,17:19:00,MDT,8/8/2012,12:02:00,MDT,14.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Temperature reading on Lawrance was not working Orig ID=0807121719 Organization ActivityID=YELL_YSL_003_20120807171904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 23:19,8/8/2012 18:02,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20190801121904^01,Field Msr/Obs,WATER,NA,8/1/2019,12:19:00,MDT,8/2/2019,10:33:00,MDT,14.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,large end to shore Organization ActivityID=YELL_YSL_041_20190801121904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 18:19,8/2/2019 16:33,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20140801100406^01,Field Msr/Obs,WATER,NA,8/1/2014,10:04:00,MDT,8/2/2014,8:25:00,MDT,43.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,No Fish; Mesh 2.25 towards shore Orig ID=0801141004 Organization ActivityID=YELL_YSL_023_20140801100406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2014 16:04,8/2/2014 14:25,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20140802104603^01,Field Msr/Obs,WATER,NA,8/2/2014,10:46:00,MDT,8/3/2014,8:03:00,MDT,8.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,No Mortality collected on YCT Orig ID=0802141046 Organization ActivityID=YELL_YSL_091_20140802104603,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2014 16:46,8/3/2014 14:03,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20190802131806^01,Field Msr/Obs,WATER,NA,8/2/2019,13:18:00,MDT,8/3/2019,10:34:00,MDT,36,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,large to shore Organization ActivityID=YELL_YSL_021_20190802131806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2019 19:18,8/3/2019 16:34,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20190801111101^01,Field Msr/Obs,WATER,NA,8/1/2019,11:11:00,MDT,8/2/2019,10:08:00,MDT,2.37,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Small to shore Organization ActivityID=YELL_YSL_027_20190801111101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2019 17:11,8/2/2019 16:08,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_4B_20040915193504^01,Field Msr/Obs,WATER,NA,9/15/2004,19:35:00,MDT,9/16/2004,11:35:00,MDT,0.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_4B,Orig ID=915041935 Organization ActivityID=YELL_4B_20040915193504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2004 1:35,9/16/2004 17:35,Grant,Lake,Site 4B: Grant. Start just west of boat launch and work west along shore. Make sure to contact Grant patrol rangers to notify them of nets set close to the boat launch area. 535247 Easting 4915919 Northing,10070001,NA,NA,NA,NA,44.3957,-110.5574167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20130804125202^01,Field Msr/Obs,WATER,NA,8/4/2013,12:52:00,MDT,8/5/2013,10:42:00,MDT,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804131252 Organization ActivityID=YELL_YSL_171_20130804125202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 18:52,8/5/2013 16:42,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1C_20061001165001^01,Field Msr/Obs,WATER,NA,10/1/2006,16:50:00,MDT,10/2/2006,8:50:00,MDT,1,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1C,Orig ID=1001061650 Organization ActivityID=YELL_1C_20061001165001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/1/2006 22:50,10/2/2006 14:50,Pelican Creek,Lake,"Site 1C: Pelican Creek. Start just east of Pelican Creek and work east along the shore. Watch out for the sand bar coming off of the creek mouth. These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 550795 Easting 4933237 Northing",10070001,NA,NA,NA,NA,44.550675,-110.3604972,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_152_20110808093006^01,Field Msr/Obs,WATER,NA,8/8/2011,9:30:00,MDT,8/9/2011,7:12:00,MDT,42.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_152,Orig ID=0808110930 Organization ActivityID=YELL_YSL_152_20110808093006,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2011 15:30,8/9/2011 13:12,Yellowstone Lake Shoreline KM 152,Lake,This site is located on the west shore of Yellowstone Lake within the main basin. It is southwest of Frank Island and within region 2 of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.4018675,-110.3937565,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20050919163503^01,Field Msr/Obs,WATER,NA,9/19/2005,16:35:00,MDT,9/20/2005,8:35:00,MDT,NA,NA,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=919051635 Organization ActivityID=YELL_1B_20050919163503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2005 22:35,9/20/2005 14:35,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20110802112703^01,Field Msr/Obs,WATER,NA,8/2/2011,11:27:00,MDT,8/3/2011,8:32:00,MDT,23.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0802111127 Organization ActivityID=YELL_YSL_067_20110802112703,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2011 17:27,8/3/2011 14:32,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_036_20100817191005^01,Field Msr/Obs,WATER,NA,8/17/2010,19:10:00,MDT,8/18/2010,8:00:00,MDT,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_036,2 LKT Orig ID=0817101910 Organization ActivityID=YELL_YSL_036_20100817191005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 1:10,8/18/2010 14:00,Yellowstone Lake Shoreline KM 36,Lake,This site is located in the Breeze Channel portion of Yellowstone Lake in region 2. It is on the north shore of the channel approximately midway between Pumice and Rock points.,10070001,NA,NA,NA,NA,44.4716928,-110.4539624,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20190806110604^01,Field Msr/Obs,WATER,NA,8/6/2019,11:06:00,MDT,8/7/2019,8:54:00,MDT,12.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,large to shore Organization ActivityID=YELL_YSL_120_20190806110604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2019 17:06,8/7/2019 14:54,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20100917142505^01,Field Msr/Obs,WATER,NA,9/17/2010,14:25:00,MDT,9/18/2010,8:13:00,MDT,1.6,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=0917101425 Organization ActivityID=YELL_1B_20100917142505,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/17/2010 20:25,9/18/2010 14:13,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20100802180303^01,Field Msr/Obs,WATER,NA,8/2/2010,18:03:00,MDT,8/3/2010,10:05:00,MDT,16,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0802101803 Organization ActivityID=YELL_YSL_052_20100802180303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2010 0:03,8/3/2010 16:05,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20110810132704^01,Field Msr/Obs,WATER,NA,8/10/2011,13:27:00,MDT,8/11/2011,8:12:00,MDT,22.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,No Fish Orig ID=0810111327 Organization ActivityID=YELL_YSL_023_20110810132704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2011 19:27,8/11/2011 14:12,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1B_20040915163002^01,Field Msr/Obs,WATER,NA,9/15/2004,16:30:00,MDT,9/16/2004,8:30:00,MDT,1.2,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1B,Orig ID=915041630 Organization ActivityID=YELL_1B_20040915163002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2004 22:30,9/16/2004 14:30,Mary Bay,Lake,"Site 1B: Mary Bay. Start at UTM and work west along shoreline (Just west of steamboat point). These nets get hit hard by the wind so make sure you have enough weight attached, small 5lbs. won't do the trick. 556118 Easting 4932243 Northing",10070001,NA,NA,NA,NA,44.54133333,-110.2935944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20130801112404^01,Field Msr/Obs,WATER,NA,8/1/2013,11:24:00,MDT,8/2/2013,9:04:00,MDT,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801131124 Organization ActivityID=YELL_YSL_190_20130801112404,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 17:24,8/2/2013 15:04,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_209_20130801122501^01,Field Msr/Obs,WATER,NA,8/1/2013,12:25:00,MDT,8/2/2013,11:05:00,MDT,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_209,Orig ID=0801131225 Organization ActivityID=YELL_YSL_209_20130801122501,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 18:25,8/2/2013 17:05,Yellowstone Lake Shoreline KM 209,Lake,This station is located in the non-motorized zone of the Southeast Arm of Yellowstone Lake. It is located along the western shoreline and west of the Molly Islands.,10070001,NA,NA,NA,NA,44.31368,-110.28181,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20180801092705^01,Field Msr/Obs,WATER,NA,8/1/2018,9:27:00,MDT,8/2/2018,7:25:00,MDT,6.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,2.25 to shore; No Fish Orig ID=0801180927 Organization ActivityID=YELL_YSL_023_20180801092705,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2018 15:27,8/2/2018 13:25,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20150805122501^01,Field Msr/Obs,WATER,NA,8/5/2015,12:25:00,MDT,8/6/2015,12:19:00,MDT,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0805151225 Organization ActivityID=YELL_YSL_012_20150805122501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 18:25,8/6/2015 18:19,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20180802102904^01,Field Msr/Obs,WATER,NA,8/2/2018,10:29:00,MDT,8/3/2018,8:13:00,MDT,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,2.25 to Shore Orig ID=0802181029 Organization ActivityID=YELL_YSL_045_20180802102904,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2018 16:29,8/3/2018 14:13,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20130801110303^01,Field Msr/Obs,WATER,NA,8/1/2013,11:03:00,MDT,8/2/2013,8:50:00,MDT,10.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Orig ID=0801131103 Organization ActivityID=YELL_YSL_218_20130801110303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2013 17:03,8/2/2013 14:50,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20100810153102^01,Field Msr/Obs,WATER,NA,8/10/2010,15:31:00,MDT,8/11/2010,8:32:00,MDT,10.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0810101531 Organization ActivityID=YELL_YSL_029_20100810153102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2010 21:31,8/11/2010 14:32,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20150805090101^01,Field Msr/Obs,WATER,NA,8/5/2015,9:01:00,MDT,8/6/2015,9:33:00,MDT,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0805150901 Organization ActivityID=YELL_YSL_003_20150805090101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2015 15:01,8/6/2015 15:33,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_068_20100818172203^01,Field Msr/Obs,WATER,NA,8/18/2010,17:22:00,MDT,8/19/2010,8:21:00,MDT,18.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_068,wind and waves Orig ID=0818101722 Organization ActivityID=YELL_YSL_068_20100818172203,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 23:22,8/19/2010 14:21,Yellowstone Lake Shoreline KM 68,Lake,This station is located in the main basin in region 3. It is found along the east shore approximately 1 km south of Steamboat Point.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20170803104005^01,Field Msr/Obs,WATER,NA,8/3/2017,10:40:00,MDT,8/4/2017,11:20:00,MDT,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0803171040 Organization ActivityID=YELL_YSL_077_20170803104005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2017 16:40,8/4/2017 17:20,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20170802112703^01,Field Msr/Obs,WATER,NA,8/2/2017,11:27:00,MDT,8/3/2017,8:01:00,MDT,13.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0802171127 Organization ActivityID=YELL_YSL_023_20170802112703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:27,8/3/2017 14:01,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20180804101205^01,Field Msr/Obs,WATER,NA,8/4/2018,10:12:00,MDT,8/5/2018,8:12:00,MDT,39.98,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Organization ActivityID=YELL_YSL_153_20180804101205,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2018 16:12,8/5/2018 14:12,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20150804093701^01,Field Msr/Obs,WATER,NA,8/4/2015,9:37:00,MDT,8/5/2015,7:16:00,MDT,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804150937 Organization ActivityID=YELL_YSL_158_20150804093701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2015 15:37,8/5/2015 13:16,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20110809095105^01,Field Msr/Obs,WATER,NA,8/9/2011,9:51:00,MDT,8/10/2011,7:45:00,MDT,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0809110951 Organization ActivityID=YELL_YSL_153_20110809095105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2011 15:51,8/10/2011 13:45,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20160806110806^01,Field Msr/Obs,WATER,NA,8/6/2016,11:08:00,MST,8/7/2016,9:18:00,MST,44.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,NO FISH Orig ID=0806161108 Organization ActivityID=YELL_YSL_025_20160806110806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:08,8/7/2016 16:18,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20160807133106^01,Field Msr/Obs,WATER,NA,8/7/2016,13:31:00,MST,8/8/2016,12:45:00,MST,48.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,NO FISH Orig ID=0807161331 Organization ActivityID=YELL_YSL_003_20160807133106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 20:31,8/8/2016 19:45,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20160807110005^01,Field Msr/Obs,WATER,NA,8/7/2016,11:00:00,MST,8/8/2016,10:12:00,MST,38.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0807161100 Organization ActivityID=YELL_YSL_012_20160807110005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 18:00,8/8/2016 17:12,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20160803114001^01,Field Msr/Obs,WATER,NA,8/3/2016,11:40:00,MST,8/4/2016,9:42:00,MST,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0803161140 Organization ActivityID=YELL_YSL_079_20160803114001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:40,8/4/2016 16:42,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20130807110905^01,Field Msr/Obs,WATER,NA,8/7/2013,11:09:00,MST,8/8/2013,9:31:00,MST,41.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807131109 Organization ActivityID=YELL_YSL_029_20130807110905,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 18:09,8/8/2013 16:31,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20160806105203^01,Field Msr/Obs,WATER,NA,8/6/2016,10:52:00,MST,8/7/2016,7:52:00,MST,10.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0806161052 Organization ActivityID=YELL_YSL_025_20160806105203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 17:52,8/7/2016 14:52,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20160801101904^01,Field Msr/Obs,WATER,NA,8/1/2016,10:19:00,MST,8/2/2016,10:13:00,MST,16.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,No fish Orig ID=0801161019 Organization ActivityID=YELL_YSL_221_20160801101904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 17:19,8/2/2016 17:13,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20160802123702^01,Field Msr/Obs,WATER,NA,8/2/2016,12:37:00,MST,8/3/2016,13:51:00,MST,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0802161237 Organization ActivityID=YELL_YSL_121_20160802123702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 19:37,8/3/2016 20:51,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20130807111306^01,Field Msr/Obs,WATER,NA,8/7/2013,11:13:00,MST,8/8/2013,9:22:00,MST,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=08071113 Organization ActivityID=YELL_YSL_029_20130807111306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 18:13,8/8/2013 16:22,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20160806150706^01,Field Msr/Obs,WATER,NA,8/6/2016,15:07:00,MST,8/7/2016,11:27:00,MST,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,NO FISH Orig ID=0806161507 Organization ActivityID=YELL_YSL_041_20160806150706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 22:07,8/7/2016 18:27,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20160802150304^01,Field Msr/Obs,WATER,NA,8/2/2016,15:03:00,MST,8/3/2016,9:48:00,MST,11.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802161503 Organization ActivityID=YELL_YSL_089_20160802150304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 22:03,8/3/2016 16:48,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20130806124906^01,Field Msr/Obs,WATER,NA,8/6/2013,12:49:00,MST,8/7/2013,9:44:00,MST,38.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0806131249 Organization ActivityID=YELL_YSL_021_20130806124906,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 19:49,8/7/2013 16:44,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20160805111402^01,Field Msr/Obs,WATER,NA,8/5/2016,11:14:00,MST,8/6/2016,8:34:00,MST,6.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805161114 Organization ActivityID=YELL_YSL_065_20160805111402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:14,8/6/2016 15:34,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20160802120106^01,Field Msr/Obs,WATER,NA,8/2/2016,12:01:00,MST,8/3/2016,10:54:00,MST,41.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,No Fish Orig ID=0802161201 Organization ActivityID=YELL_YSL_115_20160802120106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 19:01,8/3/2016 17:54,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20130805110506^01,Field Msr/Obs,WATER,NA,8/5/2013,11:05:00,MST,8/6/2013,9:04:00,MST,36.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0805131105 Organization ActivityID=YELL_YSL_059_20130805110506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 18:05,8/6/2013 16:04,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20160802140602^01,Field Msr/Obs,WATER,NA,8/2/2016,14:06:00,MST,8/3/2016,8:14:00,MST,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0802161406 Organization ActivityID=YELL_YSL_091_20160802140602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 21:06,8/3/2016 15:14,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20130804111204^01,Field Msr/Obs,WATER,NA,8/4/2013,11:12:00,MST,8/5/2013,7:25:00,MST,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0804131112 Organization ActivityID=YELL_YSL_175_20130804111204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 18:12,8/5/2013 14:25,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20160805125104^01,Field Msr/Obs,WATER,NA,8/5/2016,12:51:00,MST,8/6/2016,12:52:00,MST,6.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0805161251 Organization ActivityID=YELL_YSL_052_20160805125104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 19:51,8/6/2016 19:52,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20160805113003^01,Field Msr/Obs,WATER,NA,8/5/2016,11:30:00,MST,8/6/2016,9:10:00,MST,10.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805161130 Organization ActivityID=YELL_YSL_065_20160805113003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:30,8/6/2016 16:10,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20160802111702^01,Field Msr/Obs,WATER,NA,8/2/2016,11:17:00,MST,8/3/2016,9:07:00,MST,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0802161117 Organization ActivityID=YELL_YSL_115_20160802111702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 18:17,8/3/2016 16:07,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20160802120905^01,Field Msr/Obs,WATER,NA,8/2/2016,12:09:00,MST,8/3/2016,10:33:00,MST,41.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0802161209 Organization ActivityID=YELL_YSL_115_20160802120905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 19:09,8/3/2016 17:33,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20160801110404^01,Field Msr/Obs,WATER,NA,8/1/2016,11:04:00,MST,8/2/2016,12:47:00,MST,18.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801161104 Organization ActivityID=YELL_YSL_190_20160801110404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 18:04,8/2/2016 19:47,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20130804124701^01,Field Msr/Obs,WATER,NA,8/4/2013,12:47:00,MST,8/5/2013,10:11:00,MST,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804131247 Organization ActivityID=YELL_YSL_171_20130804124701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 19:47,8/5/2013 17:11,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20130804112907^01,Field Msr/Obs,WATER,NA,8/4/2013,11:29:00,MST,8/5/2013,7:42:00,MST,44.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0804131129 Organization ActivityID=YELL_YSL_175_20130804112907,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 18:29,8/5/2013 14:42,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20160802113704^01,Field Msr/Obs,WATER,NA,8/2/2016,11:37:00,MST,8/3/2016,9:53:00,MST,6.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0802161137 Organization ActivityID=YELL_YSL_115_20160802113704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 18:37,8/3/2016 16:53,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20160807090403^01,Field Msr/Obs,WATER,NA,8/7/2016,9:04:00,MST,8/8/2016,9:42:00,MST,13.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0807160904 Organization ActivityID=YELL_YSL_012_20160807090403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 16:04,8/8/2016 16:42,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20160806103702^01,Field Msr/Obs,WATER,NA,8/6/2016,10:37:00,MST,8/7/2016,8:10:00,MST,0.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0806161037 Organization ActivityID=YELL_YSL_045_20160806103702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 17:37,8/7/2016 15:10,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20160803122905^01,Field Msr/Obs,WATER,NA,8/3/2016,12:29:00,MST,8/4/2016,10:17:00,MST,41.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0803161229 Organization ActivityID=YELL_YSL_128_20160803122905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 19:29,8/4/2016 17:17,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20160801101303^01,Field Msr/Obs,WATER,NA,8/1/2016,10:13:00,MST,8/2/2016,10:18:00,MST,16.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0801161013 Organization ActivityID=YELL_YSL_221_20160801101303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 17:13,8/2/2016 17:18,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20160804121006^01,Field Msr/Obs,WATER,NA,8/4/2016,12:10:00,MST,8/5/2016,9:42:00,MST,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,No fish Orig ID=0804161210 Organization ActivityID=YELL_YSL_171_20160804121006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 19:10,8/5/2016 16:42,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20130807101704^01,Field Msr/Obs,WATER,NA,8/7/2013,10:17:00,MST,8/8/2013,7:40:00,MST,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,No fish Orig ID=0807131017 Organization ActivityID=YELL_YSL_027_20130807101704,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 17:17,8/8/2013 14:40,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20160805111801^01,Field Msr/Obs,WATER,NA,8/5/2016,11:18:00,MST,8/6/2016,8:40:00,MST,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805161118 Organization ActivityID=YELL_YSL_065_20160805111801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:18,8/6/2016 15:40,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20160804075101^01,Field Msr/Obs,WATER,NA,8/4/2016,7:51:00,MST,8/5/2016,7:00:00,MST,1.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804160751 Organization ActivityID=YELL_YSL_158_20160804075101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 14:51,8/5/2016 14:00,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20160805114306^01,Field Msr/Obs,WATER,NA,8/5/2016,11:43:00,MST,8/6/2016,10:00:00,MST,35,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805161143 Organization ActivityID=YELL_YSL_058_20160805114306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:43,8/6/2016 17:00,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20160806104501^01,Field Msr/Obs,WATER,NA,8/6/2016,10:45:00,MST,8/7/2016,7:21:00,MST,0.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0806161045 Organization ActivityID=YELL_YSL_045_20160806104501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 17:45,8/7/2016 14:21,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20160805111102^01,Field Msr/Obs,WATER,NA,8/5/2016,11:11:00,MST,8/6/2016,7:43:00,MST,0.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805161111 Organization ActivityID=YELL_YSL_058_20160805111102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:11,8/6/2016 14:43,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20160805103001^01,Field Msr/Obs,WATER,NA,8/5/2016,10:30:00,MST,8/6/2016,7:04:00,MST,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805161030 Organization ActivityID=YELL_YSL_067_20160805103001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 17:30,8/6/2016 14:04,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20160804114802^01,Field Msr/Obs,WATER,NA,8/4/2016,11:48:00,MST,8/5/2016,8:58:00,MST,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804161148 Organization ActivityID=YELL_YSL_171_20160804114802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:48,8/5/2016 15:58,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20160802124701^01,Field Msr/Obs,WATER,NA,8/2/2016,12:47:00,MST,8/3/2016,13:30:00,MST,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0802161247 Organization ActivityID=YELL_YSL_121_20160802124701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 19:47,8/3/2016 20:30,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20160806145504^01,Field Msr/Obs,WATER,NA,8/6/2016,14:55:00,MST,8/7/2016,11:00:00,MST,6.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0806161455 Organization ActivityID=YELL_YSL_041_20160806145504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 21:55,8/7/2016 18:00,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20160807110802^01,Field Msr/Obs,WATER,NA,8/7/2016,11:08:00,MST,8/8/2016,10:30:00,MST,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0807161108 Organization ActivityID=YELL_YSL_009_20160807110802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 18:08,8/8/2016 17:30,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20160807111603^01,Field Msr/Obs,WATER,NA,8/7/2016,11:16:00,MST,8/8/2016,11:02:00,MST,14.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0807161116 Organization ActivityID=YELL_YSL_009_20160807111603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 18:16,8/8/2016 18:02,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20130808101302^01,Field Msr/Obs,WATER,NA,8/8/2013,10:13:00,MST,8/9/2013,7:20:00,MST,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808131013 Organization ActivityID=YELL_YSL_163_20130808101302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2013 17:13,8/9/2013 14:20,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20130806123805^01,Field Msr/Obs,WATER,NA,8/6/2013,12:38:00,MST,8/7/2013,9:50:00,MST,39.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0806131238 Organization ActivityID=YELL_YSL_021_20130806123805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 19:38,8/7/2013 16:50,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20160804111901^01,Field Msr/Obs,WATER,NA,8/4/2016,11:19:00,MST,8/5/2016,9:02:00,MST,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0804161119 Organization ActivityID=YELL_YSL_153_20160804111901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:19,8/5/2016 16:02,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20130805131805^01,Field Msr/Obs,WATER,NA,8/5/2013,13:18:00,MST,8/6/2013,9:45:00,MST,38.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,large to shore (38.8 depth of logger) Orig ID=0805131318 Organization ActivityID=YELL_YSL_041_20130805131805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 20:18,8/6/2013 16:45,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20160802141204^01,Field Msr/Obs,WATER,NA,8/2/2016,14:12:00,MST,8/3/2016,8:28:00,MST,11,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0802161412 Organization ActivityID=YELL_YSL_091_20160802141204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 21:12,8/3/2016 15:28,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20130918171605^01,Field Msr/Obs,WATER,NA,9/18/2013,17:16:00,MST,9/19/2013,13:50:00,MST,1.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0918131716 Organization ActivityID=YELL_3B_20130918171605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2013 0:16,9/19/2013 20:50,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20160803115101^01,Field Msr/Obs,WATER,NA,8/3/2016,11:51:00,MST,8/4/2016,9:19:00,MST,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0803161151 Organization ActivityID=YELL_YSL_128_20160803115101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:51,8/4/2016 16:19,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20160804081103^01,Field Msr/Obs,WATER,NA,8/4/2016,8:11:00,MST,8/5/2016,7:48:00,MST,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804160811 Organization ActivityID=YELL_YSL_158_20160804081103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 15:11,8/5/2016 14:48,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20160806113602^01,Field Msr/Obs,WATER,NA,8/6/2016,11:36:00,MST,8/7/2016,9:54:00,MST,3.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806161136 Organization ActivityID=YELL_YSL_023_20160806113602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:36,8/7/2016 16:54,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20160803115904^01,Field Msr/Obs,WATER,NA,8/3/2016,11:59:00,MST,8/4/2016,9:59:00,MST,12.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0803161159 Organization ActivityID=YELL_YSL_128_20160803115904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:59,8/4/2016 16:59,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20160807122102^01,Field Msr/Obs,WATER,NA,8/7/2016,12:21:00,MST,8/8/2016,9:47:00,MST,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0807161221 Organization ActivityID=YELL_YSL_006_20160807122102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 19:21,8/8/2016 16:47,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20160802135801^01,Field Msr/Obs,WATER,NA,8/2/2016,13:58:00,MST,8/3/2016,7:54:00,MST,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0802161358 Organization ActivityID=YELL_YSL_091_20160802135801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 20:58,8/3/2016 14:54,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20160805131905^01,Field Msr/Obs,WATER,NA,8/5/2016,13:19:00,MST,8/6/2016,13:31:00,MST,40.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0805161319 Organization ActivityID=YELL_YSL_052_20160805131905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 20:19,8/6/2016 20:31,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20160806111605^01,Field Msr/Obs,WATER,NA,8/6/2016,11:16:00,MST,8/7/2016,9:28:00,MST,39,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0806161116 Organization ActivityID=YELL_YSL_025_20160806111605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:16,8/7/2016 16:28,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20160804114103^01,Field Msr/Obs,WATER,NA,8/4/2016,11:41:00,MST,8/5/2016,9:53:00,MST,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0804161141 Organization ActivityID=YELL_YSL_153_20160804114103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:41,8/5/2016 16:53,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20130804120604^01,Field Msr/Obs,WATER,NA,8/4/2013,12:06:00,MST,8/5/2013,8:36:00,MST,9.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0804131206 Organization ActivityID=YELL_YSL_177_20130804120604,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 19:06,8/5/2013 15:36,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20130803115503^01,Field Msr/Obs,WATER,NA,8/3/2013,11:55:00,MST,8/4/2013,9:10:00,MST,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,Orig ID=0803131155 Organization ActivityID=YELL_YSL_101_20130803115503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 18:55,8/4/2013 16:10,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20160808130402^01,Field Msr/Obs,WATER,NA,8/8/2016,13:04:00,MST,8/9/2016,7:08:00,MST,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0808161304 Organization ActivityID=YELL_YSL_144_20160808130402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 20:04,8/9/2016 14:08,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20160805105405^01,Field Msr/Obs,WATER,NA,8/5/2016,10:54:00,MST,8/6/2016,8:02:00,MST,34.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805161054 Organization ActivityID=YELL_YSL_067_20160805105405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 17:54,8/6/2016 15:02,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20160807124706^01,Field Msr/Obs,WATER,NA,8/7/2016,12:47:00,MST,8/8/2016,11:04:00,MST,39.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,NO FISH Orig ID=0807161247 Organization ActivityID=YELL_YSL_006_20160807124706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 19:47,8/8/2016 18:04,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20130805112506^01,Field Msr/Obs,WATER,NA,8/5/2013,11:25:00,MST,8/6/2013,9:27:00,MST,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805131125 Organization ActivityID=YELL_YSL_058_20130805112506,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 18:25,8/6/2013 16:27,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20160806103601^01,Field Msr/Obs,WATER,NA,8/6/2016,10:36:00,MST,8/7/2016,7:30:00,MST,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0806161036 Organization ActivityID=YELL_YSL_025_20160806103601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 17:36,8/7/2016 14:30,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20130918171204^01,Field Msr/Obs,WATER,NA,9/18/2013,17:12:00,MST,9/19/2013,13:19:00,MST,1.3,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0918131712 Organization ActivityID=YELL_3B_20130918171204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2013 0:12,9/19/2013 20:19,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20160801104802^01,Field Msr/Obs,WATER,NA,8/1/2016,10:48:00,MST,8/2/2016,12:09:00,MST,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801161048 Organization ActivityID=YELL_YSL_190_20160801104802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 17:48,8/2/2016 19:09,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20130807102805^01,Field Msr/Obs,WATER,NA,8/7/2013,10:28:00,MST,8/8/2013,7:59:00,MST,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,no fish Orig ID=0807131028 Organization ActivityID=YELL_YSL_027_20130807102805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 17:28,8/8/2013 14:59,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20160805125903^01,Field Msr/Obs,WATER,NA,8/5/2016,12:59:00,MST,8/6/2016,12:26:00,MST,10.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0805161259 Organization ActivityID=YELL_YSL_052_20160805125903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 19:59,8/6/2016 19:26,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_7C_20130918175405^01,Field Msr/Obs,WATER,NA,9/18/2013,17:54:00,MST,9/19/2013,9:15:00,MST,0.9,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_7C,Orig ID=0918131754 Organization ActivityID=YELL_7C_20130918175405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.8,12.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2013 0:54,9/19/2013 16:15,Trail Creek SE Arm,Lake,"Site 7C: Trail Creek. Start just to the northeast of the Yellowstone River and work northeast towards Terrace Point. Delta is very shallow for quite a distance from shore, so make sure you are deep enough at the start. 563130 Easting 4908212 Northing",10070001,NA,NA,NA,NA,44.32442778,-110.2081667,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20130804125904^01,Field Msr/Obs,WATER,NA,8/4/2013,12:59:00,MST,8/5/2013,8:59:00,MST,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804131259 Organization ActivityID=YELL_YSL_171_20130804125904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 19:59,8/5/2013 15:59,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20130806112303^01,Field Msr/Obs,WATER,NA,8/6/2013,11:23:00,MST,8/7/2013,8:02:00,MST,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,1.25 fish are on 2.00 stringer. 15 LKT. Yellow Orig ID=0806131123 Organization ActivityID=YELL_YSL_023_20130806112303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 18:23,8/7/2013 15:02,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20130807110304^01,Field Msr/Obs,WATER,NA,8/7/2013,11:03:00,MST,8/8/2013,8:49:00,MST,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807131103 Organization ActivityID=YELL_YSL_029_20130807110304,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 18:03,8/8/2013 15:49,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20160808123406^01,Field Msr/Obs,WATER,NA,8/8/2016,12:34:00,MST,8/9/2016,9:41:00,MST,37.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,No Fish Orig ID=0808161234 Organization ActivityID=YELL_YSL_163_20160808123406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 19:34,8/9/2016 16:41,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20160805112404^01,Field Msr/Obs,WATER,NA,8/5/2016,11:24:00,MST,8/6/2016,9:00:00,MST,11.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805161124 Organization ActivityID=YELL_YSL_065_20160805112404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:24,8/6/2016 16:00,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20160805104804^01,Field Msr/Obs,WATER,NA,8/5/2016,10:48:00,MST,8/6/2016,7:50:00,MST,7.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805161048 Organization ActivityID=YELL_YSL_067_20160805104804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 17:48,8/6/2016 14:50,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20130803135304^01,Field Msr/Obs,WATER,NA,8/3/2013,13:53:00,MST,8/4/2013,11:32:00,MST,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0803131353 Organization ActivityID=YELL_YSL_158_20130803135304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 20:53,8/4/2013 18:32,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20160804110402^01,Field Msr/Obs,WATER,NA,8/4/2016,11:04:00,MST,8/5/2016,7:08:00,MST,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0804161104 Organization ActivityID=YELL_YSL_077_20160804110402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:04,8/5/2016 14:08,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20160802134106^01,Field Msr/Obs,WATER,NA,8/2/2016,13:41:00,MST,8/3/2016,15:01:00,MST,41.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,No Fish Orig ID=0802161341 Organization ActivityID=YELL_YSL_121_20160802134106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 20:41,8/3/2016 22:01,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20160807113005^01,Field Msr/Obs,WATER,NA,8/7/2016,11:30:00,MST,8/8/2016,11:24:00,MST,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0807161130 Organization ActivityID=YELL_YSL_009_20160807113005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.3,15.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 18:30,8/8/2016 18:24,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20130804133405^01,Field Msr/Obs,WATER,NA,8/4/2013,13:34:00,MST,8/5/2013,9:43:00,MST,9.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804131334 Organization ActivityID=YELL_YSL_171_20130804133405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 20:34,8/5/2013 16:43,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20130805113601^01,Field Msr/Obs,WATER,NA,8/5/2013,11:36:00,MST,8/6/2013,11:02:00,MST,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,small to shore.(2.7 m depth of logger) Orig ID=0805131136 Organization ActivityID=YELL_YSL_041_20130805113601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 18:36,8/6/2013 18:02,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20130806132801^01,Field Msr/Obs,WATER,NA,8/6/2013,13:28:00,MST,8/7/2013,7:03:00,MST,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0806131328 Organization ActivityID=YELL_YSL_003_20130806132801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 20:28,8/7/2013 14:03,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20160807110206^01,Field Msr/Obs,WATER,NA,8/7/2016,11:02:00,MST,8/8/2016,10:02:00,MST,38.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,No Fish Orig ID=0807161102 Organization ActivityID=YELL_YSL_012_20160807110206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 18:02,8/8/2016 17:02,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20130805114901^01,Field Msr/Obs,WATER,NA,8/5/2013,11:49:00,MST,8/6/2013,8:38:00,MST,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Large to shore (3.3 depth of logger) Orig ID=0805131149 Organization ActivityID=YELL_YSL_042_20130805114901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 18:49,8/6/2013 15:38,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20160807133905^01,Field Msr/Obs,WATER,NA,8/7/2016,13:39:00,MST,8/8/2016,12:39:00,MST,44.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0807161339 Organization ActivityID=YELL_YSL_003_20160807133905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 20:39,8/8/2016 19:39,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20130807102306^01,Field Msr/Obs,WATER,NA,8/7/2013,10:23:00,MST,8/8/2013,7:49:00,MST,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,no fish Orig ID=0807131023 Organization ActivityID=YELL_YSL_027_20130807102306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 17:23,8/8/2013 14:49,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20130804115701^01,Field Msr/Obs,WATER,NA,8/4/2013,11:57:00,MST,8/5/2013,9:27:00,MST,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0804131157 Organization ActivityID=YELL_YSL_177_20130804115701,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 18:57,8/5/2013 16:27,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20160802125303^01,Field Msr/Obs,WATER,NA,8/2/2016,12:53:00,MST,8/3/2016,14:05:00,MST,14.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0802161253 Organization ActivityID=YELL_YSL_121_20160802125303,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 19:53,8/3/2016 21:05,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20160803120006^01,Field Msr/Obs,WATER,NA,8/3/2016,12:00:00,MST,8/4/2016,10:34:00,MST,31.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,No Fish Orig ID=0803161200 Organization ActivityID=YELL_YSL_079_20160803120006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 19:00,8/4/2016 17:34,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20160805130906^01,Field Msr/Obs,WATER,NA,8/5/2016,13:09:00,MST,8/6/2016,13:35:00,MST,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0805161309 Organization ActivityID=YELL_YSL_052_20160805130906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 20:09,8/6/2016 20:35,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20160806105804^01,Field Msr/Obs,WATER,NA,8/6/2016,10:58:00,MST,8/7/2016,8:04:00,MST,8.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,No Fish Orig ID=0806161058 Organization ActivityID=YELL_YSL_025_20160806105804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 17:58,8/7/2016 15:04,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20160805121102^01,Field Msr/Obs,WATER,NA,8/5/2016,12:11:00,MST,8/6/2016,12:16:00,MST,1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0805161211 Organization ActivityID=YELL_YSL_052_20160805121102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 19:11,8/6/2016 19:16,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20160802151005^01,Field Msr/Obs,WATER,NA,8/2/2016,15:10:00,MST,8/3/2016,10:00:00,MST,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802161510 Organization ActivityID=YELL_YSL_089_20160802151005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 22:10,8/3/2016 17:00,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20130806123305^01,Field Msr/Obs,WATER,NA,8/6/2013,12:33:00,MST,8/7/2013,10:56:00,MST,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0806131233 Organization ActivityID=YELL_YSL_012_20130806123305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12,12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 19:33,8/7/2013 17:56,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20130805112005^01,Field Msr/Obs,WATER,NA,8/5/2013,11:20:00,MST,8/6/2013,9:15:00,MST,40.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805131120 Organization ActivityID=YELL_YSL_058_20130805112005,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 18:20,8/6/2013 16:15,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20160806112601^01,Field Msr/Obs,WATER,NA,8/6/2016,11:26:00,MST,8/7/2016,9:42:00,MST,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806161126 Organization ActivityID=YELL_YSL_023_20160806112601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:26,8/7/2016 16:42,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20130918170603^01,Field Msr/Obs,WATER,NA,9/18/2013,17:06:00,MST,9/19/2013,13:06:00,MST,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0918131706 Organization ActivityID=YELL_3B_20130918170603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2013 0:06,9/19/2013 20:06,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20160807131101^01,Field Msr/Obs,WATER,NA,8/7/2016,13:11:00,MST,8/8/2016,11:25:00,MST,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0807161311 Organization ActivityID=YELL_YSL_003_20160807131101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 20:11,8/8/2016 18:25,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20160803112205^01,Field Msr/Obs,WATER,NA,8/3/2016,11:22:00,MST,8/4/2016,9:16:00,MST,37.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803161122 Organization ActivityID=YELL_YSL_080_20160803112205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:22,8/4/2016 16:16,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20160807132303^01,Field Msr/Obs,WATER,NA,8/7/2016,13:23:00,MST,8/8/2016,11:58:00,MST,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0807161323 Organization ActivityID=YELL_YSL_003_20160807132303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 20:23,8/8/2016 18:58,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_021_20130806123204^01,Field Msr/Obs,WATER,NA,8/6/2013,12:32:00,MST,8/7/2013,9:19:00,MST,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_021,Orig ID=0806131232 Organization ActivityID=YELL_YSL_021_20130806123204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 19:32,8/7/2013 16:19,Yellowstone Lake Shoreline KM 21,Lake,This site is located along the western shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44215565,-110.567409,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20130803134705^01,Field Msr/Obs,WATER,NA,8/3/2013,13:47:00,MST,8/4/2013,11:11:00,MST,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0813131347 Organization ActivityID=YELL_YSL_158_20130803134705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 20:47,8/4/2013 18:11,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20130807133906^01,Field Msr/Obs,WATER,NA,8/7/2013,13:39:00,MST,8/8/2013,9:34:00,MST,38.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,no fish Orig ID=0807131339 Organization ActivityID=YELL_YSL_080_20130807133906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 20:39,8/8/2013 16:34,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20160807130502^01,Field Msr/Obs,WATER,NA,8/7/2016,13:05:00,MST,8/8/2016,11:46:00,MST,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0807161305 Organization ActivityID=YELL_YSL_003_20160807130502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 20:05,8/8/2016 18:46,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20160803110404^01,Field Msr/Obs,WATER,NA,8/3/2016,11:04:00,MST,8/4/2016,8:10:00,MST,11.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803161104 Organization ActivityID=YELL_YSL_080_20160803110404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:04,8/4/2016 15:10,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20160803115405^01,Field Msr/Obs,WATER,NA,8/3/2016,11:54:00,MST,8/4/2016,10:22:00,MST,48,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0803161154 Organization ActivityID=YELL_YSL_079_20160803115405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:54,8/4/2016 17:22,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20160804120105^01,Field Msr/Obs,WATER,NA,8/4/2016,12:01:00,MST,8/5/2016,10:19:00,MST,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0804161201 Organization ActivityID=YELL_YSL_153_20160804120105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 19:01,8/5/2016 17:19,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20130805104504^01,Field Msr/Obs,WATER,NA,8/5/2013,10:45:00,MST,8/6/2013,7:37:00,MST,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0805131045 Organization ActivityID=YELL_YSL_059_20130805104504,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 17:45,8/6/2013 14:37,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20160805102602^01,Field Msr/Obs,WATER,NA,8/5/2016,10:26:00,MST,8/6/2016,6:56:00,MST,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805161026 Organization ActivityID=YELL_YSL_067_20160805102602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 17:26,8/6/2016 13:56,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20130806140005^01,Field Msr/Obs,WATER,NA,8/6/2013,14:00:00,MST,8/7/2013,6:13:00,MST,42,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0806131400 Organization ActivityID=YELL_YSL_003_20130806140005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.1,14.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 21:00,8/7/2013 13:13,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20160803114603^01,Field Msr/Obs,WATER,NA,8/3/2016,11:46:00,MST,8/4/2016,9:58:00,MST,15.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0803161146 Organization ActivityID=YELL_YSL_079_20160803114603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:46,8/4/2016 16:58,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20160804115203^01,Field Msr/Obs,WATER,NA,8/4/2016,11:52:00,MST,8/5/2016,9:10:00,MST,11.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804161152 Organization ActivityID=YELL_YSL_171_20160804115203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:52,8/5/2016 16:10,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20160808121604^01,Field Msr/Obs,WATER,NA,8/8/2016,12:16:00,MST,8/9/2016,9:00:00,MST,12.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808161216 Organization ActivityID=YELL_YSL_163_20160808121604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 19:16,8/9/2016 16:00,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20160805115505^01,Field Msr/Obs,WATER,NA,8/5/2016,11:55:00,MST,8/6/2016,9:42:00,MST,35.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805161155 Organization ActivityID=YELL_YSL_058_20160805115505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:55,8/6/2016 16:42,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20160805104403^01,Field Msr/Obs,WATER,NA,8/5/2016,10:44:00,MST,8/6/2016,7:34:00,MST,8.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,Orig ID=0805161044 Organization ActivityID=YELL_YSL_067_20160805104403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 17:44,8/6/2016 14:34,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20160802143005^01,Field Msr/Obs,WATER,NA,8/2/2016,14:30:00,MST,8/3/2016,8:58:00,MST,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0802161430 Organization ActivityID=YELL_YSL_091_20160802143005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 21:30,8/3/2016 15:58,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20160804115804^01,Field Msr/Obs,WATER,NA,8/4/2016,11:58:00,MST,8/5/2016,9:24:00,MST,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804161158 Organization ActivityID=YELL_YSL_171_20160804115804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:58,8/5/2016 16:24,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20130808100901^01,Field Msr/Obs,WATER,NA,8/8/2013,10:09:00,MST,8/9/2013,7:45:00,MST,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808131009 Organization ActivityID=YELL_YSL_163_20130808100901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2013 17:09,8/9/2013 14:45,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20160804081906^01,Field Msr/Obs,WATER,NA,8/4/2016,8:19:00,MST,8/5/2016,8:42:00,MST,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804160819 Organization ActivityID=YELL_YSL_158_20160804081906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 15:19,8/5/2016 15:42,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20130916091304^01,Field Msr/Obs,WATER,NA,9/16/2013,9:13:00,MST,9/17/2013,10:47:00,MST,1.7,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0916130913 Organization ActivityID=YELL_1A_20130916091304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2013 16:13,9/17/2013 17:47,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20160804111102^01,Field Msr/Obs,WATER,NA,8/4/2016,11:11:00,MST,8/5/2016,9:31:00,MST,1.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0804161111 Organization ActivityID=YELL_YSL_153_20160804111102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.3,15.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:11,8/5/2016 16:31,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20130807104103^01,Field Msr/Obs,WATER,NA,8/7/2013,10:41:00,MST,8/8/2013,7:29:00,MST,9.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Orig ID=0807131041 Organization ActivityID=YELL_YSL_027_20130807104103,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 17:41,8/8/2013 14:29,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20130805133703^01,Field Msr/Obs,WATER,NA,8/5/2013,13:37:00,MST,8/6/2013,8:12:00,MST,10.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,large to shore (13.7 temp logger depth) Orig ID=0805131337 Organization ActivityID=YELL_YSL_042_20130805133703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 20:37,8/6/2013 15:12,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20160802112901^01,Field Msr/Obs,WATER,NA,8/2/2016,11:29:00,MST,8/3/2016,8:39:00,MST,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0802161129 Organization ActivityID=YELL_YSL_115_20160802112901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 18:29,8/3/2016 15:39,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20160803104801^01,Field Msr/Obs,WATER,NA,8/3/2016,10:48:00,MST,8/4/2016,7:56:00,MST,3.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803161048 Organization ActivityID=YELL_YSL_080_20160803104801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 17:48,8/4/2016 14:56,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20160803115004^01,Field Msr/Obs,WATER,NA,8/3/2016,11:50:00,MST,8/4/2016,10:08:00,MST,14.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0803161150 Organization ActivityID=YELL_YSL_079_20160803115004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:50,8/4/2016 17:08,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20160802132105^01,Field Msr/Obs,WATER,NA,8/2/2016,13:21:00,MST,8/3/2016,14:33:00,MST,46.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,Orig ID=0802161321 Organization ActivityID=YELL_YSL_121_20160802132105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 20:21,8/3/2016 21:33,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20160808115201^01,Field Msr/Obs,WATER,NA,8/8/2016,11:52:00,MST,8/9/2016,8:24:00,MST,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808161152 Organization ActivityID=YELL_YSL_163_20160808115201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 18:52,8/9/2016 15:24,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20130807090803^01,Field Msr/Obs,WATER,NA,8/7/2013,9:08:00,MST,8/8/2013,7:37:00,MST,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0807130908 Organization ActivityID=YELL_YSL_077_20130807090803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 16:08,8/8/2013 14:37,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20160803114102^01,Field Msr/Obs,WATER,NA,8/3/2016,11:41:00,MST,8/4/2016,9:35:00,MST,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0803161141 Organization ActivityID=YELL_YSL_128_20160803114102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:41,8/4/2016 16:35,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20160807125505^01,Field Msr/Obs,WATER,NA,8/7/2016,12:55:00,MST,8/8/2016,10:48:00,MST,40.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0807161255 Organization ActivityID=YELL_YSL_006_20160807125505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 19:55,8/8/2016 17:48,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20160807123903^01,Field Msr/Obs,WATER,NA,8/7/2016,12:39:00,MST,8/8/2016,10:03:00,MST,10.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0807161239 Organization ActivityID=YELL_YSL_006_20160807123903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 19:39,8/8/2016 17:03,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20130806110601^01,Field Msr/Obs,WATER,NA,8/6/2013,11:06:00,MST,8/7/2013,7:36:00,MST,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806131106 Organization ActivityID=YELL_YSL_023_20130806110601,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 18:06,8/7/2013 14:36,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20160804105801^01,Field Msr/Obs,WATER,NA,8/4/2016,10:58:00,MST,8/5/2016,6:56:00,MST,2.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0804161058 Organization ActivityID=YELL_YSL_077_20160804105801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 17:58,8/5/2016 13:56,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20130807090302^01,Field Msr/Obs,WATER,NA,8/7/2013,9:03:00,MST,8/8/2013,8:20:00,MST,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0807130903 Organization ActivityID=YELL_YSL_077_20130807090302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 16:03,8/8/2013 15:20,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20130806114306^01,Field Msr/Obs,WATER,NA,8/6/2013,11:43:00,MST,8/7/2013,8:25:00,MST,39.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806131143 Organization ActivityID=YELL_YSL_023_20130806114306,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 18:43,8/7/2013 15:25,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20130806134604^01,Field Msr/Obs,WATER,NA,8/6/2013,13:46:00,MST,8/7/2013,6:42:00,MST,7.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0806131346 Organization ActivityID=YELL_YSL_003_20130806134604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.1,14.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 20:46,8/7/2013 13:42,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20160808123005^01,Field Msr/Obs,WATER,NA,8/8/2016,12:30:00,MST,8/9/2016,9:30:00,MST,33.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808161230 Organization ActivityID=YELL_YSL_163_20160808123005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 19:30,8/9/2016 16:30,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20160804112605^01,Field Msr/Obs,WATER,NA,8/4/2016,11:26:00,MST,8/5/2016,8:18:00,MST,38.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0804161126 Organization ActivityID=YELL_YSL_077_20160804112605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:26,8/5/2016 15:18,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20130802134506^01,Field Msr/Obs,WATER,NA,8/2/2013,13:45:00,MST,8/3/2013,8:11:00,MST,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,no fish Orig ID=0802131345 Organization ActivityID=YELL_YSL_120_20130802134506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:45,8/3/2013 15:11,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20160806111106^01,Field Msr/Obs,WATER,NA,8/6/2016,11:11:00,MST,8/7/2016,9:20:00,MST,35.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,NO FISH Orig ID=0806161111 Organization ActivityID=YELL_YSL_045_20160806111106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:11,8/7/2016 16:20,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20130807124502^01,Field Msr/Obs,WATER,NA,8/7/2013,12:45:00,MST,8/8/2013,10:24:00,MST,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0807131245 Organization ActivityID=YELL_YSL_080_20130807124502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 19:45,8/8/2013 17:24,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20160803111606^01,Field Msr/Obs,WATER,NA,8/3/2016,11:16:00,MST,8/4/2016,9:04:00,MST,38.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,No Fish Orig ID=0803161116 Organization ActivityID=YELL_YSL_080_20160803111606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:16,8/4/2016 16:04,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20160808125601^01,Field Msr/Obs,WATER,NA,8/8/2016,12:56:00,MST,8/9/2016,7:17:00,MST,3.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0808161256 Organization ActivityID=YELL_YSL_144_20160808125601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 19:56,8/9/2016 14:17,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20130807092504^01,Field Msr/Obs,WATER,NA,8/7/2013,9:25:00,MST,8/8/2013,8:00:00,MST,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0807130925 Organization ActivityID=YELL_YSL_077_20130807092504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 16:25,8/8/2013 15:00,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20130804102204^01,Field Msr/Obs,WATER,NA,8/4/2013,10:22:00,MST,8/5/2013,7:45:00,MST,10.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804131022 Organization ActivityID=YELL_YSL_168_20130804102204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 17:22,8/5/2013 14:45,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20160806112105^01,Field Msr/Obs,WATER,NA,8/6/2016,11:21:00,MST,8/7/2016,9:10:00,MST,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0806161121 Organization ActivityID=YELL_YSL_045_20160806112105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:21,8/7/2016 16:10,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20160804074502^01,Field Msr/Obs,WATER,NA,8/4/2016,7:45:00,MST,8/5/2016,7:35:00,MST,1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804160745 Organization ActivityID=YELL_YSL_158_20160804074502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 14:45,8/5/2016 14:35,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20130807131603^01,Field Msr/Obs,WATER,NA,8/7/2013,13:16:00,MST,8/8/2013,9:45:00,MST,9.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0807131316 Organization ActivityID=YELL_YSL_080_20130807131603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 20:16,8/8/2013 16:45,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20130805104805^01,Field Msr/Obs,WATER,NA,8/5/2013,10:48:00,MST,8/6/2013,7:29:00,MST,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0805131048 Organization ActivityID=YELL_YSL_059_20130805104805,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 17:48,8/6/2013 14:29,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20130806113204^01,Field Msr/Obs,WATER,NA,8/6/2013,11:32:00,MST,8/7/2013,8:05:00,MST,8.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Sunk deep end Orig ID=0806131132 Organization ActivityID=YELL_YSL_023_20130806113204,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 18:32,8/7/2013 15:05,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20160803122106^01,Field Msr/Obs,WATER,NA,8/3/2016,12:21:00,MST,8/4/2016,10:29:00,MST,42.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,No Fish Orig ID=0803161221 Organization ActivityID=YELL_YSL_128_20160803122106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 19:21,8/4/2016 17:29,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20160804113304^01,Field Msr/Obs,WATER,NA,8/4/2016,11:33:00,MST,8/5/2016,10:06:00,MST,10.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,Orig ID=0804161133 Organization ActivityID=YELL_YSL_153_20160804113304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:33,8/5/2016 17:06,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20160802150003^01,Field Msr/Obs,WATER,NA,8/2/2016,15:00:00,MST,8/3/2016,9:38:00,MST,14.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802161500 Organization ActivityID=YELL_YSL_089_20160802150003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 22:00,8/3/2016 16:38,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20160804114201^01,Field Msr/Obs,WATER,NA,8/4/2016,11:42:00,MST,8/5/2016,8:38:00,MST,2.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804161142 Organization ActivityID=YELL_YSL_171_20160804114201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:42,8/5/2016 15:38,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20130806122102^01,Field Msr/Obs,WATER,NA,8/6/2013,12:21:00,MST,8/7/2013,12:00:00,MST,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0806131221 Organization ActivityID=YELL_YSL_012_20130806122102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 19:21,8/7/2013 19:00,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20130802130302^01,Field Msr/Obs,WATER,NA,8/2/2013,13:03:00,MST,8/3/2013,9:53:00,MST,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Orig ID=0802131303 Organization ActivityID=YELL_YSL_120_20130802130302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:03,8/3/2013 16:53,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20130804101703^01,Field Msr/Obs,WATER,NA,8/4/2013,10:17:00,MST,8/5/2013,7:35:00,MST,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804131017 Organization ActivityID=YELL_YSL_168_20130804101703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 17:17,8/5/2013 14:35,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20160805114005^01,Field Msr/Obs,WATER,NA,8/5/2016,11:40:00,MST,8/6/2016,9:40:00,MST,35.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,Orig ID=0805161140 Organization ActivityID=YELL_YSL_065_20160805114005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:40,8/6/2016 16:40,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20130806130206^01,Field Msr/Obs,WATER,NA,8/6/2013,13:02:00,MST,8/7/2013,10:35:00,MST,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0806131302 Organization ActivityID=YELL_YSL_012_20130806130206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12,12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 20:02,8/7/2013 17:35,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20130805100001^01,Field Msr/Obs,WATER,NA,8/5/2013,10:00:00,MST,8/6/2013,8:09:00,MST,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805131000 Organization ActivityID=YELL_YSL_058_20130805100001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 17:00,8/6/2013 15:09,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20130805131306^01,Field Msr/Obs,WATER,NA,8/5/2013,13:13:00,MST,8/6/2013,9:36:00,MST,40.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,small to shore Orig ID=0805131313 Organization ActivityID=YELL_YSL_041_20130805131306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 20:13,8/6/2013 16:36,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_128_20160803120903^01,Field Msr/Obs,WATER,NA,8/3/2016,12:09:00,MST,8/4/2016,9:45:00,MST,12.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_128,Orig ID=0803161209 Organization ActivityID=YELL_YSL_128_20160803120903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 19:09,8/4/2016 16:45,Yellowstone Lake Shoreline KM 128,Lake,This site is located in the main basin of Yellowstone Lake region 2 between the South Arm and Flat Mountain Arm at Plover Point.,10070001,NA,NA,NA,NA,44.3822515,-110.352538,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20130807105403^01,Field Msr/Obs,WATER,NA,8/7/2013,10:54:00,MST,8/8/2013,9:02:00,MST,9.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807131054 Organization ActivityID=YELL_YSL_029_20130807105403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 17:54,8/8/2013 16:02,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20130803111101^01,Field Msr/Obs,WATER,NA,8/3/2013,11:11:00,MST,8/4/2013,9:07:00,MST,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0803131111 Organization ActivityID=YELL_YSL_148_20130803111101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 18:11,8/4/2013 16:07,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20160802142606^01,Field Msr/Obs,WATER,NA,8/2/2016,14:26:00,MST,8/3/2016,8:52:00,MST,40.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0802161426 Organization ActivityID=YELL_YSL_091_20160802142606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 21:26,8/3/2016 15:52,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20160807113606^01,Field Msr/Obs,WATER,NA,8/7/2016,11:36:00,MST,8/8/2016,11:16:00,MST,40,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,No Fish Orig ID=0807161136 Organization ActivityID=YELL_YSL_009_20160807113606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 18:36,8/8/2016 18:16,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20130805133204^01,Field Msr/Obs,WATER,NA,8/5/2013,13:32:00,MST,8/6/2013,7:50:00,MST,10.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,small to shore (13.7 depth of logger) Orig ID=0805131332 Organization ActivityID=YELL_YSL_042_20130805133204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 20:32,8/6/2013 14:50,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_153_20160804115306^01,Field Msr/Obs,WATER,NA,8/4/2016,11:53:00,MST,8/5/2016,10:29:00,MST,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_153,No Fish Orig ID=0804161153 Organization ActivityID=YELL_YSL_153_20160804115306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:53,8/5/2016 17:29,Yellowstone Lake Shoreline KM 153,Lake,This site is located in region 2 of Yellowstone Lake between Wolf and Snipe Point on the west side of the main basin.,10070001,NA,NA,NA,NA,44.3969372,-110.3986723,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20160801103401^01,Field Msr/Obs,WATER,NA,8/1/2016,10:34:00,MST,8/2/2016,12:22:00,MST,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801161034 Organization ActivityID=YELL_YSL_190_20160801103401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 17:34,8/2/2016 19:22,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20130807093505^01,Field Msr/Obs,WATER,NA,8/7/2013,9:35:00,MST,8/8/2013,7:11:00,MST,40.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0807130935 Organization ActivityID=YELL_YSL_077_20130807093505,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 16:35,8/8/2013 14:11,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20160806143702^01,Field Msr/Obs,WATER,NA,8/6/2016,14:37:00,MST,8/7/2016,10:18:00,MST,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0806161437 Organization ActivityID=YELL_YSL_041_20160806143702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 21:37,8/7/2016 17:18,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20160806110103^01,Field Msr/Obs,WATER,NA,8/6/2016,11:01:00,MST,8/7/2016,8:36:00,MST,19.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0806161101 Organization ActivityID=YELL_YSL_045_20160806110103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:01,8/7/2016 15:36,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20130803140406^01,Field Msr/Obs,WATER,NA,8/3/2013,14:04:00,MST,8/4/2013,11:00:00,MST,39,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0803131404 Organization ActivityID=YELL_YSL_158_20130803140406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 21:04,8/4/2013 18:00,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20160807122701^01,Field Msr/Obs,WATER,NA,8/7/2016,12:27:00,MST,8/8/2016,9:19:00,MST,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0807161227 Organization ActivityID=YELL_YSL_006_20160807122701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 19:27,8/8/2016 16:19,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_091_20160802141803^01,Field Msr/Obs,WATER,NA,8/2/2016,14:18:00,MST,8/3/2016,8:38:00,MST,14.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_091,Orig ID=0802161418 Organization ActivityID=YELL_YSL_091_20160802141803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 21:18,8/3/2016 15:38,Yellowstone Lake Shoreline KM 91,Lake,This site is located along the east shoreline of Yellowstone Lake and within the Southeast Arm.,10070001,NA,NA,NA,NA,44.3732,-110.2286,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20130807130504^01,Field Msr/Obs,WATER,NA,8/7/2013,13:05:00,MST,8/8/2013,10:10:00,MST,8.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0807131305 Organization ActivityID=YELL_YSL_080_20130807130504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 20:05,8/8/2013 17:10,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20160804112006^01,Field Msr/Obs,WATER,NA,8/4/2016,11:20:00,MST,8/5/2016,8:10:00,MST,43.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,No fish Orig ID=0804161120 Organization ActivityID=YELL_YSL_077_20160804112006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:20,8/5/2016 15:10,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20130806121401^01,Field Msr/Obs,WATER,NA,8/6/2013,12:14:00,MST,8/7/2013,11:10:00,MST,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0806131214 Organization ActivityID=YELL_YSL_012_20130806121401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 19:14,8/7/2013 18:10,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20130808103305^01,Field Msr/Obs,WATER,NA,8/8/2013,10:33:00,MST,8/9/2013,8:26:00,MST,39.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808131033 Organization ActivityID=YELL_YSL_163_20130808103305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2013 17:33,8/9/2013 15:26,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20160806144501^01,Field Msr/Obs,WATER,NA,8/6/2016,14:45:00,MST,8/7/2016,9:39:00,MST,1.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0806161445 Organization ActivityID=YELL_YSL_041_20160806144501,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 21:45,8/7/2016 16:39,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_045_20160806105104^01,Field Msr/Obs,WATER,NA,8/6/2016,10:51:00,MST,8/7/2016,8:56:00,MST,18.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_045,Orig ID=0806161051 Organization ActivityID=YELL_YSL_045_20160806105104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 17:51,8/7/2016 15:56,Yellowstone Lake Shoreline KM 45,Lake,This site is located in the northwest corner of Yellowstone Lake on the south shoreline of the Bridge Bay area.,10070001,NA,NA,NA,NA,44.5259022,-110.4333823,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20160808131804^01,Field Msr/Obs,WATER,NA,8/8/2016,13:18:00,MST,8/9/2016,7:53:00,MST,29.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,NO FISH Orig ID=0808161318 Organization ActivityID=YELL_YSL_144_20160808131804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 20:18,8/9/2016 14:53,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20130807132705^01,Field Msr/Obs,WATER,NA,8/7/2013,13:27:00,MST,8/8/2013,9:23:00,MST,38.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0807131327 Organization ActivityID=YELL_YSL_080_20130807132705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 20:27,8/8/2013 16:23,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20130804100301^01,Field Msr/Obs,WATER,NA,8/4/2013,10:03:00,MST,8/5/2013,7:55:00,MST,1.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804131003 Organization ActivityID=YELL_YSL_168_20130804100301,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 17:03,8/5/2013 14:55,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20160804120605^01,Field Msr/Obs,WATER,NA,8/4/2016,12:06:00,MST,8/5/2016,9:52:00,MST,32.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804161206 Organization ActivityID=YELL_YSL_171_20160804120605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 19:06,8/5/2016 16:52,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_3B_20130918170302^01,Field Msr/Obs,WATER,NA,9/18/2013,17:03:00,MST,9/19/2013,12:45:00,MST,1.4,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_3B,Orig ID=0918131703 Organization ActivityID=YELL_3B_20130918170302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.3,12.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/19/2013 0:03,9/19/2013 19:45,Breeze Point,Lake,Site 3B: Breeze Point. Start just southeast of Breeze Point and set southeast along high bank. 542460 Easting 4921204 Northing,10070001,NA,NA,NA,NA,44.44288889,-110.4664167,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20130803113106^01,Field Msr/Obs,WATER,NA,8/3/2013,11:31:00,MST,8/4/2013,7:57:00,MST,33.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0803131131 Organization ActivityID=YELL_YSL_148_20130803113106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 18:31,8/4/2013 14:57,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_052_20160805122101^01,Field Msr/Obs,WATER,NA,8/5/2016,12:21:00,MST,8/6/2016,11:40:00,MST,1.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_052,Orig ID=0805161221 Organization ActivityID=YELL_YSL_052_20160805122101,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 19:21,8/6/2016 18:40,Yellowstone Lake Shoreline KM 52,Lake,Shoreline KM 52 on the north shore of Yellowstone Lake approximately 3 km from Bridge Bay marina.,10070001,NA,NA,NA,NA,44.541606,-110.4209148,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20130802135705^01,Field Msr/Obs,WATER,NA,8/2/2013,13:57:00,MST,8/3/2013,8:12:00,MST,41.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Orig ID=0802131357 Organization ActivityID=YELL_YSL_120_20130802135705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:57,8/3/2013 15:12,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20160802145001^01,Field Msr/Obs,WATER,NA,8/2/2016,14:50:00,MST,8/3/2016,9:20:00,MST,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802161450 Organization ActivityID=YELL_YSL_089_20160802145001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 21:50,8/3/2016 16:20,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_006_20160807123304^01,Field Msr/Obs,WATER,NA,8/7/2016,12:33:00,MST,8/8/2016,10:31:00,MST,11.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_006,Orig ID=0807161233 Organization ActivityID=YELL_YSL_006_20160807123304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 19:33,8/8/2016 17:31,Yellowstone Lake Shoreline KM 6,Lake,This site is located within the West Thumb portion of Yellowstone Lake along the southeast shoreline. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4123349,-110.5003373,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20160803104002^01,Field Msr/Obs,WATER,NA,8/3/2016,10:40:00,MST,8/4/2016,7:44:00,MST,2.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803161040 Organization ActivityID=YELL_YSL_080_20160803104002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 17:40,8/4/2016 14:44,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20130805103503^01,Field Msr/Obs,WATER,NA,8/5/2013,10:35:00,MST,8/6/2013,7:11:00,MST,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0805131035 Organization ActivityID=YELL_YSL_059_20130805103503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 17:35,8/6/2013 14:11,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20130805130603^01,Field Msr/Obs,WATER,NA,8/5/2013,13:06:00,MST,8/6/2013,10:33:00,MST,11.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,large to shore (23.4 depth of logger) Orig ID=0805131306 Organization ActivityID=YELL_YSL_041_20130805130603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 20:06,8/6/2013 17:33,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20160804083105^01,Field Msr/Obs,WATER,NA,8/4/2016,8:31:00,MST,8/5/2016,8:28:00,MST,42.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804160831 Organization ActivityID=YELL_YSL_158_20160804083105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 15:31,8/5/2016 15:28,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20130807125601^01,Field Msr/Obs,WATER,NA,8/7/2013,12:56:00,MST,8/8/2013,10:36:00,MST,2.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0807131256 Organization ActivityID=YELL_YSL_080_20130807125601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 19:56,8/8/2013 17:36,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20130805102004^01,Field Msr/Obs,WATER,NA,8/5/2013,10:20:00,MST,8/6/2013,8:19:00,MST,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805131020 Organization ActivityID=YELL_YSL_058_20130805102004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 17:20,8/6/2013 15:19,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20130803110502^01,Field Msr/Obs,WATER,NA,8/3/2013,11:05:00,MST,8/4/2013,8:45:00,MST,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0803131105 Organization ActivityID=YELL_YSL_148_20130803110502,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 18:05,8/4/2013 15:45,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20160807085604^01,Field Msr/Obs,WATER,NA,8/7/2016,8:56:00,MST,8/8/2016,9:42:00,MST,16.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,No Fish Orig ID=0807160856 Organization ActivityID=YELL_YSL_012_20160807085604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 15:56,8/8/2016 16:42,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20130802132304^01,Field Msr/Obs,WATER,NA,8/2/2013,13:23:00,MST,8/3/2013,8:58:00,MST,12.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Orig ID=0802131323 Organization ActivityID=YELL_YSL_120_20130802132304,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:23,8/3/2013 15:58,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20160807111001^01,Field Msr/Obs,WATER,NA,8/7/2016,11:10:00,MST,8/8/2016,10:38:00,MST,2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0807161110 Organization ActivityID=YELL_YSL_009_20160807111001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 18:10,8/8/2016 17:38,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_171_20130804132606^01,Field Msr/Obs,WATER,NA,8/4/2013,13:26:00,MST,8/5/2013,9:32:00,MST,43.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_171,Orig ID=0804131326 Organization ActivityID=YELL_YSL_171_20130804132606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 20:26,8/5/2013 16:32,Yellowstone Lake Shoreline KM 171,Lake,"This site is located in Yellowstone Lake, region 2 and is located on the northeast shore of Frank Island.",10070001,NA,NA,NA,NA,44.431764,-110.3622236,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20160802151706^01,Field Msr/Obs,WATER,NA,8/2/2016,15:17:00,MST,8/3/2016,10:08:00,MST,40.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,No Fish Orig ID=0802161517 Organization ActivityID=YELL_YSL_089_20160802151706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 22:17,8/3/2016 17:08,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20160801105603^01,Field Msr/Obs,WATER,NA,8/1/2016,10:56:00,MST,8/2/2016,12:38:00,MST,19.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801161056 Organization ActivityID=YELL_YSL_190_20160801105603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 17:56,8/2/2016 19:38,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20130805135305^01,Field Msr/Obs,WATER,NA,8/5/2013,13:53:00,MST,8/6/2013,7:02:00,MST,41.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,large to shore. UT's (N) not recorded correctly. Orig ID=0805131353 Organization ActivityID=YELL_YSL_042_20130805135305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 20:53,8/6/2013 14:02,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20130803113705^01,Field Msr/Obs,WATER,NA,8/3/2013,11:37:00,MST,8/4/2013,8:08:00,MST,37.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0803131137 Organization ActivityID=YELL_YSL_148_20130803113705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 18:37,8/4/2013 15:08,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20130807110002^01,Field Msr/Obs,WATER,NA,8/7/2013,11:00:00,MST,8/8/2013,8:47:00,MST,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807131100 Organization ActivityID=YELL_YSL_029_20130807110002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 18:00,8/8/2013 15:47,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_121_20160802131104^01,Field Msr/Obs,WATER,NA,8/2/2016,13:11:00,MST,8/3/2016,14:33:00,MST,13.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_121,No Fish Orig ID=0802161311 Organization ActivityID=YELL_YSL_121_20160802131104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 20:11,8/3/2016 21:33,Yellowstone Lake Shoreline KM 121,Lake,This site is located along the west shoreline of the south arm of Yellowstone Lake and within region 4.,10070001,NA,NA,NA,NA,44.3327035,-110.3563574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_027_20130807103702^01,Field Msr/Obs,WATER,NA,8/7/2013,10:37:00,MST,8/8/2013,7:07:00,MST,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_027,Orig ID=0807131037 Organization ActivityID=YELL_YSL_027_20130807103702,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 17:37,8/8/2013 14:07,Yellowstone Lake Shoreline KM 27,Lake,This site is located along the north shoreline of the West Thumb portion of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.47056545,-110.5258352,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20130805130404^01,Field Msr/Obs,WATER,NA,8/5/2013,13:04:00,MST,8/6/2013,10:19:00,MST,10.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,small to shore (15.9 depth of logger) Orig ID=0805131304 Organization ActivityID=YELL_YSL_041_20130805130404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 20:04,8/6/2013 17:19,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_177_20130804115202^01,Field Msr/Obs,WATER,NA,8/4/2013,11:52:00,MST,8/5/2013,9:19:00,MST,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_177,Orig ID=0804131152 Organization ActivityID=YELL_YSL_177_20130804115202,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 18:52,8/5/2013 16:19,Yellowstone Lake Shoreline KM 177,Lake,This site is located on the southern tip of Stevenson Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.50713792,-110.3783093,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20160805112504^01,Field Msr/Obs,WATER,NA,8/5/2016,11:25:00,MST,8/6/2016,8:32:00,MST,10.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805161125 Organization ActivityID=YELL_YSL_058_20160805112504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:25,8/6/2016 15:32,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20130808102403^01,Field Msr/Obs,WATER,NA,8/8/2013,10:24:00,MST,8/9/2013,8:00:00,MST,9.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808131024 Organization ActivityID=YELL_YSL_163_20130808102403,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2013 17:24,8/9/2013 15:00,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20130805100302^01,Field Msr/Obs,WATER,NA,8/5/2013,10:03:00,MST,8/6/2013,7:59:00,MST,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805131003 Organization ActivityID=YELL_YSL_058_20130805100302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 17:03,8/6/2013 14:59,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20130807085001^01,Field Msr/Obs,WATER,NA,8/7/2013,8:50:00,MST,8/8/2013,8:38:00,MST,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0807130850 Organization ActivityID=YELL_YSL_077_20130807085001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 15:50,8/8/2013 15:38,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_1A_20130916090302^01,Field Msr/Obs,WATER,NA,9/16/2013,9:03:00,MST,9/17/2013,10:15:00,MST,1.5,m,NA,NA,NA,NA,NA,YELL_YCT,NA,11NPSWRD_WQX-YELL_1A,Orig ID=0916130903 Organization ActivityID=YELL_1A_20130916090302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/16/2013 16:03,9/17/2013 17:15,Clear Creek,Lake,"Site 1A: Clear Creek. Start at small creek just north of Clear Creek and work north. Creek is not connected to lake most seasons by August, so start at listed UTM and work north along shore. 557020 Easting 4925429 Northing",10070001,NA,NA,NA,NA,44.47992222,-110.2829944,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20130804100902^01,Field Msr/Obs,WATER,NA,8/4/2013,10:09:00,MST,8/5/2013,8:29:00,MST,1.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804131009 Organization ActivityID=YELL_YSL_168_20130804100902,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 17:09,8/5/2013 15:29,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20130803111604^01,Field Msr/Obs,WATER,NA,8/3/2013,11:16:00,MST,8/4/2013,8:19:00,MST,10.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0803131116 Organization ActivityID=YELL_YSL_148_20130803111604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 18:16,8/4/2013 15:19,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20130807094506^01,Field Msr/Obs,WATER,NA,8/7/2013,9:45:00,MST,8/8/2013,7:23:00,MST,41,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,no fish Orig ID=0807130945 Organization ActivityID=YELL_YSL_077_20130807094506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 16:45,8/8/2013 14:23,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_029_20130807105001^01,Field Msr/Obs,WATER,NA,8/7/2013,10:50:00,MST,8/8/2013,8:16:00,MST,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_029,Orig ID=0807131050 Organization ActivityID=YELL_YSL_029_20130807105001,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2013 17:50,8/8/2013 15:16,Yellowstone Lake Shoreline KM 29,Lake,This station is located in the West Thumb portion of Yellowstone Lake and within Region 1. It is approximately 1 km west of Pumice Point in the north shore of West Thumb.,10070001,NA,NA,NA,NA,44.4650652,-110.5166443,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20130808103706^01,Field Msr/Obs,WATER,NA,8/8/2013,10:37:00,MST,8/9/2013,8:34:00,MST,41.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,No fish Orig ID=0808131037 Organization ActivityID=YELL_YSL_163_20130808103706,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2013 17:37,8/9/2013 15:34,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20130803114401^01,Field Msr/Obs,WATER,NA,8/3/2013,11:44:00,MST,8/4/2013,9:31:00,MST,2.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,Orig ID=0803131144 Organization ActivityID=YELL_YSL_101_20130803114401,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 18:44,8/4/2013 16:31,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20130806134003^01,Field Msr/Obs,WATER,NA,8/6/2013,13:40:00,MST,8/7/2013,6:33:00,MST,9.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0806131340 Organization ActivityID=YELL_YSL_003_20130806134003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.1,14.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 20:40,8/7/2013 13:33,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20130804103406^01,Field Msr/Obs,WATER,NA,8/4/2013,10:34:00,MST,8/5/2013,7:15:00,MST,38.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804131034 Organization ActivityID=YELL_YSL_168_20130804103406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 17:34,8/5/2013 14:15,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20160806114204^01,Field Msr/Obs,WATER,NA,8/6/2016,11:42:00,MST,8/7/2016,10:02:00,MST,10.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,NO FISH Orig ID=0806161142 Organization ActivityID=YELL_YSL_023_20160806114204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:42,8/7/2016 17:02,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20130805103002^01,Field Msr/Obs,WATER,NA,8/5/2013,10:30:00,MST,8/6/2013,6:58:00,MST,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0805131030 Organization ActivityID=YELL_YSL_059_20130805103002,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 17:30,8/6/2013 13:58,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20130806115305^01,Field Msr/Obs,WATER,NA,8/6/2013,11:53:00,MST,8/7/2013,8:13:00,MST,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,1.75 Thicker mesh. Yellow Orig ID=0806131153 Organization ActivityID=YELL_YSL_023_20130806115305,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 18:53,8/7/2013 15:13,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20130806125204^01,Field Msr/Obs,WATER,NA,8/6/2013,12:52:00,MST,8/7/2013,10:46:00,MST,37.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0806131252 Organization ActivityID=YELL_YSL_012_20130806125204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.1,12.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 19:52,8/7/2013 17:46,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20130803135807^01,Field Msr/Obs,WATER,NA,8/3/2013,13:58:00,MST,8/4/2013,10:46:00,MST,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,No fish Orig ID=0803131358 Organization ActivityID=YELL_YSL_158_20130803135807,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 20:58,8/4/2013 17:46,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_115_20160802114703^01,Field Msr/Obs,WATER,NA,8/2/2016,11:47:00,MST,8/3/2016,9:37:00,MST,8.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_115,Orig ID=0802161147 Organization ActivityID=YELL_YSL_115_20160802114703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 18:47,8/3/2016 16:37,Yellowstone Lake Shoreline KM 115,Lake,This site is located within the South Arm of Yellowstone Lake in Region 4. It is along the west side of the arm and in the vicinity of where the non-motorized zone begins.,10070001,NA,NA,NA,NA,44.3122086,-110.3154574,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20160804080104^01,Field Msr/Obs,WATER,NA,8/4/2016,8:01:00,MST,8/5/2016,8:13:00,MST,11,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,Orig ID=0804160801 Organization ActivityID=YELL_YSL_158_20160804080104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 15:01,8/5/2016 15:13,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_168_20130804102905^01,Field Msr/Obs,WATER,NA,8/4/2013,10:29:00,MST,8/5/2013,7:07:00,MST,42.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_168,Orig ID=0804131029 Organization ActivityID=YELL_YSL_168_20130804102905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 17:29,8/5/2013 14:07,Yellowstone Lake Shoreline KM 168,Lake,This site is located on the western shoreline of Frank Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.41885938,-110.3689325,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_025_20160806104602^01,Field Msr/Obs,WATER,NA,8/6/2016,10:46:00,MST,8/7/2016,7:44:00,MST,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_025,Orig ID=0806161046 Organization ActivityID=YELL_YSL_025_20160806104602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 17:46,8/7/2016 14:44,Yellowstone Lake Shoreline KM 25,Lake,This site is located in the West Thumb portion of Yellowstone Lake along the northwest shoreline and approximately 2 km north of Carrington Island. It lies within region 1 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.464555,-110.555252,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_148_20130803112203^01,Field Msr/Obs,WATER,NA,8/3/2013,11:22:00,MST,8/4/2013,8:29:00,MST,9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_148,Orig ID=0803131122 Organization ActivityID=YELL_YSL_148_20130803112203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 18:22,8/4/2013 15:29,Yellowstone Lake Shoreline KM 148,Lake,This site is located along the west shore of the main basin of Yellowstone Lake just north of Flat Mountain Arm.,10070001,NA,NA,NA,NA,44.3913868,-110.3895568,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20160805111701^01,Field Msr/Obs,WATER,NA,8/5/2016,11:17:00,MST,8/6/2016,7:18:00,MST,0.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805161117 Organization ActivityID=YELL_YSL_058_20160805111701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:17,8/6/2016 14:18,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_059_20130805111007^01,Field Msr/Obs,WATER,NA,8/5/2013,11:10:00,MST,8/6/2013,9:00:00,MST,42.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_059,Orig ID=0805131110 Organization ActivityID=YELL_YSL_059_20130805111007,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 18:10,8/6/2013 16:00,Yellowstone Lake Shoreline KM 59,Lake,This site is located on the north shoreline of Yellowstone Lake in region 3. It is located approximately 2 km west of Mary Bay and 4 km east of the lake outlet.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20130805101503^01,Field Msr/Obs,WATER,NA,8/5/2013,10:15:00,MST,8/6/2013,8:35:00,MST,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805131015 Organization ActivityID=YELL_YSL_058_20130805101503,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 17:15,8/6/2013 15:35,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20160806115805^01,Field Msr/Obs,WATER,NA,8/6/2016,11:58:00,MST,8/7/2016,10:20:00,MST,40.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,NO FISH Orig ID=0806161158 Organization ActivityID=YELL_YSL_023_20160806115805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:58,8/7/2016 17:20,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20160801110805^01,Field Msr/Obs,WATER,NA,8/1/2016,11:08:00,MST,8/2/2016,12:57:00,MST,40.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801161108 Organization ActivityID=YELL_YSL_190_20160801110805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 18:08,8/2/2016 19:57,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20160807084801^01,Field Msr/Obs,WATER,NA,8/7/2016,8:48:00,MST,8/8/2016,9:24:00,MST,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0807160848 Organization ActivityID=YELL_YSL_012_20160807084801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 15:48,8/8/2016 16:24,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_175_20130804111903^01,Field Msr/Obs,WATER,NA,8/4/2013,11:19:00,MST,8/5/2013,7:32:00,MST,10,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_175,Orig ID=0804131119 Organization ActivityID=YELL_YSL_175_20130804111903,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2013 18:19,8/5/2013 14:32,Yellowstone Lake Shoreline KM 175,Lake,This site is located on the west shore of Dot Island within the main basin of Yellowstone Lake.,10070001,NA,NA,NA,NA,44.44989678,-110.4102368,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20160804111004^01,Field Msr/Obs,WATER,NA,8/4/2016,11:10:00,MST,8/5/2016,7:22:00,MST,11.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0804161110 Organization ActivityID=YELL_YSL_077_20160804111004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:10,8/5/2016 14:22,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_079_20160803113402^01,Field Msr/Obs,WATER,NA,8/3/2016,11:34:00,MST,8/4/2016,9:32:00,MST,4.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_079,Orig ID=0803161134 Organization ActivityID=YELL_YSL_079_20160803113402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:34,8/4/2016 16:32,Yellowstone Lake Shoreline KM 79,Lake,"This site is located on the east shore of Yellowstone Lake, within region 4 and within the main basin.",10070001,NA,NA,NA,NA,44.4515944,-110.2888089,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20160802145302^01,Field Msr/Obs,WATER,NA,8/2/2016,14:53:00,MST,8/3/2016,9:30:00,MST,2.5,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0802161453 Organization ActivityID=YELL_YSL_089_20160802145302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2016 21:53,8/3/2016 16:30,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_080_20160803111003^01,Field Msr/Obs,WATER,NA,8/3/2016,11:10:00,MST,8/4/2016,8:40:00,MST,12.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_080,Orig ID=0803161110 Organization ActivityID=YELL_YSL_080_20160803111003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2016 18:10,8/4/2016 15:40,Yellowstone Lake Shoreline KM 80,Lake,This site is located along the eastern shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4430646,-110.2927107,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20130806132102^01,Field Msr/Obs,WATER,NA,8/6/2013,13:21:00,MST,8/7/2013,6:55:00,MST,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0806131321 Organization ActivityID=YELL_YSL_003_20130806132102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.3,15.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 20:21,8/7/2013 13:55,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20160807084202^01,Field Msr/Obs,WATER,NA,8/7/2016,8:42:00,MST,8/8/2016,9:24:00,MST,2.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,No Fish Orig ID=0807160842 Organization ActivityID=YELL_YSL_012_20160807084202,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 15:42,8/8/2016 16:24,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20130805113102^01,Field Msr/Obs,WATER,NA,8/5/2013,11:31:00,MST,8/6/2013,10:52:00,MST,1.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Large to shore Orig ID=0805131131 Organization ActivityID=YELL_YSL_041_20130805113102,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 18:31,8/6/2013 17:52,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_065_20160805114606^01,Field Msr/Obs,WATER,NA,8/5/2016,11:46:00,MST,8/6/2016,9:52:00,MST,33.4,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_065,No fish Orig ID=0805161146 Organization ActivityID=YELL_YSL_065_20160805114606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:46,8/6/2016 16:52,Yellowstone Lake Shoreline KM 65,Lake,Site is located on the north shore of Yellowstone Lake in Mary Bay's northeast shore.,10070001,NA,NA,NA,NA,44.5427335,-110.290544,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20160806151305^01,Field Msr/Obs,WATER,NA,8/6/2016,15:13:00,MST,8/7/2016,11:17:00,MST,41.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0806161513 Organization ActivityID=YELL_YSL_041_20160806151305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 22:13,8/7/2016 18:17,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_009_20160807112204^01,Field Msr/Obs,WATER,NA,8/7/2016,11:22:00,MST,8/8/2016,10:56:00,MST,7.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_009,Orig ID=0807161122 Organization ActivityID=YELL_YSL_009_20160807112204,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 18:22,8/8/2016 17:56,Yellowstone Lake Shoreline KM 9,Lake,This station is located along the south shoreline of the West Thumb portion of Yellowstone Lake. It lies within region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3939319,-110.5227442,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20160806120206^01,Field Msr/Obs,WATER,NA,8/6/2016,12:02:00,MST,8/7/2016,10:28:00,MST,40.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806161202 Organization ActivityID=YELL_YSL_023_20160806120206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 19:02,8/7/2016 17:28,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_144_20160808131203^01,Field Msr/Obs,WATER,NA,8/8/2016,13:12:00,MST,8/9/2016,7:48:00,MST,29.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_144,Orig ID=0808161312 Organization ActivityID=YELL_YSL_144_20160808131203,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 20:12,8/9/2016 14:48,Yellowstone Lake Shoreline KM 144,Lake,This station is located along the north shoreline of Flat Mountain Arm of Yellowstone Lake. It is located near the non-motorized zone buoy.,10070001,NA,NA,NA,NA,44.37581,-110.41672,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_058_20160805113103^01,Field Msr/Obs,WATER,NA,8/5/2016,11:31:00,MST,8/6/2016,8:06:00,MST,13.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_058,Orig ID=0805161131 Organization ActivityID=YELL_YSL_058_20160805113103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:31,8/6/2016 15:06,Yellowstone Lake Shoreline KM 58,Lake,This site is located on the north shoreline of Yellowstone Lake in the vicinity of the Yellowstone Lake hotel.,10070001,NA,NA,NA,NA,44.5536664,-110.3596254,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20160801103105^01,Field Msr/Obs,WATER,NA,8/1/2016,10:31:00,MST,8/2/2016,10:21:00,MST,43.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Orig ID=0801161031 Organization ActivityID=YELL_YSL_221_20160801103105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 17:31,8/2/2016 17:21,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20130805134406^01,Field Msr/Obs,WATER,NA,8/5/2013,13:44:00,MST,8/6/2013,7:18:00,MST,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,Orig ID=0805131344 Organization ActivityID=YELL_YSL_042_20130805134406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 20:44,8/6/2013 14:18,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_042_20130805114302^01,Field Msr/Obs,WATER,NA,8/5/2013,11:43:00,MST,8/6/2013,9:15:00,MST,1.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_042,large to shore (3.3 depth of logger) Orig ID=0805131143 Organization ActivityID=YELL_YSL_042_20130805114302,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2013 18:43,8/6/2013 16:15,Yellowstone Lake Shoreline KM 42,Lake,This site is located within the main basin of Yellowstone Lake within region 3. it is located along the western shore approximately 2 km north of Sand Point.,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20160801105706^01,Field Msr/Obs,WATER,NA,8/1/2016,10:57:00,MST,8/2/2016,10:35:00,MST,46,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,1 unidentified fish in 2.25 in mesh lost Orig ID=0801161057 Organization ActivityID=YELL_YSL_221_20160801105706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 17:57,8/2/2016 17:35,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20130802133103^01,Field Msr/Obs,WATER,NA,8/2/2013,13:31:00,MST,8/3/2013,8:36:00,MST,11.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,Orig ID=0802131331 Organization ActivityID=YELL_YSL_120_20130802133103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2013 20:31,8/3/2013 15:36,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20160808115802^01,Field Msr/Obs,WATER,NA,8/8/2016,11:58:00,MST,8/9/2016,8:37:00,MST,2.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808161158 Organization ActivityID=YELL_YSL_163_20160808115802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 18:58,8/9/2016 15:37,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_077_20160804111403^01,Field Msr/Obs,WATER,NA,8/4/2016,11:14:00,MST,8/5/2016,7:36:00,MST,13.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_077,Orig ID=0804161114 Organization ActivityID=YELL_YSL_077_20160804111403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2016 18:14,8/5/2016 14:36,Yellowstone Lake Shoreline KM 77,Lake,This site is located on the east shoreline of Yellowstone Lake within region 4.,10070001,NA,NA,NA,NA,44.4605066,-110.2903018,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20130806135606^01,Field Msr/Obs,WATER,NA,8/6/2013,13:56:00,MST,8/7/2013,6:05:00,MST,39.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0806131356 Organization ActivityID=YELL_YSL_003_20130806135606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.1,14.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 20:56,8/7/2013 13:05,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20130806111802^01,Field Msr/Obs,WATER,NA,8/6/2013,11:18:00,MST,8/7/2013,7:30:00,MST,2.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806131118 Organization ActivityID=YELL_YSL_023_20130806111802,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 18:18,8/7/2013 14:30,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_012_20130806124003^01,Field Msr/Obs,WATER,NA,8/6/2013,12:40:00,MST,8/7/2013,11:22:00,MST,8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_012,Orig ID=0806131240 Organization ActivityID=YELL_YSL_012_20130806124003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2013 19:40,8/7/2013 18:22,Yellowstone Lake Shoreline KM 12,Lake,This site is located in the West Thumb portion of Yellowstone Lake on the southwest shore near the West Thumb Geyser Basin. It lies within Region 1 of the Yellowstone Lake distribution netting program.,10070001,NA,NA,NA,NA,44.3937156,-110.5547218,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20160808120403^01,Field Msr/Obs,WATER,NA,8/8/2016,12:04:00,MST,8/9/2016,9:11:00,MST,16.9,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808161204 Organization ActivityID=YELL_YSL_163_20160808120403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2016 19:04,8/9/2016 16:11,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_003_20160807131504^01,Field Msr/Obs,WATER,NA,8/7/2016,13:15:00,MST,8/8/2016,12:19:00,MST,16.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_003,Orig ID=0807161315 Organization ActivityID=YELL_YSL_003_20160807131504,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2016 20:15,8/8/2016 19:19,Yellowstone Lake Shoreline KM 3,Lake,This site is located within the West Thumb portion of Yellowstone lake within region 1. It is located along the southeast shore near Breeze Channel.,10070001,NA,NA,NA,NA,44.4361766,-110.4910642,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20160806115003^01,Field Msr/Obs,WATER,NA,8/6/2016,11:50:00,MST,8/7/2016,10:10:00,MST,18.1,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0806161150 Organization ActivityID=YELL_YSL_023_20160806115003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 18:50,8/7/2016 17:10,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_190_20160801111506^01,Field Msr/Obs,WATER,NA,8/1/2016,11:15:00,MST,8/2/2016,13:10:00,MST,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_190,Orig ID=0801161115 Organization ActivityID=YELL_YSL_190_20160801111506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 18:15,8/2/2016 20:10,Yellowstone Lake Shoreline KM 190,Lake,This site is located in the Southeast Arm of Yellowstone Lake within the non-motorized zone. Within that area it is located near the southeast corner and adjacent to the Yellowstone River inlet.,10070001,NA,NA,NA,NA,44.30323,-110.21995,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_041_20160806150003^01,Field Msr/Obs,WATER,NA,8/6/2016,15:00:00,MST,8/7/2016,10:39:00,MST,7.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_041,Orig ID=0806161500 Organization ActivityID=YELL_YSL_041_20160806150003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2016 22:00,8/7/2016 17:39,Yellowstone Lake Shoreline KM 41,Lake,This site is located in Region 3 of Yellowstone Lake along the west shoreline near Sand Point,10070001,NA,NA,NA,NA,44.4996592,-110.4194902,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_163_20130808101804^01,Field Msr/Obs,WATER,NA,8/8/2013,10:18:00,MST,8/9/2013,8:07:00,MST,9.3,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_163,Orig ID=0808131018 Organization ActivityID=YELL_YSL_163_20130808101804,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2013 17:18,8/9/2013 15:07,Yellowstone Lake Shoreline KM 163,Lake,This site is located directly west of Frank Island near Breeze Channel. It is located within region 2 of Yellowstone Lake distribution netting.,10070001,NA,NA,NA,NA,44.4278772,-110.4598845,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_18.2_P,Field Msr/Obs,WATER,NA,8/7/2012,12:03:00,EST,NA,NA,NA,18.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.06,11.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:03,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_0.2_P,Field Msr/Obs,WATER,NA,9/13/2011,9:47:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.48,17.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:47,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_16.2_P,Field Msr/Obs,WATER,NA,8/7/2012,12:02:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.94,11.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_2.9_P,Field Msr/Obs,WATER,NA,7/28/2009,1:53:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.94,20.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_5.5_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.22,20.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_3.9_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.65,7.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_9_P,Field Msr/Obs,WATER,NA,8/5/2010,2:15:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.13,20.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090519_2_P,Field Msr/Obs,WATER,NA,5/19/2009,6:50:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.29,14.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 11:50,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_15.2_P,Field Msr/Obs,WATER,NA,10/15/2009,3:23:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_14.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:48:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.79,10.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_10_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_40.8_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,40.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.06,5.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_1.8_P,Field Msr/Obs,WATER,NA,10/12/2010,3:25:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.92,13.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:25,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080722_6.7_P,Field Msr/Obs,WATER,NA,7/22/2008,8:10:00,EST,NA,NA,NA,6.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.06,19.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 13:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_21.9_P,Field Msr/Obs,WATER,NA,10/12/2010,6:12:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.29,9.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:12,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_23.1_P,Field Msr/Obs,WATER,NA,10/13/2010,12:35:00,EST,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.01,9.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:35,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_11.5_P,Field Msr/Obs,WATER,NA,6/5/2013,7:15:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.82,8.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20130923_0.1_P,Field Msr/Obs,WATER,NA,9/23/2013,4:12:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 9:12,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_2_P,Field Msr/Obs,WATER,NA,10/14/2009,5:46:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:46,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_5.9_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.93,18.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_2.2_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.43,6.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_19.3_P,Field Msr/Obs,WATER,NA,10/14/2010,9:22:00,EST,NA,NA,NA,19.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.75,11.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:22,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_17.9_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,17.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_17.2_P,Field Msr/Obs,WATER,NA,9/12/2011,7:28:00,EST,NA,NA,NA,17.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.04,15.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:28,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_23.3_P,Field Msr/Obs,WATER,NA,10/15/2009,4:26:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:26,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_5.3_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,5.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.48,7.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_41.6_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,41.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.34,7.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_14.5_P,Field Msr/Obs,WATER,NA,10/9/2012,3:01:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 8:01,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_6.4_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.02,19.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_4.1_P,Field Msr/Obs,WATER,NA,5/10/2012,4:36:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:36,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_9.9_P,Field Msr/Obs,WATER,NA,8/5/2010,11:19:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:19,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20091014_1.5_P,Field Msr/Obs,WATER,NA,10/14/2009,5:15:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.99,8.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:15,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_13.2_P,Field Msr/Obs,WATER,NA,8/5/2010,3:20:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.59,18.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:20,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_1.1_P,Field Msr/Obs,WATER,NA,10/14/2009,3:01:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.36,10.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:01,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_17.4_P,Field Msr/Obs,WATER,NA,5/28/2014,2:30:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.51,10.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:30,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_12_P,Field Msr/Obs,WATER,NA,8/4/2010,3:50:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.01,16.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:50,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_3.1_P,Field Msr/Obs,WATER,NA,8/4/2010,3:44:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.19,21.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:44,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_26.6_P,Field Msr/Obs,WATER,NA,10/15/2009,4:26:00,EST,NA,NA,NA,26.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.44,8.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:26,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_16_P,Field Msr/Obs,WATER,NA,10/14/2010,2:21:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.42,12.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:21,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_13.1_P,Field Msr/Obs,WATER,NA,10/11/2012,9:21:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.79,11.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:21,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20100805_2.2_P,Field Msr/Obs,WATER,NA,8/5/2010,3:59:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.52,16.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:59,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_6_P,Field Msr/Obs,WATER,NA,10/14/2010,9:20:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:20,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_42.3_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,42.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.05,5.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_7.9_P,Field Msr/Obs,WATER,NA,9/11/2009,11:05:00,EST,NA,NA,NA,7.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.83,18.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:05,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080722_1_P,Field Msr/Obs,WATER,NA,7/22/2008,8:10:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.88,21.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 13:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_20.6_P,Field Msr/Obs,WATER,NA,6/2/2010,4:02:00,EST,NA,NA,NA,20.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.28,8.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 9:02,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080722_3.8_P,Field Msr/Obs,WATER,NA,7/22/2008,8:10:00,EST,NA,NA,NA,3.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.18,21.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 13:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_3.1_P,Field Msr/Obs,WATER,NA,8/12/2014,2:03:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.64,20.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:03,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_12.8_P,Field Msr/Obs,WATER,NA,10/9/2012,1:38:00,EST,NA,NA,NA,12.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:38,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_5_P,Field Msr/Obs,WATER,NA,6/16/2015,12:33:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.36,17.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:33,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_9.7_P,Field Msr/Obs,WATER,NA,10/14/2010,2:20:00,EST,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.23,13.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:20,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_14.2_P,Field Msr/Obs,WATER,NA,7/28/2009,11:57:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.21,14.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:57,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_4.1_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.89,6.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_14.1_P,Field Msr/Obs,WATER,NA,10/14/2010,3:13:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.11,13.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:13,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_20.8_P,Field Msr/Obs,WATER,NA,6/4/2013,2:13:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.38,13.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:13,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_12.1_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,12.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.05,13.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_8.9_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.34,16.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_9.2_P,Field Msr/Obs,WATER,NA,6/16/2015,11:47:00,EST,NA,NA,NA,9.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.11,17.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_16_P,Field Msr/Obs,WATER,NA,10/15/2009,3:23:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_12.8_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,12.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.46,7.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_22.1_P,Field Msr/Obs,WATER,NA,7/28/2009,10:18:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:18,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_5.4_P,Field Msr/Obs,WATER,NA,10/14/2009,5:48:00,EST,NA,NA,NA,5.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:48,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080722_2.3_P,Field Msr/Obs,WATER,NA,7/22/2008,8:10:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.78,21.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 13:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_1.4_P,Field Msr/Obs,WATER,NA,10/14/2010,8:19:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.46,14.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:19,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_13.1_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.73,8.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_26.6_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,26.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.17,6.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_27.5_P,Field Msr/Obs,WATER,NA,6/17/2015,3:30:00,EST,NA,NA,NA,27.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:30,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20080515_14.5_P,Field Msr/Obs,WATER,NA,5/15/2008,9:00:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_29.1_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,29.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.48,6.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_7.6_P,Field Msr/Obs,WATER,NA,6/2/2010,3:57:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.25,9.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:57,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_6.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:20:00,EST,NA,NA,NA,6.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_26_P,Field Msr/Obs,WATER,NA,7/28/2009,10:21:00,EST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.06,8.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:21,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_9.7_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.82,14.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_15.2_P,Field Msr/Obs,WATER,NA,7/28/2009,9:22:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.24,11.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:22,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_8_P,Field Msr/Obs,WATER,NA,10/13/2010,12:23:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.57,14.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:23,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_8.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:25:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.94,10.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:25,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_16.6_P,Field Msr/Obs,WATER,NA,8/5/2010,11:24:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.35,11.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:24,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_20.5_P,Field Msr/Obs,WATER,NA,7/28/2009,12:56:00,EST,NA,NA,NA,20.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.27,9.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:56,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_0_P,Field Msr/Obs,WATER,NA,5/11/2012,8:28:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.51,8.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:28,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_10.7_P,Field Msr/Obs,WATER,NA,10/14/2009,3:07:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:07,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_14.7_P,Field Msr/Obs,WATER,NA,8/6/2012,2:19:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.12,18.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:19,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_0.5_P,Field Msr/Obs,WATER,NA,9/24/2013,11:32:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.07,17.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:32,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_15.2_P,Field Msr/Obs,WATER,NA,8/4/2010,2:47:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.39,13.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20101014_2_P,Field Msr/Obs,WATER,NA,10/14/2010,1:31:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.98,12.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:31,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_5.9_P,Field Msr/Obs,WATER,NA,10/11/2012,9:52:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.13,12.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_11.9_P,Field Msr/Obs,WATER,NA,9/24/2013,12:46:00,EST,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:46,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_4.6_P,Field Msr/Obs,WATER,NA,5/10/2012,4:36:00,EST,NA,NA,NA,4.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:36,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_0.1_P,Field Msr/Obs,WATER,NA,6/2/2010,3:51:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:51,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_36.9_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,36.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.34,7.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_3.1_P,Field Msr/Obs,WATER,NA,9/10/2009,12:06:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.93,17.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:06,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20141015_4.2_P,Field Msr/Obs,WATER,NA,10/15/2014,5:24:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.38,10.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:24,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_25.7_P,Field Msr/Obs,WATER,NA,9/11/2009,11:00:00,EST,NA,NA,NA,25.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.78,7.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:00,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_7.9_P,Field Msr/Obs,WATER,NA,7/28/2009,11:46:00,EST,NA,NA,NA,7.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.61,19.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:46,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_15_P,Field Msr/Obs,WATER,NA,10/15/2009,4:21:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.35,12.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:21,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_12.2_P,Field Msr/Obs,WATER,NA,10/14/2009,4:27:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.72,10.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:27,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_13.4_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,13.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.39,11.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_18.5_P,Field Msr/Obs,WATER,NA,8/6/2012,3:31:00,EST,NA,NA,NA,18.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:31,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_16.2_P,Field Msr/Obs,WATER,NA,9/10/2009,11:13:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.01,18.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:13,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_17.1_P,Field Msr/Obs,WATER,NA,10/12/2010,3:58:00,EST,NA,NA,NA,17.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:58,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_35.7_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,35.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.69,5.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_9.7_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.28,14.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_37.6_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,37.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.43,6.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_22.1_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.38,6.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_13.1_P,Field Msr/Obs,WATER,NA,5/10/2012,2:57:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.73,7.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_7_P,Field Msr/Obs,WATER,NA,5/10/2012,2:55:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.45,9.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_5.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:34:00,EST,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.28,11.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:34,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_15.2_P,Field Msr/Obs,WATER,NA,8/4/2010,3:53:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.06,12.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:53,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_5.3_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,5.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.33,6.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_24.3_P,Field Msr/Obs,WATER,NA,8/11/2014,12:50:00,EST,NA,NA,NA,24.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:50,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_19_P,Field Msr/Obs,WATER,NA,10/14/2009,4:30:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:30,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_39.5_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,39.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_6.2_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.89,19.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_32.5_P,Field Msr/Obs,WATER,NA,10/15/2009,4:27:00,EST,NA,NA,NA,32.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.58,7.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:27,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090520_1_P,Field Msr/Obs,WATER,NA,5/20/2009,6:05:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.14,12.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/20/2009 11:05,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_20_P,Field Msr/Obs,WATER,NA,5/11/2012,10:39:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.92,6.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:39,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_14.2_P,Field Msr/Obs,WATER,NA,8/6/2012,8:04:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:04,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_26.6_P,Field Msr/Obs,WATER,NA,8/6/2012,3:06:00,EST,NA,NA,NA,26.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.56,15.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:06,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_16_P,Field Msr/Obs,WATER,NA,8/12/2014,3:34:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.26,13.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:34,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080513_7.4_P,Field Msr/Obs,WATER,NA,5/13/2008,10:20:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 15:20,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_22_P,Field Msr/Obs,WATER,NA,9/10/2009,11:14:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.24,17.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_39.3_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,39.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.65,5.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_37.7_P,Field Msr/Obs,WATER,NA,8/7/2012,11:31:00,EST,NA,NA,NA,37.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_3.7_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,3.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.54,7.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_11.1_P,Field Msr/Obs,WATER,NA,6/17/2015,4:31:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.84,14.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:31,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_14.7_P,Field Msr/Obs,WATER,NA,10/14/2009,9:43:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.76,8.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:43,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_1.3_P,Field Msr/Obs,WATER,NA,10/10/2012,1:47:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.97,13.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:47,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20080515_1_P,Field Msr/Obs,WATER,NA,5/15/2008,9:00:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.25,8.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100601_1.1_P,Field Msr/Obs,WATER,NA,6/1/2010,7:15:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.31,12.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_33.6_P,Field Msr/Obs,WATER,NA,10/16/2014,11:42:00,EST,NA,NA,NA,33.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.07,8.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:42,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_6_P,Field Msr/Obs,WATER,NA,10/15/2009,4:18:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:18,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_7.4_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.29,9.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_1_P,Field Msr/Obs,WATER,NA,8/5/2010,11:16:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.46,21.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:16,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_13_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_14.8_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20101014_2.9_P,Field Msr/Obs,WATER,NA,10/14/2010,1:13:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:13,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20121011_7.3_P,Field Msr/Obs,WATER,NA,10/11/2012,8:53:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 13:53,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_23_P,Field Msr/Obs,WATER,NA,8/6/2012,3:03:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.96,15.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:03,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120806_3.8_P,Field Msr/Obs,WATER,NA,8/6/2012,6:56:00,EST,NA,NA,NA,3.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.47,21.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 11:56,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20121011_5.1_P,Field Msr/Obs,WATER,NA,10/11/2012,8:51:00,EST,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.48,9.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 13:51,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_12.2_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.66,12.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_1.1_P,Field Msr/Obs,WATER,NA,5/10/2012,3:38:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:38,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_16_P,Field Msr/Obs,WATER,NA,7/28/2009,10:46:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.76,10.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:46,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_8.6_P,Field Msr/Obs,WATER,NA,5/11/2012,8:32:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.12,7.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:32,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_16.9_P,Field Msr/Obs,WATER,NA,10/10/2012,4:25:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.41,11.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:25,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_15.5_P,Field Msr/Obs,WATER,NA,10/14/2009,9:44:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.51,8.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:44,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_23.1_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.26,6.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_3.8_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,3.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_8_P,Field Msr/Obs,WATER,NA,10/14/2009,9:01:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.85,10.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:01,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_0_P,Field Msr/Obs,WATER,NA,10/14/2009,7:30:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:30,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_3_P,Field Msr/Obs,WATER,NA,8/4/2010,6:43:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.02,21.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:43,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090519_0.1_P,Field Msr/Obs,WATER,NA,5/19/2009,6:50:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 11:50,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_9.6_P,Field Msr/Obs,WATER,NA,8/11/2014,7:34:00,EST,NA,NA,NA,9.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.25,20.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:34,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_14.1_P,Field Msr/Obs,WATER,NA,8/11/2014,6:34:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.74,14.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_19_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.87,8.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20101014_1_P,Field Msr/Obs,WATER,NA,10/14/2010,1:30:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.23,13.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:30,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_18.5_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,18.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.74,9.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_5.4_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,5.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.88,18.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_9.9_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.48,7.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_1_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.75,21.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_20.6_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,20.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.13,8.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_1.6_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,1.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.08,20.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_23_P,Field Msr/Obs,WATER,NA,9/12/2011,7:34:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.29,10.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_0.1_P,Field Msr/Obs,WATER,NA,10/13/2010,12:20:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.58,14.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:20,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_0.1_P,Field Msr/Obs,WATER,NA,5/10/2012,4:33:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.43,9.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:33,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_28.2_P,Field Msr/Obs,WATER,NA,5/29/2014,11:53:00,EST,NA,NA,NA,28.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.55,6.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_32.6_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,32.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.13,6.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_24.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:26:00,EST,NA,NA,NA,24.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.12,9.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_4.8_P,Field Msr/Obs,WATER,NA,8/11/2014,1:36:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.84,19.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:36,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_11.5_P,Field Msr/Obs,WATER,NA,10/14/2010,8:22:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.44,14.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140811_6.4_P,Field Msr/Obs,WATER,NA,8/11/2014,5:24:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.03,20.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:24,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_34_P,Field Msr/Obs,WATER,NA,7/28/2009,2:11:00,EST,NA,NA,NA,34,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:11,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_23.7_P,Field Msr/Obs,WATER,NA,5/29/2014,2:56:00,EST,NA,NA,NA,23.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:56,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_10.4_P,Field Msr/Obs,WATER,NA,8/4/2010,3:48:00,EST,NA,NA,NA,10.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.86,17.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:48,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_18.9_P,Field Msr/Obs,WATER,NA,8/4/2010,6:49:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.32,10.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_8.1_P,Field Msr/Obs,WATER,NA,10/14/2009,7:35:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:35,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_1.3_P,Field Msr/Obs,WATER,NA,10/9/2012,2:26:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.22,13.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:26,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_25.6_P,Field Msr/Obs,WATER,NA,5/10/2012,3:45:00,EST,NA,NA,NA,25.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_8.4_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,8.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20101012_2_P,Field Msr/Obs,WATER,NA,10/12/2010,2:49:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.66,11.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 7:49,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_32.7_P,Field Msr/Obs,WATER,NA,10/10/2012,1:55:00,EST,NA,NA,NA,32.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.57,6.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_29.1_P,Field Msr/Obs,WATER,NA,8/7/2012,11:29:00,EST,NA,NA,NA,29.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_14_P,Field Msr/Obs,WATER,NA,10/15/2009,1:37:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.22,11.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:37,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_9.9_P,Field Msr/Obs,WATER,NA,7/28/2009,11:49:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.64,18.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:49,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_8.2_P,Field Msr/Obs,WATER,NA,9/13/2011,9:49:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.42,17.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:49,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_13.1_P,Field Msr/Obs,WATER,NA,10/15/2009,4:20:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:20,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_40.9_P,Field Msr/Obs,WATER,NA,7/28/2009,1:10:00,EST,NA,NA,NA,40.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.19,6.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20091014_2_P,Field Msr/Obs,WATER,NA,10/14/2009,3:33:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.45,10.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:33,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_16.2_P,Field Msr/Obs,WATER,NA,10/15/2009,3:24:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.97,11.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_27.7_P,Field Msr/Obs,WATER,NA,8/4/2010,2:51:00,EST,NA,NA,NA,27.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.07,8.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:51,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_11.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:21:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.14,12.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_21_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_6.4_P,Field Msr/Obs,WATER,NA,10/14/2009,4:24:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.96,10.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:24,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20140811_0.1_P,Field Msr/Obs,WATER,NA,8/11/2014,5:51:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.15,22.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:51,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_10.2_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.17,15.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_13.5_P,Field Msr/Obs,WATER,NA,6/17/2015,2:16:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.65,10.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:16,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080722_8_P,Field Msr/Obs,WATER,NA,7/22/2008,8:10:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.89,18.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 13:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090728_2_P,Field Msr/Obs,WATER,NA,7/28/2009,12:00:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.96,20.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:00,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_1.1_P,Field Msr/Obs,WATER,NA,10/14/2010,3:11:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.79,13.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:11,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_9.5_P,Field Msr/Obs,WATER,NA,8/4/2010,3:46:00,EST,NA,NA,NA,9.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.59,19.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:46,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_0.1_P,Field Msr/Obs,WATER,NA,10/10/2012,3:56:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.66,13.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:56,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_34.2_P,Field Msr/Obs,WATER,NA,10/15/2009,3:30:00,EST,NA,NA,NA,34.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.89,7.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_0.1_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.83,7.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_17.3_P,Field Msr/Obs,WATER,NA,8/5/2010,2:17:00,EST,NA,NA,NA,17.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.13,18.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:17,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080513_8.2_P,Field Msr/Obs,WATER,NA,5/13/2008,10:20:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.12,10.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 15:20,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_6.6_P,Field Msr/Obs,WATER,NA,6/16/2015,6:02:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:02,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_0.9_P,Field Msr/Obs,WATER,NA,5/9/2012,2:45:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.62,10.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_8.4_P,Field Msr/Obs,WATER,NA,8/5/2010,12:10:00,EST,NA,NA,NA,8.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.79,18.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_8.3_P,Field Msr/Obs,WATER,NA,8/4/2010,4:54:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.79,18.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_29.3_P,Field Msr/Obs,WATER,NA,10/16/2014,12:05:00,EST,NA,NA,NA,29.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.02,9.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:05,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_13.2_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_13.2_P,Field Msr/Obs,WATER,NA,8/4/2010,3:52:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.46,14.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:52,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_8_P,Field Msr/Obs,WATER,NA,5/10/2012,3:40:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:40,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_41.5_P,Field Msr/Obs,WATER,NA,10/13/2010,12:45:00,EST,NA,NA,NA,41.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.97,6.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_29.3_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,29.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.76,6.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_2_P,Field Msr/Obs,WATER,NA,6/16/2015,11:46:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_6.3_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,6.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_10.8_P,Field Msr/Obs,WATER,NA,9/13/2011,9:49:00,EST,NA,NA,NA,10.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.42,17.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:49,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_3.2_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.48,12.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_20.6_P,Field Msr/Obs,WATER,NA,10/14/2010,8:26:00,EST,NA,NA,NA,20.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.18,10.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_13.6_P,Field Msr/Obs,WATER,NA,8/12/2014,1:06:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.17,15.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:06,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_0.1_P,Field Msr/Obs,WATER,NA,10/14/2010,3:10:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.93,13.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:10,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_1.1_P,Field Msr/Obs,WATER,NA,7/28/2009,9:57:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.03,21.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:57,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20140528_0.3_P,Field Msr/Obs,WATER,NA,5/28/2014,7:09:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.28,16.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:09,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_2.9_P,Field Msr/Obs,WATER,NA,9/12/2011,7:19:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.49,18.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:19,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_1_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.25,20.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_9.5_P,Field Msr/Obs,WATER,NA,9/11/2009,11:05:00,EST,NA,NA,NA,9.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.41,18.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:05,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_15.9_P,Field Msr/Obs,WATER,NA,8/7/2012,11:26:00,EST,NA,NA,NA,15.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.79,11.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_8.5_P,Field Msr/Obs,WATER,NA,5/11/2012,10:36:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.95,8.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:36,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20140528_0.1_P,Field Msr/Obs,WATER,NA,5/28/2014,3:52:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.76,14.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:52,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_33.6_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,33.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.07,6.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,12:06:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.46,15.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:06,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_13.8_P,Field Msr/Obs,WATER,NA,8/4/2010,3:52:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.55,13.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:52,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_8.8_P,Field Msr/Obs,WATER,NA,8/5/2010,11:18:00,EST,NA,NA,NA,8.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.74,20.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:18,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_16_P,Field Msr/Obs,WATER,NA,8/7/2012,10:56:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_26.3_P,Field Msr/Obs,WATER,NA,10/9/2012,1:41:00,EST,NA,NA,NA,26.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.55,12.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_17.5_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_6_P,Field Msr/Obs,WATER,NA,6/17/2015,3:25:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:25,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_10.1_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.81,16.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_17_P,Field Msr/Obs,WATER,NA,10/13/2010,12:30:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.68,13.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:30,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_1.1_P,Field Msr/Obs,WATER,NA,10/14/2010,9:50:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.42,14.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:50,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_13.2_P,Field Msr/Obs,WATER,NA,5/29/2014,11:48:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.59,9.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_9.3_P,Field Msr/Obs,WATER,NA,10/14/2009,7:36:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.14,11.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:36,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_3.5_P,Field Msr/Obs,WATER,NA,8/4/2010,2:43:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.31,21.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_8.1_P,Field Msr/Obs,WATER,NA,8/4/2010,2:44:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.92,18.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:44,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_6.3_P,Field Msr/Obs,WATER,NA,8/11/2014,1:37:00,EST,NA,NA,NA,6.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.77,19.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:37,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_12.3_P,Field Msr/Obs,WATER,NA,6/16/2015,12:35:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:35,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_34.2_P,Field Msr/Obs,WATER,NA,7/28/2009,1:04:00,EST,NA,NA,NA,34.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.62,6.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:04,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_4.7_P,Field Msr/Obs,WATER,NA,8/12/2014,2:04:00,EST,NA,NA,NA,4.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.57,20.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:04,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090910_9.4_P,Field Msr/Obs,WATER,NA,9/10/2009,12:39:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.24,17.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:39,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_7.8_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,7.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.26,19.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090728_3.1_P,Field Msr/Obs,WATER,NA,7/28/2009,8:44:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.04,21.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 13:44,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20080513_1.9_P,Field Msr/Obs,WATER,NA,5/13/2008,9:40:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.42,9.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 14:40,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_37.9_P,Field Msr/Obs,WATER,NA,10/10/2012,2:24:00,EST,NA,NA,NA,37.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.44,6.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_22_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.12,8.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_42.1_P,Field Msr/Obs,WATER,NA,10/13/2010,12:46:00,EST,NA,NA,NA,42.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:46,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_2.9_P,Field Msr/Obs,WATER,NA,10/14/2010,8:20:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20101014_4_P,Field Msr/Obs,WATER,NA,10/14/2010,1:14:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.19,7.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:14,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_2.4_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.17,8.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_5.6_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20101014_13.8_P,Field Msr/Obs,WATER,NA,10/14/2010,1:34:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.07,12.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:34,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_12.5_P,Field Msr/Obs,WATER,NA,6/4/2013,8:32:00,EST,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.49,8.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:32,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_13.7_P,Field Msr/Obs,WATER,NA,9/12/2011,7:22:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.12,18.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:22,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_31_P,Field Msr/Obs,WATER,NA,10/10/2012,3:08:00,EST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.24,7.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:08,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_9.8_P,Field Msr/Obs,WATER,NA,9/10/2009,11:11:00,EST,NA,NA,NA,9.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.05,18.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:11,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090520_6.4_P,Field Msr/Obs,WATER,NA,5/20/2009,6:05:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/20/2009 11:05,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_17.6_P,Field Msr/Obs,WATER,NA,6/4/2013,8:38:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:38,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_16.6_P,Field Msr/Obs,WATER,NA,8/6/2012,3:30:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.84,16.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:30,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_0.1_P,Field Msr/Obs,WATER,NA,10/15/2009,2:01:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.26,11.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:01,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_17.4_P,Field Msr/Obs,WATER,NA,8/7/2012,12:02:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.59,11.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_30.8_P,Field Msr/Obs,WATER,NA,10/13/2010,12:39:00,EST,NA,NA,NA,30.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.53,7.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:39,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_11.5_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.13,15.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_29_P,Field Msr/Obs,WATER,NA,10/16/2014,12:54:00,EST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.39,9.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_8.7_P,Field Msr/Obs,WATER,NA,5/9/2012,2:47:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.07,10.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_9_P,Field Msr/Obs,WATER,NA,5/29/2014,2:51:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.53,13.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:51,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_13.2_P,Field Msr/Obs,WATER,NA,6/17/2015,4:10:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.46,12.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:10,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20121009_0.5_P,Field Msr/Obs,WATER,NA,10/9/2012,6:47:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.98,8.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 11:47,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_3.4_P,Field Msr/Obs,WATER,NA,9/23/2013,1:40:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.84,16.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:40,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_18_P,Field Msr/Obs,WATER,NA,8/6/2012,2:58:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.97,16.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:58,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_15.5_P,Field Msr/Obs,WATER,NA,8/12/2014,3:13:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:13,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_17.8_P,Field Msr/Obs,WATER,NA,9/11/2009,11:02:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.17,11.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:02,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_30.6_P,Field Msr/Obs,WATER,NA,8/7/2012,12:07:00,EST,NA,NA,NA,30.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.87,6.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:07,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20101012_1.1_P,Field Msr/Obs,WATER,NA,10/12/2010,4:49:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.11,12.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 9:49,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_29.3_P,Field Msr/Obs,WATER,NA,10/15/2009,3:28:00,EST,NA,NA,NA,29.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.22,8.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:28,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_21.4_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,21.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.38,8.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_0_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.53,11.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_4.3_P,Field Msr/Obs,WATER,NA,9/11/2009,11:06:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.95,18.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:06,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_5.9_P,Field Msr/Obs,WATER,NA,10/9/2012,1:35:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.16,13.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:35,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_20.5_P,Field Msr/Obs,WATER,NA,5/10/2012,2:59:00,EST,NA,NA,NA,20.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:59,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_9.1_P,Field Msr/Obs,WATER,NA,6/17/2015,2:14:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.92,14.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:14,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20080513_0.1_P,Field Msr/Obs,WATER,NA,5/13/2008,11:45:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.77,8.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:45,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_1.3_P,Field Msr/Obs,WATER,NA,8/7/2012,11:20:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.47,20.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_12.3_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.97,12.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_17_P,Field Msr/Obs,WATER,NA,10/14/2009,5:52:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.79,9.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_26.2_P,Field Msr/Obs,WATER,NA,10/14/2010,3:14:00,EST,NA,NA,NA,26.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.08,13.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100601_19.6_P,Field Msr/Obs,WATER,NA,6/1/2010,7:15:00,EST,NA,NA,NA,19.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.35,9.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_18.7_P,Field Msr/Obs,WATER,NA,7/28/2009,10:14:00,EST,NA,NA,NA,18.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.74,10.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:14,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_15.8_P,Field Msr/Obs,WATER,NA,8/5/2010,11:23:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:23,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_6.3_P,Field Msr/Obs,WATER,NA,9/13/2011,9:48:00,EST,NA,NA,NA,6.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.43,17.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:48,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_21.9_P,Field Msr/Obs,WATER,NA,10/9/2012,1:40:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.59,12.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:40,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_0.4_P,Field Msr/Obs,WATER,NA,10/10/2012,2:15:00,EST,NA,NA,NA,0.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.97,13.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_39_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,39,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.68,5.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_3.9_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.16,8.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_13.7_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.35,6.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_4.3_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.31,11.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_16.3_P,Field Msr/Obs,WATER,NA,7/28/2009,10:13:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.77,11.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:13,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_20.3_P,Field Msr/Obs,WATER,NA,10/9/2012,1:40:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.62,12.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:40,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_0.1_P,Field Msr/Obs,WATER,NA,9/23/2013,2:57:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.51,16.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:57,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_5.3_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,5.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_8.1_P,Field Msr/Obs,WATER,NA,6/4/2013,8:30:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:30,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_3.5_P,Field Msr/Obs,WATER,NA,9/23/2013,2:28:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.78,16.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:28,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_7_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.23,12.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_8.7_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_1_P,Field Msr/Obs,WATER,NA,10/12/2010,6:01:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.41,15.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:01,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_13.5_P,Field Msr/Obs,WATER,NA,5/29/2014,11:49:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_4.2_P,Field Msr/Obs,WATER,NA,8/4/2010,3:44:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.16,21.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:44,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_9.6_P,Field Msr/Obs,WATER,NA,6/16/2015,6:39:00,EST,NA,NA,NA,9.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:39,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20080515_1_P,Field Msr/Obs,WATER,NA,5/15/2008,10:00:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.15,10.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 15:00,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_0.1_P,Field Msr/Obs,WATER,NA,6/4/2013,3:05:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.53,13.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:05,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_4.1_P,Field Msr/Obs,WATER,NA,10/12/2010,6:01:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.25,15.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:01,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_19.8_P,Field Msr/Obs,WATER,NA,7/28/2009,7:09:00,EST,NA,NA,NA,19.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.02,9.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:09,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_5_P,Field Msr/Obs,WATER,NA,10/14/2009,3:04:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.63,9.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:04,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_3_P,Field Msr/Obs,WATER,NA,10/14/2009,3:03:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.64,9.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:03,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_6.7_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,6.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.39,9.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_1_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.84,13.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_9.1_P,Field Msr/Obs,WATER,NA,5/11/2012,11:11:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.83,8.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:11,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_15.8_P,Field Msr/Obs,WATER,NA,10/10/2012,1:50:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.71,13.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_20.6_P,Field Msr/Obs,WATER,NA,5/29/2014,12:46:00,EST,NA,NA,NA,20.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_19.1_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_13.6_P,Field Msr/Obs,WATER,NA,9/24/2013,12:46:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.23,14.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:46,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_21.1_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,21.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.65,8.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_11.6_P,Field Msr/Obs,WATER,NA,8/7/2012,11:23:00,EST,NA,NA,NA,11.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.12,15.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_28.3_P,Field Msr/Obs,WATER,NA,10/10/2012,1:54:00,EST,NA,NA,NA,28.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_12.8_P,Field Msr/Obs,WATER,NA,8/4/2010,4:55:00,EST,NA,NA,NA,12.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.76,15.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_7.4_P,Field Msr/Obs,WATER,NA,8/4/2010,4:54:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.93,19.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_18.7_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,18.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.34,6.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_37_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,37,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.39,6.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_14.5_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20101014_0.5_P,Field Msr/Obs,WATER,NA,10/14/2010,1:12:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.36,8.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:12,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_42.6_P,Field Msr/Obs,WATER,NA,10/16/2014,12:07:00,EST,NA,NA,NA,42.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.25,8.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:07,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_8_P,Field Msr/Obs,WATER,NA,5/29/2014,2:51:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.59,13.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:51,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_23.1_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.61,8.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_1.2_P,Field Msr/Obs,WATER,NA,10/14/2009,8:58:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 13:58,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_24.4_P,Field Msr/Obs,WATER,NA,10/10/2012,3:05:00,EST,NA,NA,NA,24.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:05,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120511_3_P,Field Msr/Obs,WATER,NA,5/11/2012,11:36:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.64,13.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:36,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_1_P,Field Msr/Obs,WATER,NA,9/10/2009,12:06:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.17,18.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:06,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_2.4_P,Field Msr/Obs,WATER,NA,8/6/2012,2:54:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.81,19.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:54,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_17.8_P,Field Msr/Obs,WATER,NA,10/10/2012,1:51:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:51,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_16.7_P,Field Msr/Obs,WATER,NA,8/4/2010,4:57:00,EST,NA,NA,NA,16.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.55,12.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:57,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_20.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:39:00,EST,NA,NA,NA,20.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:39,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_17.9_P,Field Msr/Obs,WATER,NA,7/28/2009,7:08:00,EST,NA,NA,NA,17.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:08,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_8.6_P,Field Msr/Obs,WATER,NA,10/10/2012,1:48:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.75,13.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_4.1_P,Field Msr/Obs,WATER,NA,6/5/2013,5:40:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.25,11.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:40,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_16.8_P,Field Msr/Obs,WATER,NA,8/7/2012,10:57:00,EST,NA,NA,NA,16.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.94,10.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_12_P,Field Msr/Obs,WATER,NA,10/11/2012,9:54:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:54,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_10.1_P,Field Msr/Obs,WATER,NA,9/23/2013,1:41:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_19.8_P,Field Msr/Obs,WATER,NA,10/13/2010,12:33:00,EST,NA,NA,NA,19.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.57,11.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:33,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080513_0.1_P,Field Msr/Obs,WATER,NA,5/13/2008,10:20:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.34,11.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 15:20,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_9.3_P,Field Msr/Obs,WATER,NA,8/5/2010,11:34:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.45,19.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_0.1_P,Field Msr/Obs,WATER,NA,9/13/2011,9:47:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.46,17.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:47,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_23.5_P,Field Msr/Obs,WATER,NA,8/6/2012,2:21:00,EST,NA,NA,NA,23.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.21,16.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_7.2_P,Field Msr/Obs,WATER,NA,10/10/2012,4:21:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.73,12.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:21,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_48.7_P,Field Msr/Obs,WATER,NA,6/17/2015,2:24:00,EST,NA,NA,NA,48.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.72,5.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:24,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_3.2_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.91,13.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_6.3_P,Field Msr/Obs,WATER,NA,9/23/2013,1:40:00,EST,NA,NA,NA,6.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.73,16.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:40,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_19.4_P,Field Msr/Obs,WATER,NA,9/10/2009,12:09:00,EST,NA,NA,NA,19.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.26,17.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:09,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_20.9_P,Field Msr/Obs,WATER,NA,10/10/2012,1:52:00,EST,NA,NA,NA,20.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.77,9.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:52,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20080515_5.4_P,Field Msr/Obs,WATER,NA,5/15/2008,9:00:00,EST,NA,NA,NA,5.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_17.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:29:00,EST,NA,NA,NA,17.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.42,9.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:29,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_9.6_P,Field Msr/Obs,WATER,NA,9/10/2009,12:08:00,EST,NA,NA,NA,9.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.83,17.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:08,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_10.3_P,Field Msr/Obs,WATER,NA,5/28/2014,1:44:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.34,13.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:44,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_10.3_P,Field Msr/Obs,WATER,NA,10/11/2012,9:20:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.26,12.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:20,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_2.3_P,Field Msr/Obs,WATER,NA,8/4/2010,4:51:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.37,21.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:51,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_23.8_P,Field Msr/Obs,WATER,NA,5/10/2012,3:00:00,EST,NA,NA,NA,23.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.11,6.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_22.8_P,Field Msr/Obs,WATER,NA,8/12/2014,1:11:00,EST,NA,NA,NA,22.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.77,8.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:11,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_14.8_P,Field Msr/Obs,WATER,NA,9/13/2011,9:50:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.41,17.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:50,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_7.6_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.92,10.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_12.6_P,Field Msr/Obs,WATER,NA,6/4/2013,3:53:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.13,13.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:53,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_17.5_P,Field Msr/Obs,WATER,NA,9/12/2011,7:29:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.53,14.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090519_0.2_P,Field Msr/Obs,WATER,NA,5/19/2009,7:15:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.61,17.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 12:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_2_P,Field Msr/Obs,WATER,NA,7/28/2009,9:59:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.94,20.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:59,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_13_P,Field Msr/Obs,WATER,NA,8/5/2010,11:20:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.55,16.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:20,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_0.1_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.12,20.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_22.2_P,Field Msr/Obs,WATER,NA,10/10/2012,3:03:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:03,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_20.2_P,Field Msr/Obs,WATER,NA,10/10/2012,4:29:00,EST,NA,NA,NA,20.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.78,9.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:29,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_9.1_P,Field Msr/Obs,WATER,NA,7/28/2009,10:03:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.71,20.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:03,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_9.9_P,Field Msr/Obs,WATER,NA,8/4/2010,3:47:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.88,18.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:47,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_24.9_P,Field Msr/Obs,WATER,NA,10/10/2012,2:21:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.94,7.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_20.3_P,Field Msr/Obs,WATER,NA,6/17/2015,2:19:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:19,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_0.1_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.33,20.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_1.2_P,Field Msr/Obs,WATER,NA,10/10/2012,3:56:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.57,13.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:56,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_7.4_P,Field Msr/Obs,WATER,NA,5/28/2014,1:43:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.61,13.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:43,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_45.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:14:00,EST,NA,NA,NA,45.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.63,6.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:14,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_0_P,Field Msr/Obs,WATER,NA,9/10/2009,11:04:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.76,18.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:04,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_19_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_11.3_P,Field Msr/Obs,WATER,NA,6/4/2013,8:31:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.71,8.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20121011_1.4_P,Field Msr/Obs,WATER,NA,10/11/2012,8:49:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 13:49,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_11.6_P,Field Msr/Obs,WATER,NA,10/14/2009,9:42:00,EST,NA,NA,NA,11.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:42,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_3_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.86,11.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_33.2_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,33.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.06,6.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090519_1_P,Field Msr/Obs,WATER,NA,5/19/2009,6:50:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.61,19.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 11:50,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_17_P,Field Msr/Obs,WATER,NA,6/16/2015,12:36:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.49,15.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:36,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_25.8_P,Field Msr/Obs,WATER,NA,8/5/2010,2:20:00,EST,NA,NA,NA,25.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.67,16.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:20,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_18.1_P,Field Msr/Obs,WATER,NA,9/24/2013,8:52:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.97,9.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:52,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_14_P,Field Msr/Obs,WATER,NA,6/16/2015,12:58:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.11,16.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_15.9_P,Field Msr/Obs,WATER,NA,10/14/2010,9:53:00,EST,NA,NA,NA,15.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.09,14.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:53,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_40_P,Field Msr/Obs,WATER,NA,10/15/2009,4:29:00,EST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.11,7.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:29,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_39_P,Field Msr/Obs,WATER,NA,10/16/2014,12:06:00,EST,NA,NA,NA,39,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.34,8.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:06,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20120511_1_P,Field Msr/Obs,WATER,NA,5/11/2012,10:07:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.01,13.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:07,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_10.1_P,Field Msr/Obs,WATER,NA,10/14/2009,3:06:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.28,7.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:06,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_5.9_P,Field Msr/Obs,WATER,NA,10/11/2012,9:19:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.59,12.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:19,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_16.9_P,Field Msr/Obs,WATER,NA,10/9/2012,2:31:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.97,11.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:31,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_34_P,Field Msr/Obs,WATER,NA,10/10/2012,3:09:00,EST,NA,NA,NA,34,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.95,6.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:09,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090727_2_P,Field Msr/Obs,WATER,NA,7/27/2009,7:12:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.06,22.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 12:12,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_21.4_P,Field Msr/Obs,WATER,NA,5/10/2012,2:59:00,EST,NA,NA,NA,21.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.83,6.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:59,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_36.3_P,Field Msr/Obs,WATER,NA,9/24/2013,8:58:00,EST,NA,NA,NA,36.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:58,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_20.3_P,Field Msr/Obs,WATER,NA,8/7/2012,10:58:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.38,9.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:58,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_15.1_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.88,10.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_4.9_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.07,10.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_29.6_P,Field Msr/Obs,WATER,NA,5/29/2014,11:53:00,EST,NA,NA,NA,29.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.48,6.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_3.2_P,Field Msr/Obs,WATER,NA,8/5/2010,3:17:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.2,20.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:17,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20121009_1.5_P,Field Msr/Obs,WATER,NA,10/9/2012,6:48:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.96,8.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 11:48,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_23.8_P,Field Msr/Obs,WATER,NA,9/13/2011,9:19:00,EST,NA,NA,NA,23.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:19,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20091015_4_P,Field Msr/Obs,WATER,NA,10/15/2009,7:24:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.62,13.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 12:24,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_1_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.52,11.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_7.1_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_16.9_P,Field Msr/Obs,WATER,NA,10/14/2010,9:53:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.74,13.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:53,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080513_3.3_P,Field Msr/Obs,WATER,NA,5/13/2008,10:20:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.97,10.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 15:20,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_0.1_P,Field Msr/Obs,WATER,NA,7/28/2009,1:51:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.33,22.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:51,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_42.9_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,42.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.92,5.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_47.1_P,Field Msr/Obs,WATER,NA,7/28/2009,2:15:00,EST,NA,NA,NA,47.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.72,5.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_3.8_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,3.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.34,6.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_11.5_P,Field Msr/Obs,WATER,NA,10/9/2012,3:00:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.19,11.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 8:00,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_2.1_P,Field Msr/Obs,WATER,NA,10/12/2010,3:25:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.86,13.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:25,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20141015_1.4_P,Field Msr/Obs,WATER,NA,10/15/2014,2:20:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.82,7.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 7:20,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_43.2_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,43.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.06,5.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_19.6_P,Field Msr/Obs,WATER,NA,8/4/2010,2:48:00,EST,NA,NA,NA,19.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.08,10.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_11_P,Field Msr/Obs,WATER,NA,7/28/2009,12:48:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.25,18.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_5.4_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,5.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20091014_1_P,Field Msr/Obs,WATER,NA,10/14/2009,10:37:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.09,7.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 15:37,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_5.4_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,5.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.71,19.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_9.1_P,Field Msr/Obs,WATER,NA,8/11/2014,1:37:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.63,19.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:37,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_10.1_P,Field Msr/Obs,WATER,NA,8/7/2012,11:57:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.07,19.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:57,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_12.9_P,Field Msr/Obs,WATER,NA,6/5/2013,6:29:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_17.4_P,Field Msr/Obs,WATER,NA,8/12/2014,1:33:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.28,12.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:33,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_6_P,Field Msr/Obs,WATER,NA,5/10/2012,4:37:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:37,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_24.9_P,Field Msr/Obs,WATER,NA,10/15/2009,1:41:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.85,9.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:41,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_24.8_P,Field Msr/Obs,WATER,NA,10/9/2012,1:41:00,EST,NA,NA,NA,24.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.55,12.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_25.4_P,Field Msr/Obs,WATER,NA,10/15/2009,1:42:00,EST,NA,NA,NA,25.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.66,9.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:42,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_14.6_P,Field Msr/Obs,WATER,NA,10/12/2010,6:06:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.31,14.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:06,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090728_0.1_P,Field Msr/Obs,WATER,NA,7/28/2009,8:07:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.99,20.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 13:07,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_20.8_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.85,8.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_5.9_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21,21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_23.3_P,Field Msr/Obs,WATER,NA,10/9/2012,1:41:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.57,12.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_6_P,Field Msr/Obs,WATER,NA,10/14/2009,9:39:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.05,10.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:39,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_23.3_P,Field Msr/Obs,WATER,NA,7/28/2009,2:08:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.84,7.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:08,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_10.1_P,Field Msr/Obs,WATER,NA,8/5/2010,11:35:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.85,18.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:35,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_11.9_P,Field Msr/Obs,WATER,NA,8/5/2010,11:19:00,EST,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.54,17.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:19,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_17.3_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,17.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.02,10.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_17_P,Field Msr/Obs,WATER,NA,7/28/2009,10:46:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:46,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_4.3_P,Field Msr/Obs,WATER,NA,9/13/2011,9:14:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_1.3_P,Field Msr/Obs,WATER,NA,10/9/2012,1:34:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.69,13.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:34,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_15.5_P,Field Msr/Obs,WATER,NA,8/6/2012,8:04:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.15,12.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:04,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_0.2_P,Field Msr/Obs,WATER,NA,8/12/2014,3:10:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.66,20.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:10,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_22.6_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,22.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.34,5.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_4.2_P,Field Msr/Obs,WATER,NA,10/10/2012,3:57:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.95,12.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:57,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_20.5_P,Field Msr/Obs,WATER,NA,10/16/2014,2:22:00,EST,NA,NA,NA,20.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.71,10.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:22,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_2.7_P,Field Msr/Obs,WATER,NA,8/7/2012,11:20:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.23,20.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20130924_1_P,Field Msr/Obs,WATER,NA,9/24/2013,1:48:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.98,12.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:48,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_12.7_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,12.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_16.1_P,Field Msr/Obs,WATER,NA,5/9/2012,2:52:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.91,8.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_16_P,Field Msr/Obs,WATER,NA,10/9/2012,1:38:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.65,12.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:38,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20101014_3.5_P,Field Msr/Obs,WATER,NA,10/14/2010,1:13:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.19,7.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:13,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20080722_2.4_P,Field Msr/Obs,WATER,NA,7/22/2008,7:45:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.41,20.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 12:45,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_13_P,Field Msr/Obs,WATER,NA,10/14/2009,7:36:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.92,10.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:36,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_7.4_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.36,6.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_10.2_P,Field Msr/Obs,WATER,NA,9/12/2011,7:21:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.22,18.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:21,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_8.6_P,Field Msr/Obs,WATER,NA,6/17/2015,4:30:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:30,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_16.3_P,Field Msr/Obs,WATER,NA,9/24/2013,11:15:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.23,10.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_15.9_P,Field Msr/Obs,WATER,NA,5/29/2014,12:45:00,EST,NA,NA,NA,15.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.06,9.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_19.2_P,Field Msr/Obs,WATER,NA,10/14/2009,7:39:00,EST,NA,NA,NA,19.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:39,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_24_P,Field Msr/Obs,WATER,NA,9/13/2011,9:52:00,EST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.54,16.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:52,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_13_P,Field Msr/Obs,WATER,NA,8/7/2012,11:24:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.66,13.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_35.7_P,Field Msr/Obs,WATER,NA,5/10/2012,4:48:00,EST,NA,NA,NA,35.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.34,5.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:48,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_12_P,Field Msr/Obs,WATER,NA,6/16/2015,6:39:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.71,10.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:39,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_12.7_P,Field Msr/Obs,WATER,NA,5/29/2014,11:48:00,EST,NA,NA,NA,12.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090520_4_P,Field Msr/Obs,WATER,NA,5/20/2009,6:05:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.09,12.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/20/2009 11:05,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_7.9_P,Field Msr/Obs,WATER,NA,9/13/2011,9:16:00,EST,NA,NA,NA,7.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:16,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_5.6_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.82,6.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_25.1_P,Field Msr/Obs,WATER,NA,10/15/2009,4:26:00,EST,NA,NA,NA,25.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:26,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_4_P,Field Msr/Obs,WATER,NA,8/4/2010,2:43:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.12,21.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20080515_15.3_P,Field Msr/Obs,WATER,NA,5/15/2008,9:00:00,EST,NA,NA,NA,15.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.09,8.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_1_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_32.1_P,Field Msr/Obs,WATER,NA,8/7/2012,11:02:00,EST,NA,NA,NA,32.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.29,6.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:02,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_7.5_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,7.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.15,9.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_16.4_P,Field Msr/Obs,WATER,NA,9/12/2011,7:27:00,EST,NA,NA,NA,16.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.86,15.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:27,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_21.4_P,Field Msr/Obs,WATER,NA,10/9/2012,2:32:00,EST,NA,NA,NA,21.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.67,11.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:32,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_26.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:51:00,EST,NA,NA,NA,26.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.75,6.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:51,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_10.5_P,Field Msr/Obs,WATER,NA,9/13/2011,9:16:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.36,17.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:16,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_14.4_P,Field Msr/Obs,WATER,NA,10/14/2009,4:28:00,EST,NA,NA,NA,14.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.82,9.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:28,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_2.1_P,Field Msr/Obs,WATER,NA,5/29/2014,3:09:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.03,15.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:09,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_2.9_P,Field Msr/Obs,WATER,NA,10/14/2009,8:59:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 13:59,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20120806_1.8_P,Field Msr/Obs,WATER,NA,8/6/2012,8:41:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.41,21.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:41,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_1_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_14.7_P,Field Msr/Obs,WATER,NA,7/28/2009,10:12:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:12,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_14.4_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,14.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.14,8.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_38.8_P,Field Msr/Obs,WATER,NA,5/10/2012,3:47:00,EST,NA,NA,NA,38.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.16,5.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_8.7_P,Field Msr/Obs,WATER,NA,5/28/2014,1:44:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.49,13.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:44,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_16.9_P,Field Msr/Obs,WATER,NA,10/14/2010,8:23:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.12,14.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_0.3_P,Field Msr/Obs,WATER,NA,6/16/2015,6:01:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.52,18.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:01,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_4_P,Field Msr/Obs,WATER,NA,8/5/2010,12:08:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.7,21.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:08,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_10.5_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_16.2_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_17.1_P,Field Msr/Obs,WATER,NA,9/13/2011,9:50:00,EST,NA,NA,NA,17.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.31,17.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:50,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_10.8_P,Field Msr/Obs,WATER,NA,8/6/2012,2:17:00,EST,NA,NA,NA,10.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.84,18.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:17,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_15.6_P,Field Msr/Obs,WATER,NA,10/10/2012,4:23:00,EST,NA,NA,NA,15.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.51,12.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:23,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_14_P,Field Msr/Obs,WATER,NA,6/16/2015,6:39:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.75,9.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:39,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_0_P,Field Msr/Obs,WATER,NA,9/12/2011,7:18:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.48,18.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:18,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_8.5_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.82,18.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_0.1_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.83,19.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_2.9_P,Field Msr/Obs,WATER,NA,10/14/2010,9:19:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:19,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_2.6_P,Field Msr/Obs,WATER,NA,5/11/2012,10:34:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.14,10.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_10.9_P,Field Msr/Obs,WATER,NA,8/12/2014,2:06:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.16,19.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:06,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_35.6_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,35.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.29,6.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_13.9_P,Field Msr/Obs,WATER,NA,7/28/2009,7:02:00,EST,NA,NA,NA,13.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.77,11.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:02,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_8.1_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.01,18.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_18.6_P,Field Msr/Obs,WATER,NA,10/14/2010,9:22:00,EST,NA,NA,NA,18.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.51,13.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:22,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_1_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.6,20.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_27.5_P,Field Msr/Obs,WATER,NA,5/10/2012,3:02:00,EST,NA,NA,NA,27.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.25,5.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:02,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_18.2_P,Field Msr/Obs,WATER,NA,8/6/2012,3:31:00,EST,NA,NA,NA,18.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.63,16.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:31,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20080513_1.5_P,Field Msr/Obs,WATER,NA,5/13/2008,11:45:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:45,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_27.1_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,27.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_15.3_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,15.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.14,11.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_31.2_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,31.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.13,6.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_31.7_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,31.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.94,6.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_39.1_P,Field Msr/Obs,WATER,NA,10/16/2014,11:43:00,EST,NA,NA,NA,39.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.83,7.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:43,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_4.8_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.08,20.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_0.1_P,Field Msr/Obs,WATER,NA,7/28/2009,11:36:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.32,21.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:36,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_17.6_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_6_P,Field Msr/Obs,WATER,NA,10/15/2014,1:19:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.78,12.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:19,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_0.1_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.66,7.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_14.2_P,Field Msr/Obs,WATER,NA,10/9/2012,1:38:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.65,12.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:38,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_2.5_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.35,7.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_15_P,Field Msr/Obs,WATER,NA,7/28/2009,10:45:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.43,11.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:45,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_6.1_P,Field Msr/Obs,WATER,NA,10/16/2014,12:47:00,EST,NA,NA,NA,6.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.16,13.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:47,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_7.5_P,Field Msr/Obs,WATER,NA,7/28/2009,9:08:00,EST,NA,NA,NA,7.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.71,20.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:08,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_9.4_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.43,17.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_19.3_P,Field Msr/Obs,WATER,NA,10/10/2012,3:00:00,EST,NA,NA,NA,19.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.59,9.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:00,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_4_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.08,20.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_27.3_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,27.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.15,5.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_23_P,Field Msr/Obs,WATER,NA,7/28/2009,12:05:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.63,8.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:05,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_16.5_P,Field Msr/Obs,WATER,NA,9/23/2013,1:42:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.68,16.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:42,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_6_P,Field Msr/Obs,WATER,NA,6/17/2015,4:08:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.93,16.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:08,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_17.6_P,Field Msr/Obs,WATER,NA,10/11/2012,9:23:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.74,9.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:23,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_23.5_P,Field Msr/Obs,WATER,NA,9/11/2009,11:01:00,EST,NA,NA,NA,23.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.94,7.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:01,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_2.5_P,Field Msr/Obs,WATER,NA,6/5/2013,6:23:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:23,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_17_P,Field Msr/Obs,WATER,NA,6/17/2015,4:11:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.51,9.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:11,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_5.1_P,Field Msr/Obs,WATER,NA,7/28/2009,6:31:00,EST,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.46,20.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_9.9_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.23,6.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_4.4_P,Field Msr/Obs,WATER,NA,5/28/2014,7:44:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.84,14.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:44,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20121009_1.1_P,Field Msr/Obs,WATER,NA,10/9/2012,7:46:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.48,10.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 12:46,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_19_P,Field Msr/Obs,WATER,NA,10/14/2010,2:22:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:22,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_16.8_P,Field Msr/Obs,WATER,NA,5/11/2012,9:36:00,EST,NA,NA,NA,16.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.02,7.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:36,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_12.3_P,Field Msr/Obs,WATER,NA,10/14/2009,5:50:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_12.5_P,Field Msr/Obs,WATER,NA,10/9/2012,2:30:00,EST,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.59,12.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:30,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_7.2_P,Field Msr/Obs,WATER,NA,10/14/2009,4:25:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.95,10.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:25,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_5.8_P,Field Msr/Obs,WATER,NA,8/12/2014,3:32:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.51,20.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:32,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_7.7_P,Field Msr/Obs,WATER,NA,6/16/2015,4:56:00,EST,NA,NA,NA,7.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.35,16.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:56,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_6.5_P,Field Msr/Obs,WATER,NA,6/16/2015,6:38:00,EST,NA,NA,NA,6.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.51,16.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:38,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_17.5_P,Field Msr/Obs,WATER,NA,8/5/2010,3:21:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.42,18.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:21,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_4.5_P,Field Msr/Obs,WATER,NA,6/17/2015,4:08:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.81,17.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:08,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_17.7_P,Field Msr/Obs,WATER,NA,9/12/2011,7:29:00,EST,NA,NA,NA,17.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.29,14.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_22_P,Field Msr/Obs,WATER,NA,5/29/2014,2:25:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.74,7.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:25,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_8.5_P,Field Msr/Obs,WATER,NA,8/6/2012,3:28:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.85,18.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:28,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_4.1_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.42,20.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_4.1_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.23,10.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_21_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.77,8.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_19_P,Field Msr/Obs,WATER,NA,8/7/2012,11:27:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.83,10.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:27,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_31.3_P,Field Msr/Obs,WATER,NA,7/28/2009,12:08:00,EST,NA,NA,NA,31.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.81,6.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:08,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080513_4.8_P,Field Msr/Obs,WATER,NA,5/13/2008,10:20:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.74,10.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 15:20,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_0.3_P,Field Msr/Obs,WATER,NA,10/16/2014,2:50:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.68,13.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_13.5_P,Field Msr/Obs,WATER,NA,9/10/2009,12:08:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.73,17.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:08,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_21_P,Field Msr/Obs,WATER,NA,7/28/2009,2:07:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.57,8.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:07,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20150616_1_P,Field Msr/Obs,WATER,NA,6/16/2015,5:17:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.82,17.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 10:17,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_12_P,Field Msr/Obs,WATER,NA,7/28/2009,10:09:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.41,14.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:09,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_29.1_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,29.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_23.5_P,Field Msr/Obs,WATER,NA,10/14/2010,9:24:00,EST,NA,NA,NA,23.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.99,8.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:24,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_3.6_P,Field Msr/Obs,WATER,NA,10/9/2012,2:27:00,EST,NA,NA,NA,3.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.77,12.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:27,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_14.2_P,Field Msr/Obs,WATER,NA,8/4/2010,3:53:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.07,13.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:53,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_9.6_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,9.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.02,15.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_9.7_P,Field Msr/Obs,WATER,NA,8/4/2010,3:47:00,EST,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.69,18.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:47,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_16_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.83,6.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_2.1_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.43,11.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_2.7_P,Field Msr/Obs,WATER,NA,8/6/2012,8:01:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:01,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_11.3_P,Field Msr/Obs,WATER,NA,8/7/2012,11:58:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.57,16.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:58,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_8.7_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.03,18.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_32_P,Field Msr/Obs,WATER,NA,10/15/2009,3:29:00,EST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_20_P,Field Msr/Obs,WATER,NA,10/15/2009,4:23:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:23,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_21.7_P,Field Msr/Obs,WATER,NA,8/7/2012,12:04:00,EST,NA,NA,NA,21.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.57,9.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:04,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_0.1_P,Field Msr/Obs,WATER,NA,10/14/2010,9:49:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.41,14.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:49,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_44.2_P,Field Msr/Obs,WATER,NA,7/28/2009,2:13:00,EST,NA,NA,NA,44.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.77,5.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:13,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_39_P,Field Msr/Obs,WATER,NA,10/15/2009,4:28:00,EST,NA,NA,NA,39,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:28,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_1_P,Field Msr/Obs,WATER,NA,8/7/2012,1:03:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.88,20.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:03,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_18.6_P,Field Msr/Obs,WATER,NA,9/10/2009,11:13:00,EST,NA,NA,NA,18.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.63,17.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:13,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_25_P,Field Msr/Obs,WATER,NA,10/14/2010,9:24:00,EST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.89,8.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:24,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_15.1_P,Field Msr/Obs,WATER,NA,5/10/2012,2:58:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.61,7.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:58,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_22_P,Field Msr/Obs,WATER,NA,7/28/2009,10:49:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.83,7.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:49,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_26_P,Field Msr/Obs,WATER,NA,10/15/2009,3:28:00,EST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.74,8.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:28,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_18.8_P,Field Msr/Obs,WATER,NA,8/12/2014,3:14:00,EST,NA,NA,NA,18.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.61,10.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:14,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_19.1_P,Field Msr/Obs,WATER,NA,10/10/2012,4:01:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.27,10.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:01,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_30.5_P,Field Msr/Obs,WATER,NA,8/7/2012,11:30:00,EST,NA,NA,NA,30.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_8.6_P,Field Msr/Obs,WATER,NA,8/7/2012,11:22:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.56,19.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_2.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:19:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:19,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_6_P,Field Msr/Obs,WATER,NA,10/12/2010,3:29:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.38,12.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:29,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_3.8_P,Field Msr/Obs,WATER,NA,10/10/2012,2:16:00,EST,NA,NA,NA,3.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.72,13.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:16,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_35_P,Field Msr/Obs,WATER,NA,8/12/2014,2:13:00,EST,NA,NA,NA,35,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.34,7.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:13,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_14.8_P,Field Msr/Obs,WATER,NA,10/14/2010,8:22:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.35,14.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_28.9_P,Field Msr/Obs,WATER,NA,10/15/2009,4:27:00,EST,NA,NA,NA,28.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.02,8.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:27,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_21.6_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,21.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.16,8.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_6_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.99,19.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_8.3_P,Field Msr/Obs,WATER,NA,5/10/2012,2:56:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.19,9.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_2.2_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.31,11.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_1.2_P,Field Msr/Obs,WATER,NA,5/11/2012,8:29:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.47,8.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_16.5_P,Field Msr/Obs,WATER,NA,10/15/2009,2:06:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.16,11.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:06,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_39_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,39,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.65,5.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_14.8_P,Field Msr/Obs,WATER,NA,8/5/2010,11:21:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.52,14.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:21,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_0.2_P,Field Msr/Obs,WATER,NA,6/17/2015,4:28:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.15,20.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:28,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_22.4_P,Field Msr/Obs,WATER,NA,10/15/2009,2:09:00,EST,NA,NA,NA,22.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.82,10.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:09,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_15.4_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,15.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.65,7.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_0.1_P,Field Msr/Obs,WATER,NA,8/5/2010,11:15:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.53,21.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_19.9_P,Field Msr/Obs,WATER,NA,9/13/2011,9:51:00,EST,NA,NA,NA,19.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.92,16.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:51,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_16.3_P,Field Msr/Obs,WATER,NA,9/11/2009,11:03:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.24,12.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:03,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_0.1_P,Field Msr/Obs,WATER,NA,5/11/2012,9:28:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:28,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_38.6_P,Field Msr/Obs,WATER,NA,5/29/2014,12:48:00,EST,NA,NA,NA,38.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.89,6.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_3.1_P,Field Msr/Obs,WATER,NA,10/12/2010,3:54:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.29,14.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:54,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_10_P,Field Msr/Obs,WATER,NA,5/9/2012,4:36:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.89,8.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:36,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_21_P,Field Msr/Obs,WATER,NA,9/11/2009,11:01:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.84,8.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:01,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_12.9_P,Field Msr/Obs,WATER,NA,5/10/2012,3:41:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:41,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_35.6_P,Field Msr/Obs,WATER,NA,10/14/2010,9:27:00,EST,NA,NA,NA,35.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.98,7.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:27,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_0.1_P,Field Msr/Obs,WATER,NA,10/9/2012,2:25:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.35,13.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:25,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_2.6_P,Field Msr/Obs,WATER,NA,10/10/2012,4:19:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.36,13.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:19,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_1.1_P,Field Msr/Obs,WATER,NA,9/10/2009,11:09:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.25,18.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:09,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_16.3_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.23,10.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_0.5_P,Field Msr/Obs,WATER,NA,9/24/2013,10:46:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.32,17.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:46,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_2_P,Field Msr/Obs,WATER,NA,7/28/2009,6:29:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.82,20.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:29,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_10.6_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_15.5_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.01,11.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_15_P,Field Msr/Obs,WATER,NA,8/4/2010,3:53:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.44,12.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:53,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_12.9_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.91,7.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140811_10.1_P,Field Msr/Obs,WATER,NA,8/11/2014,5:25:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.97,18.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:25,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_2.6_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_5.5_P,Field Msr/Obs,WATER,NA,5/11/2012,10:35:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.67,9.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:35,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_6.5_P,Field Msr/Obs,WATER,NA,7/28/2009,6:33:00,EST,NA,NA,NA,6.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.84,19.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120806_1.7_P,Field Msr/Obs,WATER,NA,8/6/2012,7:16:00,EST,NA,NA,NA,1.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.63,22.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 12:16,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090520_0.8_P,Field Msr/Obs,WATER,NA,5/20/2009,3:15:00,EST,NA,NA,NA,0.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.21,16.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/20/2009 8:15,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_4_P,Field Msr/Obs,WATER,NA,10/14/2009,3:04:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.62,9.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:04,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_13.2_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.91,11.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_0.2_P,Field Msr/Obs,WATER,NA,5/11/2012,10:32:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.17,10.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:32,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120806_7_P,Field Msr/Obs,WATER,NA,8/6/2012,6:56:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.22,19.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 11:56,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_8.8_P,Field Msr/Obs,WATER,NA,8/7/2012,1:05:00,EST,NA,NA,NA,8.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.03,20.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:05,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_10.3_P,Field Msr/Obs,WATER,NA,10/14/2009,5:49:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.94,10.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:49,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_7.3_P,Field Msr/Obs,WATER,NA,5/29/2014,12:39:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.33,12.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_16.3_P,Field Msr/Obs,WATER,NA,8/4/2010,2:48:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.46,11.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_7_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.44,7.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20091015_1_P,Field Msr/Obs,WATER,NA,10/15/2009,7:22:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.57,13.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 12:22,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_31.6_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,31.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.71,5.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_10_P,Field Msr/Obs,WATER,NA,8/4/2010,2:45:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.66,17.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_0_P,Field Msr/Obs,WATER,NA,9/13/2011,9:47:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.46,17.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:47,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_16.6_P,Field Msr/Obs,WATER,NA,7/28/2009,2:03:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.36,11.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:03,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_10_P,Field Msr/Obs,WATER,NA,10/14/2010,9:51:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.24,14.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:51,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_12.4_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,12.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.71,7.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_45.1_P,Field Msr/Obs,WATER,NA,10/10/2012,1:57:00,EST,NA,NA,NA,45.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.74,5.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_15.8_P,Field Msr/Obs,WATER,NA,9/12/2011,7:26:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.08,17.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:26,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_19_P,Field Msr/Obs,WATER,NA,7/28/2009,10:47:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.19,8.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:47,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_21.6_P,Field Msr/Obs,WATER,NA,9/13/2011,9:18:00,EST,NA,NA,NA,21.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.24,17.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:18,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_20.8_P,Field Msr/Obs,WATER,NA,6/5/2013,5:16:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:16,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_1_P,Field Msr/Obs,WATER,NA,6/2/2010,3:52:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.24,11.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:52,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_32.4_P,Field Msr/Obs,WATER,NA,10/13/2010,12:40:00,EST,NA,NA,NA,32.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:40,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_0.1_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.31,22.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_20.2_P,Field Msr/Obs,WATER,NA,6/5/2013,6:33:00,EST,NA,NA,NA,20.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.44,7.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20121009_0.7_P,Field Msr/Obs,WATER,NA,10/9/2012,3:50:00,EST,NA,NA,NA,0.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.23,8.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 8:50,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_9_P,Field Msr/Obs,WATER,NA,7/28/2009,6:45:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.96,17.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:45,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_8.3_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.17,18.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_14_P,Field Msr/Obs,WATER,NA,10/15/2009,4:20:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:20,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_31_P,Field Msr/Obs,WATER,NA,10/15/2009,3:29:00,EST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.06,8.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_10.7_P,Field Msr/Obs,WATER,NA,7/28/2009,9:14:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.86,15.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:14,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_34.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:18:00,EST,NA,NA,NA,34.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.27,6.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:18,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_21.9_P,Field Msr/Obs,WATER,NA,10/14/2009,7:39:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.38,9.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:39,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_5.5_P,Field Msr/Obs,WATER,NA,6/17/2015,4:08:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.32,17.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:08,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_9.2_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,9.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.15,18.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080722_5.3_P,Field Msr/Obs,WATER,NA,7/22/2008,8:10:00,EST,NA,NA,NA,5.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.75,19.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 13:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090910_13.9_P,Field Msr/Obs,WATER,NA,9/10/2009,12:40:00,EST,NA,NA,NA,13.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.14,17.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:40,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_15.8_P,Field Msr/Obs,WATER,NA,10/10/2012,2:55:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.16,13.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_2.3_P,Field Msr/Obs,WATER,NA,10/10/2012,2:15:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.76,13.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_21.2_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_18.9_P,Field Msr/Obs,WATER,NA,10/12/2010,6:10:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.75,9.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:10,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_14.7_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.45,7.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_11.1_P,Field Msr/Obs,WATER,NA,5/10/2012,2:57:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.09,8.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080722_0.1_P,Field Msr/Obs,WATER,NA,7/22/2008,8:10:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.81,21.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 13:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_14.5_P,Field Msr/Obs,WATER,NA,9/24/2013,8:50:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_4.5_P,Field Msr/Obs,WATER,NA,10/14/2010,8:20:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_18.1_P,Field Msr/Obs,WATER,NA,10/14/2010,3:13:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:13,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_22.4_P,Field Msr/Obs,WATER,NA,9/23/2013,1:45:00,EST,NA,NA,NA,22.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_31.1_P,Field Msr/Obs,WATER,NA,6/16/2015,11:52:00,EST,NA,NA,NA,31.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.87,10.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_13_P,Field Msr/Obs,WATER,NA,10/15/2009,3:22:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_21.8_P,Field Msr/Obs,WATER,NA,8/5/2010,2:52:00,EST,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.25,17.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:52,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_0.2_P,Field Msr/Obs,WATER,NA,8/6/2012,8:00:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.6,21.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20101014_0.1_P,Field Msr/Obs,WATER,NA,10/14/2010,1:30:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.37,13.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:30,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_2_P,Field Msr/Obs,WATER,NA,10/14/2009,3:03:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.79,9.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:03,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_0_P,Field Msr/Obs,WATER,NA,8/12/2014,2:02:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.3,22.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090519_3.3_P,Field Msr/Obs,WATER,NA,5/19/2009,7:15:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.47,15.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 12:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_22.7_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,22.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.13,6.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_18.3_P,Field Msr/Obs,WATER,NA,5/29/2014,11:50:00,EST,NA,NA,NA,18.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.08,8.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_33.4_P,Field Msr/Obs,WATER,NA,10/10/2012,2:24:00,EST,NA,NA,NA,33.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.55,6.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_14_P,Field Msr/Obs,WATER,NA,10/10/2012,2:54:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.18,13.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_0.1_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.22,8.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_12.2_P,Field Msr/Obs,WATER,NA,7/28/2009,9:18:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:18,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_4.3_P,Field Msr/Obs,WATER,NA,10/11/2012,9:18:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.62,12.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:18,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_6.5_P,Field Msr/Obs,WATER,NA,10/12/2010,6:03:00,EST,NA,NA,NA,6.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.69,14.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:03,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_2.1_P,Field Msr/Obs,WATER,NA,10/14/2009,9:37:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.31,10.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:37,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_25.3_P,Field Msr/Obs,WATER,NA,6/16/2015,11:51:00,EST,NA,NA,NA,25.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.89,12.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:51,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_3_P,Field Msr/Obs,WATER,NA,7/28/2009,10:35:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.67,20.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:35,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_13_P,Field Msr/Obs,WATER,NA,10/14/2010,9:52:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.21,14.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:52,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_10.1_P,Field Msr/Obs,WATER,NA,6/5/2013,7:15:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.02,9.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_12_P,Field Msr/Obs,WATER,NA,10/15/2009,4:20:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:20,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_12.8_P,Field Msr/Obs,WATER,NA,8/6/2012,3:29:00,EST,NA,NA,NA,12.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.45,18.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:29,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20081023_1_P,Field Msr/Obs,WATER,NA,10/23/2008,8:00:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.76,9.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2008 13:00,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_10_P,Field Msr/Obs,WATER,NA,8/6/2012,2:16:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.92,18.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:16,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,12:40:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.73,17.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:40,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_15.2_P,Field Msr/Obs,WATER,NA,9/13/2011,10:22:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.04,16.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:22,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_17.9_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,17.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_17.2_P,Field Msr/Obs,WATER,NA,8/5/2010,11:44:00,EST,NA,NA,NA,17.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.18,11.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:44,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_0.4_P,Field Msr/Obs,WATER,NA,5/29/2014,2:19:00,EST,NA,NA,NA,0.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.84,13.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:19,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_10_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.26,7.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_4.9_P,Field Msr/Obs,WATER,NA,6/16/2015,11:46:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.18,17.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_3_P,Field Msr/Obs,WATER,NA,10/11/2012,9:18:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:18,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_5.5_P,Field Msr/Obs,WATER,NA,8/6/2012,8:02:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.12,21.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:02,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_11.3_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.35,13.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_2.1_P,Field Msr/Obs,WATER,NA,10/14/2009,5:45:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_6_P,Field Msr/Obs,WATER,NA,10/14/2009,9:00:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_14.3_P,Field Msr/Obs,WATER,NA,5/29/2014,12:43:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.28,10.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_6.7_P,Field Msr/Obs,WATER,NA,6/2/2010,3:56:00,EST,NA,NA,NA,6.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.69,9.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:56,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_8.1_P,Field Msr/Obs,WATER,NA,8/5/2010,12:10:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.18,19.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_15.2_P,Field Msr/Obs,WATER,NA,10/12/2010,3:57:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.86,13.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:57,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_18.4_P,Field Msr/Obs,WATER,NA,10/14/2010,9:57:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.18,12.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:57,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_3.5_P,Field Msr/Obs,WATER,NA,6/2/2010,3:53:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.19,10.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:53,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_26.2_P,Field Msr/Obs,WATER,NA,8/7/2012,12:06:00,EST,NA,NA,NA,26.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.81,7.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:06,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_7.2_P,Field Msr/Obs,WATER,NA,8/4/2010,2:44:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.56,19.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:44,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_21.2_P,Field Msr/Obs,WATER,NA,10/13/2010,12:34:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.18,10.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:34,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_33.1_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,33.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.38,7.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_17.8_P,Field Msr/Obs,WATER,NA,10/14/2010,9:56:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.89,12.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:56,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_12_P,Field Msr/Obs,WATER,NA,7/28/2009,10:44:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.14,15.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:44,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_19.5_P,Field Msr/Obs,WATER,NA,7/28/2009,12:00:00,EST,NA,NA,NA,19.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.57,10.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:00,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_21.8_P,Field Msr/Obs,WATER,NA,8/7/2012,10:58:00,EST,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.06,9.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:58,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_8.6_P,Field Msr/Obs,WATER,NA,10/9/2012,1:36:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:36,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20150616_3.9_P,Field Msr/Obs,WATER,NA,6/16/2015,5:18:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.76,17.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 10:18,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_6_P,Field Msr/Obs,WATER,NA,8/5/2010,12:09:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.26,21.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:09,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_17.3_P,Field Msr/Obs,WATER,NA,10/14/2009,9:08:00,EST,NA,NA,NA,17.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.73,9.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:08,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20101014_1.8_P,Field Msr/Obs,WATER,NA,10/14/2010,1:13:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.28,7.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:13,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_19.2_P,Field Msr/Obs,WATER,NA,10/15/2014,1:22:00,EST,NA,NA,NA,19.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.82,11.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:22,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_17.6_P,Field Msr/Obs,WATER,NA,7/28/2009,10:14:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.12,11.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:14,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_9.4_P,Field Msr/Obs,WATER,NA,7/27/2009,8:11:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.93,18.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:11,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_18.9_P,Field Msr/Obs,WATER,NA,5/11/2012,8:35:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:35,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_1.1_P,Field Msr/Obs,WATER,NA,10/15/2009,4:15:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_26.5_P,Field Msr/Obs,WATER,NA,7/28/2009,10:23:00,EST,NA,NA,NA,26.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.95,7.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:23,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_12.6_P,Field Msr/Obs,WATER,NA,10/10/2012,1:49:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.73,13.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_3.9_P,Field Msr/Obs,WATER,NA,6/2/2010,3:55:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.71,9.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:55,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_14_P,Field Msr/Obs,WATER,NA,10/15/2009,3:23:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.08,12.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_9_P,Field Msr/Obs,WATER,NA,10/15/2009,1:36:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:36,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_3.9_P,Field Msr/Obs,WATER,NA,5/10/2012,3:39:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.39,8.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_11.1_P,Field Msr/Obs,WATER,NA,7/28/2009,10:43:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.56,17.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:43,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_46_P,Field Msr/Obs,WATER,NA,10/10/2012,1:58:00,EST,NA,NA,NA,46,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.74,5.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:58,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_13_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.03,12.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_40_P,Field Msr/Obs,WATER,NA,6/17/2015,2:22:00,EST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.88,5.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:22,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_14.2_P,Field Msr/Obs,WATER,NA,10/10/2012,3:59:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.68,12.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:59,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_14.1_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.04,11.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_4.2_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.39,10.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_16.6_P,Field Msr/Obs,WATER,NA,7/28/2009,7:05:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.34,10.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:05,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120509_0.6_P,Field Msr/Obs,WATER,NA,5/9/2012,4:34:00,EST,NA,NA,NA,0.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.55,12.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_3.3_P,Field Msr/Obs,WATER,NA,6/2/2010,3:53:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.42,10.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:53,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_11.1_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.72,12.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_14.6_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.85,10.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_18.8_P,Field Msr/Obs,WATER,NA,8/12/2014,3:35:00,EST,NA,NA,NA,18.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.08,11.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:35,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_1_P,Field Msr/Obs,WATER,NA,10/15/2009,2:03:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.26,11.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:03,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_5.1_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_25.6_P,Field Msr/Obs,WATER,NA,10/15/2009,1:42:00,EST,NA,NA,NA,25.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:42,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_9.1_P,Field Msr/Obs,WATER,NA,7/28/2009,9:11:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:11,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_39.5_P,Field Msr/Obs,WATER,NA,6/17/2015,2:55:00,EST,NA,NA,NA,39.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:55,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_2_P,Field Msr/Obs,WATER,NA,6/4/2013,3:48:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.47,14.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:48,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_18.4_P,Field Msr/Obs,WATER,NA,8/6/2012,2:19:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.41,17.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:19,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090519_2.3_P,Field Msr/Obs,WATER,NA,5/19/2009,7:15:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.15,17.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 12:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_1_P,Field Msr/Obs,WATER,NA,7/28/2009,10:34:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.82,20.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_2.3_P,Field Msr/Obs,WATER,NA,5/10/2012,4:35:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.41,9.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:35,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_0.1_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.67,21.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_17.5_P,Field Msr/Obs,WATER,NA,10/16/2014,11:37:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.39,13.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:37,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_0.2_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.56,11.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_4.5_P,Field Msr/Obs,WATER,NA,9/13/2011,10:20:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.15,17.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:20,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_14.4_P,Field Msr/Obs,WATER,NA,10/14/2009,5:51:00,EST,NA,NA,NA,14.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.53,10.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_7.6_P,Field Msr/Obs,WATER,NA,8/5/2010,12:10:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.74,20.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_0.1_P,Field Msr/Obs,WATER,NA,8/4/2010,2:41:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.51,21.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:41,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_42.3_P,Field Msr/Obs,WATER,NA,9/24/2013,8:59:00,EST,NA,NA,NA,42.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.98,6.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:59,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_10.8_P,Field Msr/Obs,WATER,NA,7/28/2009,10:07:00,EST,NA,NA,NA,10.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.22,15.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:07,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_7.6_P,Field Msr/Obs,WATER,NA,6/16/2015,12:33:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.16,17.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:33,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_5_P,Field Msr/Obs,WATER,NA,10/14/2009,7:34:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.17,11.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:34,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_29.8_P,Field Msr/Obs,WATER,NA,10/9/2012,1:42:00,EST,NA,NA,NA,29.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.54,12.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:42,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_19_P,Field Msr/Obs,WATER,NA,8/5/2010,3:22:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.33,18.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:22,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_6.1_P,Field Msr/Obs,WATER,NA,7/28/2009,12:45:00,EST,NA,NA,NA,6.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.8,20.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_12.3_P,Field Msr/Obs,WATER,NA,9/24/2013,8:49:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.08,17.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_1.1_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.01,14.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_4.9_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_21_P,Field Msr/Obs,WATER,NA,10/16/2014,2:22:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.37,10.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:22,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_36.6_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,36.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.69,5.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_6.1_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,6.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.07,11.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_17.1_P,Field Msr/Obs,WATER,NA,10/14/2009,5:52:00,EST,NA,NA,NA,17.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.62,9.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_3.2_P,Field Msr/Obs,WATER,NA,8/5/2010,11:32:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.21,21.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:32,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_11.1_P,Field Msr/Obs,WATER,NA,8/5/2010,11:19:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.51,18.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:19,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_30.9_P,Field Msr/Obs,WATER,NA,5/10/2012,4:46:00,EST,NA,NA,NA,30.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.43,5.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:46,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_30.4_P,Field Msr/Obs,WATER,NA,8/4/2010,2:51:00,EST,NA,NA,NA,30.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.56,7.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:51,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20140811_1.7_P,Field Msr/Obs,WATER,NA,8/11/2014,2:44:00,EST,NA,NA,NA,1.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.12,20.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 7:44,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_4.8_P,Field Msr/Obs,WATER,NA,9/24/2013,10:47:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.18,17.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:47,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090910_2.7_P,Field Msr/Obs,WATER,NA,9/10/2009,12:38:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.51,17.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:38,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_4_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.24,13.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_15.2_P,Field Msr/Obs,WATER,NA,10/14/2009,7:37:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.76,10.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:37,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_1_P,Field Msr/Obs,WATER,NA,9/23/2013,2:27:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.81,16.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:27,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_13_P,Field Msr/Obs,WATER,NA,8/4/2010,4:56:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.28,15.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:56,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_1.9_P,Field Msr/Obs,WATER,NA,9/24/2013,10:47:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.27,17.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:47,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_21.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:25:00,EST,NA,NA,NA,21.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.01,11.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:25,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_13.7_P,Field Msr/Obs,WATER,NA,10/14/2009,5:50:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.58,10.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_28.8_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,28.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.99,6.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_11.2_P,Field Msr/Obs,WATER,NA,5/11/2012,9:34:00,EST,NA,NA,NA,11.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.29,9.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:34,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_7.2_P,Field Msr/Obs,WATER,NA,5/11/2012,8:31:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.36,7.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:31,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090519_4.7_P,Field Msr/Obs,WATER,NA,5/19/2009,7:15:00,EST,NA,NA,NA,4.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.34,12.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 12:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_19.5_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,19.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.64,9.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_13.8_P,Field Msr/Obs,WATER,NA,8/5/2010,11:37:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.55,15.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:37,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20150616_0.2_P,Field Msr/Obs,WATER,NA,6/16/2015,5:17:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.82,17.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 10:17,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_12_P,Field Msr/Obs,WATER,NA,8/11/2014,1:59:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.32,19.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_9.9_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.58,8.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_1_P,Field Msr/Obs,WATER,NA,6/17/2015,4:07:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.39,18.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:07,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_19_P,Field Msr/Obs,WATER,NA,10/9/2012,1:39:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:39,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_13.9_P,Field Msr/Obs,WATER,NA,8/11/2014,1:38:00,EST,NA,NA,NA,13.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.51,19.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:38,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_20_P,Field Msr/Obs,WATER,NA,10/15/2009,3:25:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.47,11.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:25,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_16.2_P,Field Msr/Obs,WATER,NA,10/16/2014,1:33:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.98,12.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_7_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_0_P,Field Msr/Obs,WATER,NA,10/9/2012,2:57:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.54,12.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:57,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_22.4_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,22.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.75,8.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_1.5_P,Field Msr/Obs,WATER,NA,5/28/2014,1:42:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.34,14.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:42,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_24_P,Field Msr/Obs,WATER,NA,10/10/2012,1:53:00,EST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.81,8.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_0.1_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.86,20.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_37.6_P,Field Msr/Obs,WATER,NA,6/17/2015,3:33:00,EST,NA,NA,NA,37.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.46,6.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:33,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_30.8_P,Field Msr/Obs,WATER,NA,10/15/2014,12:33:00,EST,NA,NA,NA,30.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:33,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_2.7_P,Field Msr/Obs,WATER,NA,6/5/2013,7:11:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:11,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_35.4_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,35.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.32,5.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_24.7_P,Field Msr/Obs,WATER,NA,8/7/2012,11:00:00,EST,NA,NA,NA,24.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.96,7.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_22.8_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,22.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.09,8.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_30.8_P,Field Msr/Obs,WATER,NA,9/24/2013,8:57:00,EST,NA,NA,NA,30.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.27,7.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_31_P,Field Msr/Obs,WATER,NA,7/28/2009,1:03:00,EST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.92,6.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:03,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_14.8_P,Field Msr/Obs,WATER,NA,9/12/2011,7:22:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.08,18.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:22,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_9.7_P,Field Msr/Obs,WATER,NA,7/28/2009,10:04:00,EST,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.99,17.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_36_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,36,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.35,7.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20080513_1_P,Field Msr/Obs,WATER,NA,5/13/2008,9:40:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.51,9.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 14:40,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_6.8_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,6.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.48,7.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_10_P,Field Msr/Obs,WATER,NA,6/5/2013,5:43:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:43,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_7.4_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.03,19.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_1.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:30:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.36,11.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:30,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_15_P,Field Msr/Obs,WATER,NA,6/16/2015,6:40:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:40,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_12.9_P,Field Msr/Obs,WATER,NA,8/7/2012,10:55:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.99,13.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_29.5_P,Field Msr/Obs,WATER,NA,9/13/2011,9:20:00,EST,NA,NA,NA,29.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.97,15.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:20,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_17.6_P,Field Msr/Obs,WATER,NA,10/10/2012,2:19:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.11,12.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:19,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_7.9_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,7.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.41,18.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_18.5_P,Field Msr/Obs,WATER,NA,8/7/2012,1:07:00,EST,NA,NA,NA,18.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.65,11.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:07,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_8.8_P,Field Msr/Obs,WATER,NA,8/5/2010,12:11:00,EST,NA,NA,NA,8.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.52,18.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:11,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_21.9_P,Field Msr/Obs,WATER,NA,8/4/2010,2:49:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.08,9.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:49,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20091015_0_P,Field Msr/Obs,WATER,NA,10/15/2009,7:22:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 12:22,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_11.1_P,Field Msr/Obs,WATER,NA,10/14/2009,9:42:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:42,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_6.4_P,Field Msr/Obs,WATER,NA,7/28/2009,11:42:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.64,20.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:42,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_22_P,Field Msr/Obs,WATER,NA,10/10/2012,1:53:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.41,9.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_16.3_P,Field Msr/Obs,WATER,NA,10/15/2009,4:21:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.33,12.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:21,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_13.6_P,Field Msr/Obs,WATER,NA,10/14/2009,9:06:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.58,10.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:06,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120511_0.6_P,Field Msr/Obs,WATER,NA,5/11/2012,11:34:00,EST,NA,NA,NA,0.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.05,14.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:34,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_10.2_P,Field Msr/Obs,WATER,NA,8/5/2010,11:19:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.06,19.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:19,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_6.7_P,Field Msr/Obs,WATER,NA,10/12/2010,3:30:00,EST,NA,NA,NA,6.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.65,11.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:30,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_2.9_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.39,9.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_29.1_P,Field Msr/Obs,WATER,NA,10/16/2014,11:41:00,EST,NA,NA,NA,29.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.81,8.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:41,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_43.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:56:00,EST,NA,NA,NA,43.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:56,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_3.7_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,3.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.53,11.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_15.9_P,Field Msr/Obs,WATER,NA,10/10/2012,3:59:00,EST,NA,NA,NA,15.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:59,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_34.7_P,Field Msr/Obs,WATER,NA,8/7/2012,12:08:00,EST,NA,NA,NA,34.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:08,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_22_P,Field Msr/Obs,WATER,NA,10/14/2010,2:22:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:22,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_10.1_P,Field Msr/Obs,WATER,NA,10/15/2014,1:20:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.57,12.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:20,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_12.5_P,Field Msr/Obs,WATER,NA,8/6/2012,2:57:00,EST,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.66,18.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:57,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_13.8_P,Field Msr/Obs,WATER,NA,5/29/2014,12:43:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.57,10.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_0.1_P,Field Msr/Obs,WATER,NA,7/28/2009,6:27:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.78,20.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:27,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_11.1_P,Field Msr/Obs,WATER,NA,8/5/2010,2:50:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.23,19.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:50,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_2.1_P,Field Msr/Obs,WATER,NA,8/5/2010,12:07:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.95,21.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:07,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_15_P,Field Msr/Obs,WATER,NA,8/6/2012,3:30:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:30,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_27.5_P,Field Msr/Obs,WATER,NA,6/5/2013,5:50:00,EST,NA,NA,NA,27.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:50,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_18.2_P,Field Msr/Obs,WATER,NA,9/13/2011,10:24:00,EST,NA,NA,NA,18.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.88,15.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:24,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_19.5_P,Field Msr/Obs,WATER,NA,8/5/2010,2:18:00,EST,NA,NA,NA,19.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.79,17.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:18,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_22.4_P,Field Msr/Obs,WATER,NA,8/11/2014,12:49:00,EST,NA,NA,NA,22.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.05,18.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:49,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_43.4_P,Field Msr/Obs,WATER,NA,5/29/2014,11:55:00,EST,NA,NA,NA,43.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_43.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:32:00,EST,NA,NA,NA,43.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.83,7.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_5.6_P,Field Msr/Obs,WATER,NA,10/10/2012,2:52:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.25,13.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:52,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_2.9_P,Field Msr/Obs,WATER,NA,10/11/2012,9:51:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_21_P,Field Msr/Obs,WATER,NA,10/12/2010,6:14:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:14,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_1.9_P,Field Msr/Obs,WATER,NA,10/12/2010,3:53:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:53,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_11.1_P,Field Msr/Obs,WATER,NA,10/14/2009,9:06:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.79,10.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:06,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_17.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:49:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.55,8.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:49,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_10_P,Field Msr/Obs,WATER,NA,10/14/2009,4:26:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.83,10.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:26,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_4.1_P,Field Msr/Obs,WATER,NA,10/14/2010,2:19:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.34,13.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:19,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_3_P,Field Msr/Obs,WATER,NA,9/10/2009,11:09:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.12,18.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:09,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_4.1_P,Field Msr/Obs,WATER,NA,10/14/2009,8:59:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 13:59,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_11.7_P,Field Msr/Obs,WATER,NA,10/10/2012,3:58:00,EST,NA,NA,NA,11.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.74,12.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:58,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_19.3_P,Field Msr/Obs,WATER,NA,8/6/2012,8:05:00,EST,NA,NA,NA,19.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.07,11.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:05,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_0.1_P,Field Msr/Obs,WATER,NA,8/11/2014,12:41:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.85,21.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_8.9_P,Field Msr/Obs,WATER,NA,10/15/2014,1:20:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.58,12.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:20,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_14.8_P,Field Msr/Obs,WATER,NA,7/28/2009,7:03:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:03,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_37.1_P,Field Msr/Obs,WATER,NA,6/17/2015,2:22:00,EST,NA,NA,NA,37.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.96,5.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:22,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_24.9_P,Field Msr/Obs,WATER,NA,7/28/2009,1:01:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.85,7.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:01,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100601_11.4_P,Field Msr/Obs,WATER,NA,6/1/2010,7:15:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.64,9.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_14.6_P,Field Msr/Obs,WATER,NA,6/5/2013,7:18:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.24,8.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:18,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_0_P,Field Msr/Obs,WATER,NA,7/28/2009,1:50:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.33,22.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_20.8_P,Field Msr/Obs,WATER,NA,10/14/2010,9:23:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.13,10.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:23,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_0_P,Field Msr/Obs,WATER,NA,10/12/2010,3:52:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.48,10.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:52,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_17.4_P,Field Msr/Obs,WATER,NA,8/4/2010,6:49:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.27,12.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_9.9_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.18,8.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_10.2_P,Field Msr/Obs,WATER,NA,10/16/2014,12:49:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.12,13.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:49,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_1_P,Field Msr/Obs,WATER,NA,9/23/2013,2:58:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.52,16.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_20.2_P,Field Msr/Obs,WATER,NA,10/10/2012,2:20:00,EST,NA,NA,NA,20.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.45,9.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_16.1_P,Field Msr/Obs,WATER,NA,9/10/2009,12:09:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.53,17.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:09,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_9.5_P,Field Msr/Obs,WATER,NA,7/28/2009,9:12:00,EST,NA,NA,NA,9.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.71,18.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:12,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_12_P,Field Msr/Obs,WATER,NA,8/11/2014,7:35:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.73,16.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:35,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090910_0.1_P,Field Msr/Obs,WATER,NA,9/10/2009,12:34:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.95,18.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:34,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20091014_2.8_P,Field Msr/Obs,WATER,NA,10/14/2009,3:34:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.47,10.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:34,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_27.2_P,Field Msr/Obs,WATER,NA,10/15/2009,3:28:00,EST,NA,NA,NA,27.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:28,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_24.2_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,24.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.75,6.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_15.1_P,Field Msr/Obs,WATER,NA,8/5/2010,11:22:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.06,14.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:22,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_40.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:31:00,EST,NA,NA,NA,40.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.87,7.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_10.6_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_10_P,Field Msr/Obs,WATER,NA,10/10/2012,2:17:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.32,13.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:17,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_7.2_P,Field Msr/Obs,WATER,NA,10/10/2012,1:48:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.76,13.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_1_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.52,14.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_11.8_P,Field Msr/Obs,WATER,NA,10/11/2012,9:20:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.87,11.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:20,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_27.1_P,Field Msr/Obs,WATER,NA,8/6/2012,2:22:00,EST,NA,NA,NA,27.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.25,15.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:22,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_0.1_P,Field Msr/Obs,WATER,NA,10/16/2014,1:29:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.95,13.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_10_P,Field Msr/Obs,WATER,NA,7/28/2009,10:43:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.16,20.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:43,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_10.4_P,Field Msr/Obs,WATER,NA,10/16/2014,12:01:00,EST,NA,NA,NA,10.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:01,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_11.4_P,Field Msr/Obs,WATER,NA,8/5/2010,2:15:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.17,19.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_6_P,Field Msr/Obs,WATER,NA,10/14/2009,7:34:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:34,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_5.2_P,Field Msr/Obs,WATER,NA,10/14/2009,9:39:00,EST,NA,NA,NA,5.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.06,10.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:39,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_10.9_P,Field Msr/Obs,WATER,NA,5/9/2012,3:44:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.97,8.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:44,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_27.5_P,Field Msr/Obs,WATER,NA,9/24/2013,8:56:00,EST,NA,NA,NA,27.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.42,7.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_15.8_P,Field Msr/Obs,WATER,NA,5/11/2012,9:36:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.12,7.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:36,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_32_P,Field Msr/Obs,WATER,NA,8/7/2012,11:30:00,EST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_10.1_P,Field Msr/Obs,WATER,NA,6/4/2013,8:31:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_14.5_P,Field Msr/Obs,WATER,NA,8/7/2012,1:06:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.88,13.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:06,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_1.6_P,Field Msr/Obs,WATER,NA,6/16/2015,11:45:00,EST,NA,NA,NA,1.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.92,17.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_8.3_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_7.6_P,Field Msr/Obs,WATER,NA,5/29/2014,1:18:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.08,13.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:18,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_10.2_P,Field Msr/Obs,WATER,NA,5/9/2012,2:48:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.01,10.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:48,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_26.9_P,Field Msr/Obs,WATER,NA,6/17/2015,2:20:00,EST,NA,NA,NA,26.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:20,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_4.1_P,Field Msr/Obs,WATER,NA,7/28/2009,12:44:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.84,20.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:44,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100601_2.2_P,Field Msr/Obs,WATER,NA,6/1/2010,7:15:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.02,12.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090519_7.7_P,Field Msr/Obs,WATER,NA,5/19/2009,7:15:00,EST,NA,NA,NA,7.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.07,10.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 12:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_26.3_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,26.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.47,7.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_11.6_P,Field Msr/Obs,WATER,NA,8/7/2012,1:05:00,EST,NA,NA,NA,11.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.56,18.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:05,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_0.1_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.36,7.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_19.6_P,Field Msr/Obs,WATER,NA,8/11/2014,1:39:00,EST,NA,NA,NA,19.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.51,18.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:39,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_4_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.85,9.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_0.6_P,Field Msr/Obs,WATER,NA,9/13/2011,10:19:00,EST,NA,NA,NA,0.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.22,17.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:19,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_22.8_P,Field Msr/Obs,WATER,NA,8/4/2010,6:51:00,EST,NA,NA,NA,22.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.06,9.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:51,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080728_3_P,Field Msr/Obs,WATER,NA,7/28/2008,11:10:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.47,20.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_0.1_P,Field Msr/Obs,WATER,NA,5/28/2014,3:08:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.16,15.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:08,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_6.5_P,Field Msr/Obs,WATER,NA,10/9/2012,2:27:00,EST,NA,NA,NA,6.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.71,12.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:27,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_12.1_P,Field Msr/Obs,WATER,NA,10/14/2009,7:36:00,EST,NA,NA,NA,12.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.07,11.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:36,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_4.4_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_5.8_P,Field Msr/Obs,WATER,NA,10/16/2014,12:01:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.32,13.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:01,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_13.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:37:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.26,11.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:37,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_7.7_P,Field Msr/Obs,WATER,NA,9/23/2013,3:00:00,EST,NA,NA,NA,7.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.18,16.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 8:00,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_21.2_P,Field Msr/Obs,WATER,NA,10/14/2009,4:31:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_3.2_P,Field Msr/Obs,WATER,NA,10/15/2014,12:27:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.72,12.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:27,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_39.5_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,39.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.99,5.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_14.5_P,Field Msr/Obs,WATER,NA,8/5/2010,11:37:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:37,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_6.6_P,Field Msr/Obs,WATER,NA,8/11/2014,6:32:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.47,20.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:32,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_9_P,Field Msr/Obs,WATER,NA,7/28/2009,10:42:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.32,20.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:42,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_2.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:23:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.09,11.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:23,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_19_P,Field Msr/Obs,WATER,NA,10/15/2009,4:23:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.15,12.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:23,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_8.7_P,Field Msr/Obs,WATER,NA,10/9/2012,2:59:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.56,11.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_11_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.09,14.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_6.4_P,Field Msr/Obs,WATER,NA,8/11/2014,7:33:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.55,20.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:33,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_40.9_P,Field Msr/Obs,WATER,NA,10/14/2010,8:31:00,EST,NA,NA,NA,40.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.71,7.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20081023_1_P,Field Msr/Obs,WATER,NA,10/23/2008,9:20:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.64,4.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2008 14:20,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_17.6_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.73,7.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_11.3_P,Field Msr/Obs,WATER,NA,10/14/2009,5:50:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.85,10.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080513_6_P,Field Msr/Obs,WATER,NA,5/13/2008,10:20:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.15,10.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 15:20,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_3.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:23:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.05,11.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:23,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_0.1_P,Field Msr/Obs,WATER,NA,7/28/2009,9:56:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.04,21.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:56,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_14.8_P,Field Msr/Obs,WATER,NA,10/12/2010,5:28:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.06,14.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:28,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_14.5_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.43,7.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_28.1_P,Field Msr/Obs,WATER,NA,9/13/2011,9:20:00,EST,NA,NA,NA,28.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:20,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_13.3_P,Field Msr/Obs,WATER,NA,9/24/2013,10:53:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.89,14.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:53,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_38.3_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,38.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.17,5.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_13.6_P,Field Msr/Obs,WATER,NA,9/13/2011,9:16:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.36,17.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:16,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_3.9_P,Field Msr/Obs,WATER,NA,5/11/2012,10:34:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_17.9_P,Field Msr/Obs,WATER,NA,10/14/2009,5:53:00,EST,NA,NA,NA,17.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.21,9.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:53,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_7.5_P,Field Msr/Obs,WATER,NA,9/23/2013,2:30:00,EST,NA,NA,NA,7.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.75,16.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:30,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_25.3_P,Field Msr/Obs,WATER,NA,8/11/2014,12:51:00,EST,NA,NA,NA,25.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.89,16.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:51,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20120511_1.3_P,Field Msr/Obs,WATER,NA,5/11/2012,10:07:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.96,12.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:07,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_10_P,Field Msr/Obs,WATER,NA,7/27/2009,8:13:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.58,17.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:13,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_30.7_P,Field Msr/Obs,WATER,NA,10/14/2010,9:26:00,EST,NA,NA,NA,30.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.19,8.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:26,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_10.1_P,Field Msr/Obs,WATER,NA,8/12/2014,2:06:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:06,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_0.2_P,Field Msr/Obs,WATER,NA,8/11/2014,7:32:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:32,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140528_7_P,Field Msr/Obs,WATER,NA,5/28/2014,6:42:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.16,16.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 11:42,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_2_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.72,7.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_1.2_P,Field Msr/Obs,WATER,NA,8/4/2010,4:51:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.37,21.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:51,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_0_P,Field Msr/Obs,WATER,NA,9/23/2013,1:36:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.86,16.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:36,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_5.7_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.36,20.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_20.6_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,20.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.43,7.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_16_P,Field Msr/Obs,WATER,NA,10/14/2009,9:44:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.44,8.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:44,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_8.6_P,Field Msr/Obs,WATER,NA,6/5/2013,7:14:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.65,9.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:14,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_18.8_P,Field Msr/Obs,WATER,NA,9/13/2011,9:51:00,EST,NA,NA,NA,18.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:51,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_30.6_P,Field Msr/Obs,WATER,NA,8/7/2012,11:02:00,EST,NA,NA,NA,30.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.63,6.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:02,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,1:46:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.92,13.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:46,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130604_6.4_P,Field Msr/Obs,WATER,NA,6/4/2013,7:31:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:31,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_6.1_P,Field Msr/Obs,WATER,NA,10/16/2014,2:51:00,EST,NA,NA,NA,6.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.77,12.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_19.4_P,Field Msr/Obs,WATER,NA,9/24/2013,8:53:00,EST,NA,NA,NA,19.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_25.6_P,Field Msr/Obs,WATER,NA,9/13/2011,9:53:00,EST,NA,NA,NA,25.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.53,16.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:53,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_26.8_P,Field Msr/Obs,WATER,NA,6/16/2015,11:51:00,EST,NA,NA,NA,26.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.87,11.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:51,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_25.1_P,Field Msr/Obs,WATER,NA,5/10/2012,3:01:00,EST,NA,NA,NA,25.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.56,5.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:01,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_10.5_P,Field Msr/Obs,WATER,NA,7/28/2009,6:58:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.45,15.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:58,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_9.3_P,Field Msr/Obs,WATER,NA,10/14/2009,5:49:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.96,10.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:49,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_22.7_P,Field Msr/Obs,WATER,NA,5/10/2012,3:00:00,EST,NA,NA,NA,22.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.46,6.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_5.8_P,Field Msr/Obs,WATER,NA,10/9/2012,2:59:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.08,12.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_15.3_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,15.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_14.3_P,Field Msr/Obs,WATER,NA,10/10/2012,4:22:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.61,12.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:22,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_11.8_P,Field Msr/Obs,WATER,NA,10/12/2010,5:27:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.27,14.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:27,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_12.9_P,Field Msr/Obs,WATER,NA,10/14/2009,5:50:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.67,10.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_21.4_P,Field Msr/Obs,WATER,NA,5/10/2012,4:45:00,EST,NA,NA,NA,21.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.35,6.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_0.1_P,Field Msr/Obs,WATER,NA,6/4/2013,3:47:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.54,14.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:47,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_23.1_P,Field Msr/Obs,WATER,NA,8/7/2012,1:09:00,EST,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.14,9.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:09,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20140811_1.8_P,Field Msr/Obs,WATER,NA,8/11/2014,7:09:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.23,22.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:09,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_1_P,Field Msr/Obs,WATER,NA,8/5/2010,12:04:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.16,22.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:04,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_14.2_P,Field Msr/Obs,WATER,NA,10/15/2009,2:05:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.17,11.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:05,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_5.1_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.19,9.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_34.5_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,34.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_12.8_P,Field Msr/Obs,WATER,NA,5/9/2012,2:51:00,EST,NA,NA,NA,12.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.06,9.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:51,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_15.5_P,Field Msr/Obs,WATER,NA,8/4/2010,4:57:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.52,13.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:57,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_1_P,Field Msr/Obs,WATER,NA,6/5/2013,7:10:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.88,14.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:10,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_41.1_P,Field Msr/Obs,WATER,NA,5/29/2014,12:48:00,EST,NA,NA,NA,41.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.82,6.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_2_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.83,19.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_21.8_P,Field Msr/Obs,WATER,NA,8/11/2014,12:49:00,EST,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:49,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_8.5_P,Field Msr/Obs,WATER,NA,8/11/2014,1:59:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.43,19.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_11_P,Field Msr/Obs,WATER,NA,5/9/2012,2:50:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.62,9.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:50,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_8.4_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,8.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.96,17.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20121011_0.1_P,Field Msr/Obs,WATER,NA,10/11/2012,8:48:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.38,11.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 13:48,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_2.1_P,Field Msr/Obs,WATER,NA,9/23/2013,1:39:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.84,16.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:39,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_4.1_P,Field Msr/Obs,WATER,NA,7/28/2009,10:00:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.85,20.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_20.3_P,Field Msr/Obs,WATER,NA,6/5/2013,4:38:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.31,7.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_11.3_P,Field Msr/Obs,WATER,NA,8/4/2010,3:49:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.55,16.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:49,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_6_P,Field Msr/Obs,WATER,NA,6/4/2013,2:11:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.65,13.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:11,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_17.8_P,Field Msr/Obs,WATER,NA,9/24/2013,10:55:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.26,9.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:55,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_6.7_P,Field Msr/Obs,WATER,NA,8/6/2012,8:02:00,EST,NA,NA,NA,6.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.74,20.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:02,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_0.1_P,Field Msr/Obs,WATER,NA,10/14/2009,5:44:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:44,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_8.2_P,Field Msr/Obs,WATER,NA,10/15/2009,2:04:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:04,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20091015_3_P,Field Msr/Obs,WATER,NA,10/15/2009,7:23:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.61,13.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 12:23,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_16.6_P,Field Msr/Obs,WATER,NA,9/24/2013,10:05:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.21,10.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:05,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_8.6_P,Field Msr/Obs,WATER,NA,5/28/2014,7:44:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.76,14.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:44,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20121009_0_P,Field Msr/Obs,WATER,NA,10/9/2012,7:46:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.69,10.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 12:46,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_5.8_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.28,12.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100601_6_P,Field Msr/Obs,WATER,NA,6/1/2010,7:15:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.69,10.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_20_P,Field Msr/Obs,WATER,NA,8/11/2014,1:39:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.16,18.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:39,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_42.2_P,Field Msr/Obs,WATER,NA,10/15/2009,3:32:00,EST,NA,NA,NA,42.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_18.9_P,Field Msr/Obs,WATER,NA,6/5/2013,4:37:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.82,9.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:37,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_8.9_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.68,16.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_21_P,Field Msr/Obs,WATER,NA,8/4/2010,3:57:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.07,9.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:57,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_1.2_P,Field Msr/Obs,WATER,NA,9/24/2013,9:59:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.07,17.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:59,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_22.3_P,Field Msr/Obs,WATER,NA,9/24/2013,8:54:00,EST,NA,NA,NA,22.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.59,8.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_13.1_P,Field Msr/Obs,WATER,NA,8/4/2010,2:46:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.07,15.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20121009_1_P,Field Msr/Obs,WATER,NA,10/9/2012,7:47:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.45,10.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 12:47,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20130605_0_P,Field Msr/Obs,WATER,NA,6/5/2013,7:43:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,24.82,24.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:43,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_7.3_P,Field Msr/Obs,WATER,NA,10/11/2012,9:19:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.46,12.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:19,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_31.8_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,31.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.09,5.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_10.3_P,Field Msr/Obs,WATER,NA,10/15/2009,4:19:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.38,12.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:19,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090910_13_P,Field Msr/Obs,WATER,NA,9/10/2009,12:39:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.16,17.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:39,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_1.5_P,Field Msr/Obs,WATER,NA,9/13/2011,10:19:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.18,17.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:19,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_18.1_P,Field Msr/Obs,WATER,NA,5/9/2012,3:47:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.78,8.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:47,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_17.2_P,Field Msr/Obs,WATER,NA,8/4/2010,6:49:00,EST,NA,NA,NA,17.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.83,11.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_17.5_P,Field Msr/Obs,WATER,NA,5/28/2014,7:49:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.59,8.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:49,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_36.1_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,36.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.66,5.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_9.9_P,Field Msr/Obs,WATER,NA,10/14/2010,3:12:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.11,13.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:12,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_5_P,Field Msr/Obs,WATER,NA,6/16/2015,6:38:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.34,18.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:38,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_18.8_P,Field Msr/Obs,WATER,NA,10/14/2009,9:09:00,EST,NA,NA,NA,18.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.42,9.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:09,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_8.8_P,Field Msr/Obs,WATER,NA,9/23/2013,2:30:00,EST,NA,NA,NA,8.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.75,16.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:30,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_4_P,Field Msr/Obs,WATER,NA,8/5/2010,3:18:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.14,20.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:18,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_33.3_P,Field Msr/Obs,WATER,NA,6/5/2013,5:51:00,EST,NA,NA,NA,33.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.53,6.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:51,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_11.3_P,Field Msr/Obs,WATER,NA,8/6/2012,3:29:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.55,18.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:29,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_30.8_P,Field Msr/Obs,WATER,NA,5/29/2014,1:25:00,EST,NA,NA,NA,30.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.88,6.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:25,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_6.8_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,6.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.28,6.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_18.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:24:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.84,11.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_20.7_P,Field Msr/Obs,WATER,NA,10/14/2010,10:00:00,EST,NA,NA,NA,20.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 15:00,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_7.8_P,Field Msr/Obs,WATER,NA,9/24/2013,12:43:00,EST,NA,NA,NA,7.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.89,16.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:43,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_11.1_P,Field Msr/Obs,WATER,NA,8/11/2014,6:33:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.77,18.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_36.3_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,36.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.07,5.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_26_P,Field Msr/Obs,WATER,NA,10/16/2014,11:40:00,EST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.94,8.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:40,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_8.8_P,Field Msr/Obs,WATER,NA,10/15/2014,1:42:00,EST,NA,NA,NA,8.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.15,12.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:42,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20080513_1_P,Field Msr/Obs,WATER,NA,5/13/2008,11:45:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.98,7.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:45,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20100601_1_P,Field Msr/Obs,WATER,NA,6/1/2010,6:10:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.63,14.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 11:10,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_11.4_P,Field Msr/Obs,WATER,NA,6/2/2010,3:57:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.84,8.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:57,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_8.6_P,Field Msr/Obs,WATER,NA,8/7/2012,10:53:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.08,19.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_9_P,Field Msr/Obs,WATER,NA,8/5/2010,11:18:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.27,20.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:18,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_8.9_P,Field Msr/Obs,WATER,NA,10/11/2012,9:53:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.11,12.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:53,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_11.2_P,Field Msr/Obs,WATER,NA,5/28/2014,7:45:00,EST,NA,NA,NA,11.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.12,14.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:45,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_31.3_P,Field Msr/Obs,WATER,NA,9/13/2011,9:22:00,EST,NA,NA,NA,31.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:22,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_8.5_P,Field Msr/Obs,WATER,NA,10/10/2012,2:53:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.21,13.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_0.1_P,Field Msr/Obs,WATER,NA,8/4/2010,3:43:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.18,21.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:43,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_30.7_P,Field Msr/Obs,WATER,NA,10/16/2014,12:55:00,EST,NA,NA,NA,30.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.77,8.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_14.5_P,Field Msr/Obs,WATER,NA,9/11/2009,11:03:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.55,15.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:03,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_19.5_P,Field Msr/Obs,WATER,NA,6/5/2013,6:31:00,EST,NA,NA,NA,19.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.46,7.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:31,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_2.9_P,Field Msr/Obs,WATER,NA,8/7/2012,1:03:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.39,20.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:03,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_34.7_P,Field Msr/Obs,WATER,NA,5/29/2014,1:25:00,EST,NA,NA,NA,34.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.84,6.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:25,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_1_P,Field Msr/Obs,WATER,NA,6/4/2013,3:48:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.52,14.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:48,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_2.6_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.86,10.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_2_P,Field Msr/Obs,WATER,NA,6/4/2013,3:06:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.53,13.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:06,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_10.1_P,Field Msr/Obs,WATER,NA,6/5/2013,4:33:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.62,11.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:33,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_39.1_P,Field Msr/Obs,WATER,NA,5/10/2012,3:05:00,EST,NA,NA,NA,39.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.85,4.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:05,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_34.8_P,Field Msr/Obs,WATER,NA,8/4/2010,4:01:00,EST,NA,NA,NA,34.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:01,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_16.5_P,Field Msr/Obs,WATER,NA,8/12/2014,2:09:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.66,12.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:09,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_0_P,Field Msr/Obs,WATER,NA,10/16/2014,2:16:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.51,14.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:16,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_29.1_P,Field Msr/Obs,WATER,NA,8/7/2012,12:07:00,EST,NA,NA,NA,29.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.18,7.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:07,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_4.2_P,Field Msr/Obs,WATER,NA,6/2/2010,3:54:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.53,9.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:54,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_8.9_P,Field Msr/Obs,WATER,NA,5/28/2014,3:11:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.52,11.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:11,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_1.9_P,Field Msr/Obs,WATER,NA,5/11/2012,9:30:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.99,9.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:30,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_1.5_P,Field Msr/Obs,WATER,NA,6/17/2015,2:43:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.48,18.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_13.2_P,Field Msr/Obs,WATER,NA,8/5/2010,11:20:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.98,15.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:20,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_11_P,Field Msr/Obs,WATER,NA,10/15/2009,1:37:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:37,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_12.7_P,Field Msr/Obs,WATER,NA,8/4/2010,2:46:00,EST,NA,NA,NA,12.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.51,15.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_24.8_P,Field Msr/Obs,WATER,NA,8/7/2012,11:28:00,EST,NA,NA,NA,24.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.14,8.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:28,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_19.6_P,Field Msr/Obs,WATER,NA,10/10/2012,4:28:00,EST,NA,NA,NA,19.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:28,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_12_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.75,12.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_9_P,Field Msr/Obs,WATER,NA,10/14/2009,9:01:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.82,10.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:01,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_4.2_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.38,6.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_6.7_P,Field Msr/Obs,WATER,NA,8/6/2012,2:54:00,EST,NA,NA,NA,6.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.27,19.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:54,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_31_P,Field Msr/Obs,WATER,NA,8/11/2014,12:54:00,EST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.07,13.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:54,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_6_P,Field Msr/Obs,WATER,NA,10/15/2009,1:34:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.28,11.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:34,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_3.4_P,Field Msr/Obs,WATER,NA,6/4/2013,3:06:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.49,13.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:06,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_13.6_P,Field Msr/Obs,WATER,NA,8/6/2012,2:57:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.64,18.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:57,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_23.2_P,Field Msr/Obs,WATER,NA,8/7/2012,11:28:00,EST,NA,NA,NA,23.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.25,9.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:28,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080722_6_P,Field Msr/Obs,WATER,NA,7/22/2008,8:10:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.38,19.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 13:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_0.1_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.96,13.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_36_P,Field Msr/Obs,WATER,NA,8/4/2010,2:52:00,EST,NA,NA,NA,36,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:52,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_13_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.47,7.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_10.1_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.27,14.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_14.6_P,Field Msr/Obs,WATER,NA,7/28/2009,11:58:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.46,13.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:58,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_16_P,Field Msr/Obs,WATER,NA,6/17/2015,2:48:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.17,9.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_12_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.53,7.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_10.5_P,Field Msr/Obs,WATER,NA,10/13/2010,12:25:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.56,14.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:25,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20101014_0_P,Field Msr/Obs,WATER,NA,10/14/2010,1:11:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.29,8.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:11,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20140811_2.9_P,Field Msr/Obs,WATER,NA,8/11/2014,2:45:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.36,19.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 7:45,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_30.2_P,Field Msr/Obs,WATER,NA,10/14/2009,7:42:00,EST,NA,NA,NA,30.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:42,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_3.1_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.28,12.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_20.3_P,Field Msr/Obs,WATER,NA,10/10/2012,4:01:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.68,9.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:01,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_12_P,Field Msr/Obs,WATER,NA,8/7/2012,11:59:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.65,15.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:59,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_28_P,Field Msr/Obs,WATER,NA,10/15/2009,3:28:00,EST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.28,8.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:28,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_16.8_P,Field Msr/Obs,WATER,NA,6/4/2013,8:36:00,EST,NA,NA,NA,16.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.13,8.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:36,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_24.5_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,24.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20121011_5.9_P,Field Msr/Obs,WATER,NA,10/11/2012,8:52:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.96,7.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 13:52,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_3.9_P,Field Msr/Obs,WATER,NA,9/13/2011,9:48:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.43,17.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:48,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_14.6_P,Field Msr/Obs,WATER,NA,10/12/2010,5:28:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.16,14.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:28,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_9.2_P,Field Msr/Obs,WATER,NA,10/12/2010,6:04:00,EST,NA,NA,NA,9.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.52,14.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20091014_1_P,Field Msr/Obs,WATER,NA,10/14/2009,5:15:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.98,8.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:15,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_2.6_P,Field Msr/Obs,WATER,NA,10/14/2010,3:11:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.26,13.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:11,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_19.1_P,Field Msr/Obs,WATER,NA,10/16/2014,2:21:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.37,11.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:21,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_17_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.64,9.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_16_P,Field Msr/Obs,WATER,NA,9/24/2013,10:55:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.38,9.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:55,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_7.8_P,Field Msr/Obs,WATER,NA,6/5/2013,6:26:00,EST,NA,NA,NA,7.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:26,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_26.9_P,Field Msr/Obs,WATER,NA,8/12/2014,1:36:00,EST,NA,NA,NA,26.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:36,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_20.3_P,Field Msr/Obs,WATER,NA,5/11/2012,8:36:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.29,6.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:36,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_11.2_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,11.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.57,13.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_10.8_P,Field Msr/Obs,WATER,NA,9/24/2013,11:35:00,EST,NA,NA,NA,10.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.76,16.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:35,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_29.7_P,Field Msr/Obs,WATER,NA,10/10/2012,1:54:00,EST,NA,NA,NA,29.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.11,7.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_1_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.83,19.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_39.1_P,Field Msr/Obs,WATER,NA,10/13/2010,12:44:00,EST,NA,NA,NA,39.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.03,7.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:44,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_35.4_P,Field Msr/Obs,WATER,NA,9/24/2013,9:34:00,EST,NA,NA,NA,35.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.58,7.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:34,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_10.9_P,Field Msr/Obs,WATER,NA,5/29/2014,2:22:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.88,12.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:22,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090520_2.4_P,Field Msr/Obs,WATER,NA,5/20/2009,6:05:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.14,12.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/20/2009 11:05,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_36.2_P,Field Msr/Obs,WATER,NA,5/10/2012,3:04:00,EST,NA,NA,NA,36.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.87,4.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:04,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_24.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:41:00,EST,NA,NA,NA,24.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.23,10.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:41,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080513_1_P,Field Msr/Obs,WATER,NA,5/13/2008,10:20:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 15:20,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_38.7_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,38.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.33,7.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_32.5_P,Field Msr/Obs,WATER,NA,10/14/2010,8:29:00,EST,NA,NA,NA,32.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.02,8.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_13_P,Field Msr/Obs,WATER,NA,10/14/2010,9:21:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.28,14.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:21,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_3_P,Field Msr/Obs,WATER,NA,7/27/2009,8:05:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.37,22.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:05,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_19.1_P,Field Msr/Obs,WATER,NA,10/14/2010,9:58:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.61,11.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:58,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_9.5_P,Field Msr/Obs,WATER,NA,10/15/2009,3:21:00,EST,NA,NA,NA,9.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.15,12.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_5.1_P,Field Msr/Obs,WATER,NA,5/10/2012,3:39:00,EST,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.18,8.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130604_3.1_P,Field Msr/Obs,WATER,NA,6/4/2013,7:29:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.39,17.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:29,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_31.9_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,31.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.64,6.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_31_P,Field Msr/Obs,WATER,NA,9/13/2011,9:21:00,EST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.32,13.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_15_P,Field Msr/Obs,WATER,NA,6/5/2013,5:46:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.03,9.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:46,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_29.5_P,Field Msr/Obs,WATER,NA,8/12/2014,1:12:00,EST,NA,NA,NA,29.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.64,7.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:12,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_1_P,Field Msr/Obs,WATER,NA,6/16/2015,1:45:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.91,16.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 6:45,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_1_P,Field Msr/Obs,WATER,NA,10/10/2012,4:19:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.74,13.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:19,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_19.9_P,Field Msr/Obs,WATER,NA,8/7/2012,1:07:00,EST,NA,NA,NA,19.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:07,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_1.2_P,Field Msr/Obs,WATER,NA,8/4/2010,2:42:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.49,21.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:42,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_10_P,Field Msr/Obs,WATER,NA,7/28/2009,10:06:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.37,16.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:06,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_22.4_P,Field Msr/Obs,WATER,NA,9/24/2013,10:08:00,EST,NA,NA,NA,22.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.58,8.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:08,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_22.9_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,22.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.35,8.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_38.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:22:00,EST,NA,NA,NA,38.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.92,5.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:22,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_18.4_P,Field Msr/Obs,WATER,NA,8/4/2010,4:59:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.04,11.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:59,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_12.5_P,Field Msr/Obs,WATER,NA,10/14/2009,9:06:00,EST,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.69,10.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:06,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_3_P,Field Msr/Obs,WATER,NA,10/15/2009,3:19:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:19,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_1_P,Field Msr/Obs,WATER,NA,8/5/2010,2:47:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.58,20.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:47,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_26.1_P,Field Msr/Obs,WATER,NA,10/14/2009,7:41:00,EST,NA,NA,NA,26.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_8.4_P,Field Msr/Obs,WATER,NA,10/16/2014,11:35:00,EST,NA,NA,NA,8.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:35,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_14.1_P,Field Msr/Obs,WATER,NA,5/28/2014,7:47:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.91,9.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:47,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_4_P,Field Msr/Obs,WATER,NA,10/15/2014,12:27:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.71,12.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:27,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_42.1_P,Field Msr/Obs,WATER,NA,10/16/2014,12:07:00,EST,NA,NA,NA,42.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.32,8.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:07,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_1.4_P,Field Msr/Obs,WATER,NA,10/16/2014,1:29:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.25,13.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_32.8_P,Field Msr/Obs,WATER,NA,5/10/2012,3:46:00,EST,NA,NA,NA,32.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.84,5.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_11.6_P,Field Msr/Obs,WATER,NA,8/12/2014,1:05:00,EST,NA,NA,NA,11.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.34,17.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:05,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_18.7_P,Field Msr/Obs,WATER,NA,7/28/2009,12:55:00,EST,NA,NA,NA,18.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.51,10.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:55,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_32.2_P,Field Msr/Obs,WATER,NA,10/10/2012,3:08:00,EST,NA,NA,NA,32.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:08,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_16.9_P,Field Msr/Obs,WATER,NA,9/13/2011,10:23:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.92,15.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:23,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_4.7_P,Field Msr/Obs,WATER,NA,10/16/2014,12:47:00,EST,NA,NA,NA,4.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.21,13.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:47,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_15.9_P,Field Msr/Obs,WATER,NA,10/15/2009,1:38:00,EST,NA,NA,NA,15.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.17,11.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:38,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_11_P,Field Msr/Obs,WATER,NA,6/5/2013,6:55:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.38,8.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:55,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_11.4_P,Field Msr/Obs,WATER,NA,10/10/2012,4:22:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.65,12.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:22,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_8_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.03,17.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_4.1_P,Field Msr/Obs,WATER,NA,8/12/2014,3:11:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.51,20.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:11,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_6.7_P,Field Msr/Obs,WATER,NA,8/12/2014,2:04:00,EST,NA,NA,NA,6.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.39,20.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:04,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_15.8_P,Field Msr/Obs,WATER,NA,5/11/2012,10:38:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.93,6.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:38,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_12.8_P,Field Msr/Obs,WATER,NA,8/7/2012,11:59:00,EST,NA,NA,NA,12.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.63,14.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:59,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_17.4_P,Field Msr/Obs,WATER,NA,8/12/2014,3:14:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.37,11.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:14,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_8_P,Field Msr/Obs,WATER,NA,10/12/2010,3:31:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:31,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_0.1_P,Field Msr/Obs,WATER,NA,7/28/2009,10:33:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.28,21.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20130604_0.1_P,Field Msr/Obs,WATER,NA,6/4/2013,7:55:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.62,17.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:55,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20120806_2.6_P,Field Msr/Obs,WATER,NA,8/6/2012,4:13:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.22,19.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 9:13,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_0.1_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_0_P,Field Msr/Obs,WATER,NA,9/13/2011,9:13:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:13,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_7.3_P,Field Msr/Obs,WATER,NA,10/9/2012,2:59:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.67,11.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_20.8_P,Field Msr/Obs,WATER,NA,9/24/2013,8:53:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.94,8.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_7_P,Field Msr/Obs,WATER,NA,10/14/2010,9:20:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:20,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_4_P,Field Msr/Obs,WATER,NA,10/14/2009,7:33:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.17,11.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:33,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_18.3_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,18.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.16,6.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_5.6_P,Field Msr/Obs,WATER,NA,5/9/2012,2:47:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.16,10.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_14.6_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.26,7.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20120511_2_P,Field Msr/Obs,WATER,NA,5/11/2012,10:08:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.95,12.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:08,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_4.9_P,Field Msr/Obs,WATER,NA,6/5/2013,5:41:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:41,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_3_P,Field Msr/Obs,WATER,NA,10/14/2009,5:45:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.03,11.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090727_6_P,Field Msr/Obs,WATER,NA,7/27/2009,7:48:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.09,21.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 12:48,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20101012_0.8_P,Field Msr/Obs,WATER,NA,10/12/2010,2:47:00,EST,NA,NA,NA,0.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.19,12.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 7:47,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_22.2_P,Field Msr/Obs,WATER,NA,10/16/2014,1:35:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.95,11.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:35,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_8_P,Field Msr/Obs,WATER,NA,6/5/2013,7:13:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.38,11.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:13,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_7_P,Field Msr/Obs,WATER,NA,6/5/2013,7:13:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.73,12.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:13,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_2_P,Field Msr/Obs,WATER,NA,9/24/2013,9:22:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.11,17.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_10.6_P,Field Msr/Obs,WATER,NA,9/24/2013,9:24:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.06,17.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_30.1_P,Field Msr/Obs,WATER,NA,9/13/2011,9:21:00,EST,NA,NA,NA,30.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.48,14.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_26.7_P,Field Msr/Obs,WATER,NA,8/12/2014,2:11:00,EST,NA,NA,NA,26.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.73,7.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:11,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_17.1_P,Field Msr/Obs,WATER,NA,5/10/2012,3:42:00,EST,NA,NA,NA,17.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:42,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_19.3_P,Field Msr/Obs,WATER,NA,9/24/2013,10:06:00,EST,NA,NA,NA,19.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:06,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_16.8_P,Field Msr/Obs,WATER,NA,8/6/2012,2:19:00,EST,NA,NA,NA,16.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:19,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20091014_1.3_P,Field Msr/Obs,WATER,NA,10/14/2009,10:38:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 15:38,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_10_P,Field Msr/Obs,WATER,NA,8/5/2010,2:50:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:50,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_12.2_P,Field Msr/Obs,WATER,NA,6/4/2013,2:12:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.43,13.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:12,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_12.6_P,Field Msr/Obs,WATER,NA,10/13/2010,12:28:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.55,14.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:28,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_10_P,Field Msr/Obs,WATER,NA,10/15/2009,3:21:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.14,12.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_1_P,Field Msr/Obs,WATER,NA,9/24/2013,8:47:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:47,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_1.5_P,Field Msr/Obs,WATER,NA,5/28/2014,3:08:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.06,15.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:08,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_12.2_P,Field Msr/Obs,WATER,NA,10/14/2009,9:43:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:43,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_2.9_P,Field Msr/Obs,WATER,NA,9/13/2011,10:19:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.16,17.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:19,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090519_3.9_P,Field Msr/Obs,WATER,NA,5/19/2009,7:15:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.24,13.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 12:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_12.9_P,Field Msr/Obs,WATER,NA,5/11/2012,10:37:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.47,7.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:37,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_21.3_P,Field Msr/Obs,WATER,NA,8/7/2012,1:08:00,EST,NA,NA,NA,21.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:08,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_14.6_P,Field Msr/Obs,WATER,NA,7/28/2009,9:21:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.53,11.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:21,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_1.7_P,Field Msr/Obs,WATER,NA,8/11/2014,1:36:00,EST,NA,NA,NA,1.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.25,20.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:36,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090728_0_P,Field Msr/Obs,WATER,NA,7/28/2009,8:41:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.37,21.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 13:41,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_4.3_P,Field Msr/Obs,WATER,NA,5/11/2012,8:30:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:30,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_34.8_P,Field Msr/Obs,WATER,NA,8/7/2012,11:30:00,EST,NA,NA,NA,34.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.57,6.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_3.5_P,Field Msr/Obs,WATER,NA,6/5/2013,7:11:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.39,13.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:11,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_18.4_P,Field Msr/Obs,WATER,NA,5/29/2014,2:54:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.81,8.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:54,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_19.5_P,Field Msr/Obs,WATER,NA,9/24/2013,9:30:00,EST,NA,NA,NA,19.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.53,9.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_14_P,Field Msr/Obs,WATER,NA,10/14/2009,4:27:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:27,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_0.2_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.04,14.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_9_P,Field Msr/Obs,WATER,NA,10/12/2010,5:26:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.32,14.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:26,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090910_14.6_P,Field Msr/Obs,WATER,NA,9/10/2009,12:40:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.97,16.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:40,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_17.5_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_9_P,Field Msr/Obs,WATER,NA,8/4/2010,3:46:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.5,20.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:46,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_22.2_P,Field Msr/Obs,WATER,NA,6/17/2015,3:29:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.97,7.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:29,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_1_P,Field Msr/Obs,WATER,NA,10/12/2010,3:53:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.49,14.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:53,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_21.5_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,21.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.41,8.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_13.3_P,Field Msr/Obs,WATER,NA,10/15/2014,12:29:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.46,12.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:29,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_7.1_P,Field Msr/Obs,WATER,NA,6/17/2015,2:12:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.47,16.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:12,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_9.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:25:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:25,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_34.1_P,Field Msr/Obs,WATER,NA,10/10/2012,1:55:00,EST,NA,NA,NA,34.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.44,6.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_12.6_P,Field Msr/Obs,WATER,NA,10/12/2010,6:04:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.47,14.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_17.6_P,Field Msr/Obs,WATER,NA,10/14/2010,9:22:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.61,13.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:22,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20120511_0.2_P,Field Msr/Obs,WATER,NA,5/11/2012,10:05:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:05,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_22_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_8.5_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.69,8.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20091015_2.1_P,Field Msr/Obs,WATER,NA,10/15/2009,7:23:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.61,13.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 12:23,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_17.8_P,Field Msr/Obs,WATER,NA,6/5/2013,5:48:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.32,7.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:48,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_10.7_P,Field Msr/Obs,WATER,NA,6/16/2015,11:48:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.64,16.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:48,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_24.8_P,Field Msr/Obs,WATER,NA,5/10/2012,3:01:00,EST,NA,NA,NA,24.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.54,5.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:01,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_4_P,Field Msr/Obs,WATER,NA,10/9/2012,2:58:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.42,12.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_3_P,Field Msr/Obs,WATER,NA,6/16/2015,12:32:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.56,17.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:32,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_6.2_P,Field Msr/Obs,WATER,NA,9/13/2011,9:15:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_22.3_P,Field Msr/Obs,WATER,NA,7/28/2009,1:00:00,EST,NA,NA,NA,22.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.69,8.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_23.2_P,Field Msr/Obs,WATER,NA,6/5/2013,4:40:00,EST,NA,NA,NA,23.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.48,6.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:40,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_25.6_P,Field Msr/Obs,WATER,NA,6/17/2015,4:35:00,EST,NA,NA,NA,25.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.44,7.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:35,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_13.8_P,Field Msr/Obs,WATER,NA,10/12/2010,5:27:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.22,14.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:27,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_12.5_P,Field Msr/Obs,WATER,NA,5/29/2014,12:42:00,EST,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:42,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_28_P,Field Msr/Obs,WATER,NA,8/5/2010,2:20:00,EST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.08,16.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:20,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_15.7_P,Field Msr/Obs,WATER,NA,7/28/2009,9:23:00,EST,NA,NA,NA,15.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.85,10.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:23,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_36.7_P,Field Msr/Obs,WATER,NA,9/24/2013,9:34:00,EST,NA,NA,NA,36.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.56,7.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:34,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_3.2_P,Field Msr/Obs,WATER,NA,6/4/2013,3:49:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.08,14.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:49,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_11.7_P,Field Msr/Obs,WATER,NA,6/4/2013,3:07:00,EST,NA,NA,NA,11.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.45,13.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:07,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090519_2.7_P,Field Msr/Obs,WATER,NA,5/19/2009,7:15:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.62,16.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 12:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_9_P,Field Msr/Obs,WATER,NA,6/17/2015,4:09:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.06,16.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:09,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_6_P,Field Msr/Obs,WATER,NA,9/13/2011,9:15:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_25_P,Field Msr/Obs,WATER,NA,5/9/2012,2:53:00,EST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.68,8.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:53,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_20.8_P,Field Msr/Obs,WATER,NA,9/23/2013,1:43:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.56,16.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:43,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20101012_1_P,Field Msr/Obs,WATER,NA,10/12/2010,4:47:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 9:47,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_2.5_P,Field Msr/Obs,WATER,NA,5/11/2012,9:30:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.93,9.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:30,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_9.8_P,Field Msr/Obs,WATER,NA,6/5/2013,6:54:00,EST,NA,NA,NA,9.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.78,8.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:54,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_1.4_P,Field Msr/Obs,WATER,NA,10/14/2010,9:19:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:19,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_0.1_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.22,8.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_8_P,Field Msr/Obs,WATER,NA,10/15/2009,1:35:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:35,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_9.6_P,Field Msr/Obs,WATER,NA,8/6/2012,8:03:00,EST,NA,NA,NA,9.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.39,19.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:03,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_16.6_P,Field Msr/Obs,WATER,NA,10/14/2009,9:08:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.31,10.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:08,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_1.8_P,Field Msr/Obs,WATER,NA,8/6/2012,8:01:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.54,21.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:01,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_13.7_P,Field Msr/Obs,WATER,NA,9/24/2013,8:49:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.06,17.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_2.6_P,Field Msr/Obs,WATER,NA,10/14/2010,2:19:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.47,13.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:19,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_4.2_P,Field Msr/Obs,WATER,NA,6/5/2013,6:49:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.53,12.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:49,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_40.5_P,Field Msr/Obs,WATER,NA,5/10/2012,3:49:00,EST,NA,NA,NA,40.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.05,5.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:49,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_27.5_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,27.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.68,7.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_17.5_P,Field Msr/Obs,WATER,NA,10/12/2010,6:10:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:10,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_0_P,Field Msr/Obs,WATER,NA,10/11/2012,9:50:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.46,12.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_11.6_P,Field Msr/Obs,WATER,NA,8/7/2012,11:59:00,EST,NA,NA,NA,11.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.17,16.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:59,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_7.7_P,Field Msr/Obs,WATER,NA,9/24/2013,11:11:00,EST,NA,NA,NA,7.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:11,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20080515_11.5_P,Field Msr/Obs,WATER,NA,5/15/2008,9:00:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.11,8.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_4_P,Field Msr/Obs,WATER,NA,8/5/2010,2:13:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.36,20.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:13,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_7_P,Field Msr/Obs,WATER,NA,7/28/2009,10:41:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.38,20.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:41,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_19_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.25,6.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_0.1_P,Field Msr/Obs,WATER,NA,10/14/2010,2:18:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.02,14.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:18,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_8.2_P,Field Msr/Obs,WATER,NA,8/6/2012,2:55:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.05,19.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:55,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_23.1_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.58,8.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_4.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:20:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_13.7_P,Field Msr/Obs,WATER,NA,9/24/2013,10:03:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.96,16.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:03,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_10.6_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.37,6.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_9.4_P,Field Msr/Obs,WATER,NA,6/2/2010,3:57:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.97,8.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:57,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_11.6_P,Field Msr/Obs,WATER,NA,7/28/2009,9:17:00,EST,NA,NA,NA,11.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.01,14.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:17,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_6.3_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,6.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.56,12.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_1_P,Field Msr/Obs,WATER,NA,6/5/2013,5:38:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.89,11.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:38,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20101014_9_P,Field Msr/Obs,WATER,NA,10/14/2010,1:32:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.28,12.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:32,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_25.6_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,25.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.53,7.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_7.8_P,Field Msr/Obs,WATER,NA,9/12/2011,7:21:00,EST,NA,NA,NA,7.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.25,18.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:21,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_14.3_P,Field Msr/Obs,WATER,NA,8/4/2010,4:56:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.55,14.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:56,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_0.2_P,Field Msr/Obs,WATER,NA,6/16/2015,4:55:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.14,19.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:55,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_19.1_P,Field Msr/Obs,WATER,NA,10/16/2014,1:34:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.93,12.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_18.7_P,Field Msr/Obs,WATER,NA,10/10/2012,3:00:00,EST,NA,NA,NA,18.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:00,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_15.1_P,Field Msr/Obs,WATER,NA,9/24/2013,9:28:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.29,13.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:28,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_39.9_P,Field Msr/Obs,WATER,NA,6/5/2013,5:19:00,EST,NA,NA,NA,39.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.25,6.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:19,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_10.9_P,Field Msr/Obs,WATER,NA,7/28/2009,11:53:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.44,17.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_18_P,Field Msr/Obs,WATER,NA,6/16/2015,12:59:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.11,15.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_3_P,Field Msr/Obs,WATER,NA,10/15/2009,4:16:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.39,12.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:16,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_8.6_P,Field Msr/Obs,WATER,NA,9/23/2013,3:01:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.04,16.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 8:01,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_8_P,Field Msr/Obs,WATER,NA,7/28/2009,6:42:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.98,18.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:42,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_2.8_P,Field Msr/Obs,WATER,NA,6/17/2015,2:11:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:11,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_13.7_P,Field Msr/Obs,WATER,NA,9/24/2013,9:26:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.29,15.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_23_P,Field Msr/Obs,WATER,NA,9/13/2011,9:52:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.64,16.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:52,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_20.6_P,Field Msr/Obs,WATER,NA,10/13/2010,12:33:00,EST,NA,NA,NA,20.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.92,10.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:33,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_13.7_P,Field Msr/Obs,WATER,NA,8/4/2010,6:48:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.55,15.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_16.2_P,Field Msr/Obs,WATER,NA,10/13/2010,12:29:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:29,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_0.2_P,Field Msr/Obs,WATER,NA,6/17/2015,2:43:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.86,20.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_8.5_P,Field Msr/Obs,WATER,NA,6/5/2013,6:27:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.91,9.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:27,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_3.4_P,Field Msr/Obs,WATER,NA,5/29/2014,2:20:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.31,13.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:20,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_9.3_P,Field Msr/Obs,WATER,NA,10/13/2010,12:24:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.57,14.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:24,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_1.4_P,Field Msr/Obs,WATER,NA,6/17/2015,2:11:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:11,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_9.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:04:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.61,11.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:04,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_3.3_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.13,11.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,10:46:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.32,17.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:46,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_20.8_P,Field Msr/Obs,WATER,NA,10/14/2009,9:10:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.02,8.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:10,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_10.8_P,Field Msr/Obs,WATER,NA,6/16/2015,4:57:00,EST,NA,NA,NA,10.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.33,16.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:57,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_12.7_P,Field Msr/Obs,WATER,NA,5/9/2012,3:45:00,EST,NA,NA,NA,12.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.93,8.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:45,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_1.9_P,Field Msr/Obs,WATER,NA,9/24/2013,8:47:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:47,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_23.3_P,Field Msr/Obs,WATER,NA,5/29/2014,1:23:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:23,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140528_2.3_P,Field Msr/Obs,WATER,NA,5/28/2014,6:42:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.54,16.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 11:42,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_9.2_P,Field Msr/Obs,WATER,NA,8/6/2012,2:16:00,EST,NA,NA,NA,9.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.55,19.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:16,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_16.2_P,Field Msr/Obs,WATER,NA,8/4/2010,4:57:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.96,12.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:57,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_8.6_P,Field Msr/Obs,WATER,NA,6/4/2013,8:30:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.25,9.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:30,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20101012_0_P,Field Msr/Obs,WATER,NA,10/12/2010,4:46:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.84,12.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 9:46,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080513_1_P,Field Msr/Obs,WATER,NA,5/13/2008,3:00:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.67,6.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_22.1_P,Field Msr/Obs,WATER,NA,5/28/2014,1:47:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.28,9.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_15.8_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.02,10.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_6.2_P,Field Msr/Obs,WATER,NA,9/24/2013,10:01:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.03,17.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:01,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_17.2_P,Field Msr/Obs,WATER,NA,10/15/2009,4:22:00,EST,NA,NA,NA,17.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.28,12.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:22,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20100805_1_P,Field Msr/Obs,WATER,NA,8/5/2010,3:55:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.45,17.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:55,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_21.5_P,Field Msr/Obs,WATER,NA,6/5/2013,5:49:00,EST,NA,NA,NA,21.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.78,6.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:49,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_14.4_P,Field Msr/Obs,WATER,NA,6/17/2015,2:16:00,EST,NA,NA,NA,14.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.23,10.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:16,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_13.6_P,Field Msr/Obs,WATER,NA,6/5/2013,5:44:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.15,10.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:44,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_17.5_P,Field Msr/Obs,WATER,NA,8/4/2010,3:55:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.54,10.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:55,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_46.8_P,Field Msr/Obs,WATER,NA,8/12/2014,1:14:00,EST,NA,NA,NA,46.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.62,6.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:14,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_2_P,Field Msr/Obs,WATER,NA,7/28/2009,10:34:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.71,20.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_5.7_P,Field Msr/Obs,WATER,NA,8/7/2012,11:21:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.09,20.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_14.8_P,Field Msr/Obs,WATER,NA,5/28/2014,1:45:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_37.9_P,Field Msr/Obs,WATER,NA,9/24/2013,9:35:00,EST,NA,NA,NA,37.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:35,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130924_3.3_P,Field Msr/Obs,WATER,NA,9/24/2013,1:24:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:24,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_17.9_P,Field Msr/Obs,WATER,NA,10/10/2012,2:58:00,EST,NA,NA,NA,17.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:58,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20100805_0_P,Field Msr/Obs,WATER,NA,8/5/2010,3:54:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.84,22.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:54,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100601_4.1_P,Field Msr/Obs,WATER,NA,6/1/2010,7:15:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_9.3_P,Field Msr/Obs,WATER,NA,6/5/2013,7:14:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.16,9.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:14,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_12.3_P,Field Msr/Obs,WATER,NA,6/16/2015,6:03:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.03,12.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:03,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_8.1_P,Field Msr/Obs,WATER,NA,8/6/2012,2:15:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.97,19.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20140811_1.4_P,Field Msr/Obs,WATER,NA,8/11/2014,5:51:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.03,22.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:51,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_17.6_P,Field Msr/Obs,WATER,NA,8/6/2012,8:08:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.69,11.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:08,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_30.9_P,Field Msr/Obs,WATER,NA,10/14/2010,8:29:00,EST,NA,NA,NA,30.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.17,8.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_1_P,Field Msr/Obs,WATER,NA,6/5/2013,6:47:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.17,15.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:47,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_0.1_P,Field Msr/Obs,WATER,NA,8/7/2012,1:02:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.19,21.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:02,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_18.9_P,Field Msr/Obs,WATER,NA,8/7/2012,10:57:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.19,10.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_8.5_P,Field Msr/Obs,WATER,NA,5/9/2012,4:36:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.91,8.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:36,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_34_P,Field Msr/Obs,WATER,NA,6/17/2015,2:21:00,EST,NA,NA,NA,34,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.27,6.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:21,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_16.5_P,Field Msr/Obs,WATER,NA,9/24/2013,9:29:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.43,10.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090520_0.1_P,Field Msr/Obs,WATER,NA,5/20/2009,3:15:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.23,16.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/20/2009 8:15,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_2.4_P,Field Msr/Obs,WATER,NA,8/6/2012,3:26:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.09,20.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:26,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_10.1_P,Field Msr/Obs,WATER,NA,10/14/2009,9:05:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.84,10.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:05,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_12.6_P,Field Msr/Obs,WATER,NA,9/23/2013,1:42:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.69,16.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:42,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_0.8_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,0.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.05,11.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_22_P,Field Msr/Obs,WATER,NA,10/16/2014,11:38:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.79,10.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_28.3_P,Field Msr/Obs,WATER,NA,9/24/2013,10:09:00,EST,NA,NA,NA,28.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:09,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_22.1_P,Field Msr/Obs,WATER,NA,10/14/2010,3:14:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.08,13.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_10.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:05:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.27,18.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:05,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_4.1_P,Field Msr/Obs,WATER,NA,6/5/2013,6:23:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.65,12.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:23,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_18.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:29:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.41,9.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:29,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_10.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:15:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.32,14.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_7.8_P,Field Msr/Obs,WATER,NA,10/12/2010,6:03:00,EST,NA,NA,NA,7.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.59,14.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:03,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_6.2_P,Field Msr/Obs,WATER,NA,8/4/2010,4:53:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.09,21.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_11.2_P,Field Msr/Obs,WATER,NA,8/5/2010,2:15:00,EST,NA,NA,NA,11.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_12.9_P,Field Msr/Obs,WATER,NA,7/28/2009,9:19:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.71,12.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:19,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_5.5_P,Field Msr/Obs,WATER,NA,10/10/2012,2:16:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.58,13.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:16,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_5.3_P,Field Msr/Obs,WATER,NA,9/10/2009,11:10:00,EST,NA,NA,NA,5.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.12,18.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:10,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_0.1_P,Field Msr/Obs,WATER,NA,6/16/2015,11:45:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_28_P,Field Msr/Obs,WATER,NA,7/28/2009,1:02:00,EST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:02,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_7_P,Field Msr/Obs,WATER,NA,10/12/2010,3:30:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.52,11.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:30,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_9.1_P,Field Msr/Obs,WATER,NA,8/4/2010,6:48:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.99,20.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_2.6_P,Field Msr/Obs,WATER,NA,10/9/2012,2:26:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.82,12.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:26,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_2.2_P,Field Msr/Obs,WATER,NA,10/15/2009,4:16:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.39,12.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:16,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_0_P,Field Msr/Obs,WATER,NA,5/28/2014,1:41:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.59,15.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_26.6_P,Field Msr/Obs,WATER,NA,10/15/2014,12:31:00,EST,NA,NA,NA,26.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.34,11.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:31,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_1.8_P,Field Msr/Obs,WATER,NA,8/11/2014,6:31:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.83,21.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_12.1_P,Field Msr/Obs,WATER,NA,6/16/2015,11:48:00,EST,NA,NA,NA,12.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.53,16.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:48,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_28.9_P,Field Msr/Obs,WATER,NA,5/10/2012,3:03:00,EST,NA,NA,NA,28.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.09,5.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:03,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_19.8_P,Field Msr/Obs,WATER,NA,8/6/2012,2:20:00,EST,NA,NA,NA,19.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.64,16.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:20,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_15.4_P,Field Msr/Obs,WATER,NA,8/4/2010,2:47:00,EST,NA,NA,NA,15.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.05,13.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_7_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.46,19.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_3_P,Field Msr/Obs,WATER,NA,10/16/2014,2:51:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.85,12.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20140528_1.3_P,Field Msr/Obs,WATER,NA,5/28/2014,3:52:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.76,14.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:52,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_10.3_P,Field Msr/Obs,WATER,NA,6/17/2015,4:09:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.25,15.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:09,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_9.7_P,Field Msr/Obs,WATER,NA,8/6/2012,2:55:00,EST,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.93,18.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:55,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_1.7_P,Field Msr/Obs,WATER,NA,5/29/2014,11:45:00,EST,NA,NA,NA,1.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.66,12.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_8.7_P,Field Msr/Obs,WATER,NA,8/12/2014,1:30:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.09,20.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_0.1_P,Field Msr/Obs,WATER,NA,10/10/2012,2:50:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.25,14.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:50,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_23.4_P,Field Msr/Obs,WATER,NA,6/17/2015,4:34:00,EST,NA,NA,NA,23.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.47,7.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:34,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_11_P,Field Msr/Obs,WATER,NA,10/10/2012,2:18:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:18,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_17.8_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.27,7.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_21.2_P,Field Msr/Obs,WATER,NA,7/28/2009,7:10:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.98,8.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_1.4_P,Field Msr/Obs,WATER,NA,5/10/2012,2:54:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.79,10.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_16.2_P,Field Msr/Obs,WATER,NA,6/17/2015,4:32:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:32,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_3_P,Field Msr/Obs,WATER,NA,10/16/2014,1:57:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.14,13.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:57,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_6.2_P,Field Msr/Obs,WATER,NA,10/13/2010,12:23:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:23,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20120806_0.5_P,Field Msr/Obs,WATER,NA,8/6/2012,4:12:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.46,21.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 9:12,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_1.3_P,Field Msr/Obs,WATER,NA,8/12/2014,1:29:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.56,21.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_11.5_P,Field Msr/Obs,WATER,NA,9/10/2009,12:08:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:08,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_10.6_P,Field Msr/Obs,WATER,NA,8/11/2014,12:46:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.44,19.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_4_P,Field Msr/Obs,WATER,NA,5/9/2012,4:21:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.91,12.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:21,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_7_P,Field Msr/Obs,WATER,NA,8/6/2012,3:27:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.93,18.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:27,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_9.8_P,Field Msr/Obs,WATER,NA,5/9/2012,3:42:00,EST,NA,NA,NA,9.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.01,9.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:42,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_12.4_P,Field Msr/Obs,WATER,NA,10/15/2009,3:22:00,EST,NA,NA,NA,12.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.11,12.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_24.4_P,Field Msr/Obs,WATER,NA,6/17/2015,2:19:00,EST,NA,NA,NA,24.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.17,7.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:19,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_16.3_P,Field Msr/Obs,WATER,NA,10/16/2014,12:03:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.19,13.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:03,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_10_P,Field Msr/Obs,WATER,NA,7/28/2009,6:56:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.52,16.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:56,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20080513_2_P,Field Msr/Obs,WATER,NA,5/13/2008,10:20:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.09,11.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 15:20,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_13.9_P,Field Msr/Obs,WATER,NA,10/12/2010,6:05:00,EST,NA,NA,NA,13.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.36,14.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:05,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_41.1_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,41.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.19,6.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_10.4_P,Field Msr/Obs,WATER,NA,6/16/2015,12:34:00,EST,NA,NA,NA,10.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.05,17.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:34,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_0_P,Field Msr/Obs,WATER,NA,8/5/2010,11:30:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.58,21.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:30,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_4.5_P,Field Msr/Obs,WATER,NA,6/17/2015,4:29:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.47,17.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:29,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_9_P,Field Msr/Obs,WATER,NA,10/16/2014,1:58:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.07,13.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:58,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_23_P,Field Msr/Obs,WATER,NA,8/12/2014,1:35:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.91,8.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:35,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_0_P,Field Msr/Obs,WATER,NA,10/10/2012,4:18:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.74,13.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:18,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_0.1_P,Field Msr/Obs,WATER,NA,10/14/2009,8:57:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.93,10.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 13:57,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_29.5_P,Field Msr/Obs,WATER,NA,8/5/2010,2:21:00,EST,NA,NA,NA,29.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.97,13.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_34.1_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,34.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.86,6.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_11.5_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.59,7.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_0.3_P,Field Msr/Obs,WATER,NA,9/10/2009,12:05:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.92,18.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:05,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_12_P,Field Msr/Obs,WATER,NA,5/29/2014,11:48:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_30.9_P,Field Msr/Obs,WATER,NA,8/6/2012,2:23:00,EST,NA,NA,NA,30.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.73,13.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:23,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_3.7_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,3.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.81,19.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_2.7_P,Field Msr/Obs,WATER,NA,5/10/2012,2:54:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.55,10.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_20.4_P,Field Msr/Obs,WATER,NA,8/4/2010,2:49:00,EST,NA,NA,NA,20.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.58,9.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:49,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20091014_0.2_P,Field Msr/Obs,WATER,NA,10/14/2009,3:32:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.43,10.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:32,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_7.5_P,Field Msr/Obs,WATER,NA,6/17/2015,2:46:00,EST,NA,NA,NA,7.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.75,15.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_13.2_P,Field Msr/Obs,WATER,NA,7/28/2009,7:01:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.17,12.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:01,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_30.1_P,Field Msr/Obs,WATER,NA,5/10/2012,3:46:00,EST,NA,NA,NA,30.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.25,6.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_8.5_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.84,7.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_5.5_P,Field Msr/Obs,WATER,NA,10/12/2010,5:25:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.36,14.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:25,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_25.3_P,Field Msr/Obs,WATER,NA,9/23/2013,1:47:00,EST,NA,NA,NA,25.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.77,15.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_18_P,Field Msr/Obs,WATER,NA,10/15/2009,4:23:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.19,12.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:23,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20100805_2_P,Field Msr/Obs,WATER,NA,8/5/2010,3:59:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.68,16.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:59,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_15.4_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,15.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.55,8.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_2.9_P,Field Msr/Obs,WATER,NA,8/12/2014,1:03:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.96,20.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:03,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_14_P,Field Msr/Obs,WATER,NA,5/10/2012,2:57:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.63,7.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_8.5_P,Field Msr/Obs,WATER,NA,6/4/2013,3:50:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.42,13.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:50,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_19.2_P,Field Msr/Obs,WATER,NA,10/13/2010,12:32:00,EST,NA,NA,NA,19.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.19,12.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:32,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_2_P,Field Msr/Obs,WATER,NA,7/27/2009,8:04:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.45,22.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:04,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_1_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_32.4_P,Field Msr/Obs,WATER,NA,5/29/2014,11:54:00,EST,NA,NA,NA,32.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.39,6.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_14.2_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.49,8.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_18.3_P,Field Msr/Obs,WATER,NA,10/14/2010,8:24:00,EST,NA,NA,NA,18.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.71,12.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_17.6_P,Field Msr/Obs,WATER,NA,10/14/2009,9:08:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.64,9.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:08,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_8.9_P,Field Msr/Obs,WATER,NA,10/16/2014,2:18:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.85,12.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:18,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_17.4_P,Field Msr/Obs,WATER,NA,10/10/2012,3:59:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.43,12.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:59,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120806_0.2_P,Field Msr/Obs,WATER,NA,8/6/2012,7:15:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.6,22.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 12:15,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_20.3_P,Field Msr/Obs,WATER,NA,10/14/2009,9:09:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.08,8.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:09,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20141015_0.2_P,Field Msr/Obs,WATER,NA,10/15/2014,5:23:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.37,10.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:23,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_7.8_P,Field Msr/Obs,WATER,NA,8/4/2010,4:54:00,EST,NA,NA,NA,7.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.29,19.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_30.2_P,Field Msr/Obs,WATER,NA,10/15/2009,4:27:00,EST,NA,NA,NA,30.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.79,7.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:27,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_33.5_P,Field Msr/Obs,WATER,NA,10/14/2010,9:26:00,EST,NA,NA,NA,33.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.09,8.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:26,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_12_P,Field Msr/Obs,WATER,NA,8/5/2010,11:36:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.59,17.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:36,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_35.5_P,Field Msr/Obs,WATER,NA,10/13/2010,12:43:00,EST,NA,NA,NA,35.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.21,7.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:43,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_11.3_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.14,8.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_17.5_P,Field Msr/Obs,WATER,NA,6/17/2015,4:33:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.08,9.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:33,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_13.2_P,Field Msr/Obs,WATER,NA,8/6/2012,2:18:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.21,18.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:18,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_3.5_P,Field Msr/Obs,WATER,NA,9/24/2013,11:33:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.84,16.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:33,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_13.4_P,Field Msr/Obs,WATER,NA,9/13/2011,9:49:00,EST,NA,NA,NA,13.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.42,17.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:49,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_23.8_P,Field Msr/Obs,WATER,NA,10/15/2009,3:26:00,EST,NA,NA,NA,23.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.21,9.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_9.8_P,Field Msr/Obs,WATER,NA,10/9/2012,2:29:00,EST,NA,NA,NA,9.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:29,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_25.4_P,Field Msr/Obs,WATER,NA,5/29/2014,11:52:00,EST,NA,NA,NA,25.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.64,6.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:52,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_7.9_P,Field Msr/Obs,WATER,NA,8/11/2014,6:32:00,EST,NA,NA,NA,7.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.06,20.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:32,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_17.5_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_5.9_P,Field Msr/Obs,WATER,NA,10/15/2014,12:27:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.66,12.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:27,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_21_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.97,8.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_11.5_P,Field Msr/Obs,WATER,NA,5/29/2014,12:40:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.39,11.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:40,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_4.9_P,Field Msr/Obs,WATER,NA,8/11/2014,7:33:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.55,20.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:33,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_6.6_P,Field Msr/Obs,WATER,NA,8/5/2010,11:33:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.11,21.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_35.2_P,Field Msr/Obs,WATER,NA,5/29/2014,12:48:00,EST,NA,NA,NA,35.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.94,6.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_6_P,Field Msr/Obs,WATER,NA,5/28/2014,3:10:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.35,12.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:10,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_17.2_P,Field Msr/Obs,WATER,NA,5/11/2012,10:39:00,EST,NA,NA,NA,17.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.93,6.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:39,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_8.5_P,Field Msr/Obs,WATER,NA,6/5/2013,5:42:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.97,10.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:42,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_14.3_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.33,11.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_3_P,Field Msr/Obs,WATER,NA,8/5/2010,2:13:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.45,20.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:13,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_7.1_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.24,9.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_0.1_P,Field Msr/Obs,WATER,NA,6/4/2013,2:07:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.94,13.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:07,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_1.2_P,Field Msr/Obs,WATER,NA,10/11/2012,9:51:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_14.9_P,Field Msr/Obs,WATER,NA,8/11/2014,12:47:00,EST,NA,NA,NA,14.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.23,19.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_14_P,Field Msr/Obs,WATER,NA,6/5/2013,4:35:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.01,11.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:35,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_23_P,Field Msr/Obs,WATER,NA,10/15/2009,1:41:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:41,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_0.1_P,Field Msr/Obs,WATER,NA,8/5/2010,2:11:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.15,23.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:11,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_3_P,Field Msr/Obs,WATER,NA,10/16/2014,12:47:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.27,13.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:47,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_10_P,Field Msr/Obs,WATER,NA,5/11/2012,10:36:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.45,8.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:36,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_26.3_P,Field Msr/Obs,WATER,NA,10/16/2014,12:05:00,EST,NA,NA,NA,26.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.63,9.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:05,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_16.5_P,Field Msr/Obs,WATER,NA,10/10/2012,2:56:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.94,12.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:56,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_33.9_P,Field Msr/Obs,WATER,NA,10/15/2009,4:28:00,EST,NA,NA,NA,33.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:28,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_9_P,Field Msr/Obs,WATER,NA,10/14/2010,8:21:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_23.1_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.17,8.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_23.3_P,Field Msr/Obs,WATER,NA,5/9/2012,2:53:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.83,8.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:53,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_23.3_P,Field Msr/Obs,WATER,NA,10/14/2010,8:27:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.96,8.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:27,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_1.1_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.13,10.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_22.5_P,Field Msr/Obs,WATER,NA,6/5/2013,4:39:00,EST,NA,NA,NA,22.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.57,6.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:39,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_14.4_P,Field Msr/Obs,WATER,NA,8/12/2014,1:32:00,EST,NA,NA,NA,14.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.37,14.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_7.7_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,7.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.15,18.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_1.6_P,Field Msr/Obs,WATER,NA,10/16/2014,11:34:00,EST,NA,NA,NA,1.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.51,13.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:34,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_44.2_P,Field Msr/Obs,WATER,NA,9/24/2013,9:00:00,EST,NA,NA,NA,44.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.61,6.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_18.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:39:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.14,11.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:39,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_8.2_P,Field Msr/Obs,WATER,NA,10/14/2009,5:49:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.97,10.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:49,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_7.4_P,Field Msr/Obs,WATER,NA,9/13/2011,10:20:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.12,17.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:20,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_3.4_P,Field Msr/Obs,WATER,NA,9/23/2013,2:59:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.52,16.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_20.8_P,Field Msr/Obs,WATER,NA,5/29/2014,2:55:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.29,8.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:55,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_10.7_P,Field Msr/Obs,WATER,NA,8/7/2012,11:57:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.16,18.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:57,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20140529_2.2_P,Field Msr/Obs,WATER,NA,5/29/2014,3:46:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.81,16.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:46,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_28.5_P,Field Msr/Obs,WATER,NA,5/29/2014,12:47:00,EST,NA,NA,NA,28.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.35,7.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_0.1_P,Field Msr/Obs,WATER,NA,10/16/2014,12:46:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.84,13.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:46,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_8_P,Field Msr/Obs,WATER,NA,9/10/2009,11:10:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.07,18.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:10,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_15_P,Field Msr/Obs,WATER,NA,10/14/2009,5:51:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.44,10.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_27.7_P,Field Msr/Obs,WATER,NA,10/10/2012,2:22:00,EST,NA,NA,NA,27.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.31,7.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_26.2_P,Field Msr/Obs,WATER,NA,8/7/2012,11:00:00,EST,NA,NA,NA,26.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.67,7.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_12.2_P,Field Msr/Obs,WATER,NA,8/4/2010,2:46:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.04,16.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_36.5_P,Field Msr/Obs,WATER,NA,10/16/2014,11:42:00,EST,NA,NA,NA,36.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.88,7.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:42,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_24.5_P,Field Msr/Obs,WATER,NA,8/12/2014,1:35:00,EST,NA,NA,NA,24.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.35,8.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:35,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_15.3_P,Field Msr/Obs,WATER,NA,8/7/2012,10:56:00,EST,NA,NA,NA,15.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.52,11.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_26.5_P,Field Msr/Obs,WATER,NA,5/29/2014,11:53:00,EST,NA,NA,NA,26.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_5_P,Field Msr/Obs,WATER,NA,8/11/2014,6:31:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.26,21.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_8.5_P,Field Msr/Obs,WATER,NA,8/12/2014,3:12:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.2,20.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:12,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_14.6_P,Field Msr/Obs,WATER,NA,10/11/2012,9:22:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.38,11.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:22,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_16.1_P,Field Msr/Obs,WATER,NA,5/9/2012,2:52:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.91,8.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:52,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_22.1_P,Field Msr/Obs,WATER,NA,8/12/2014,3:35:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.07,9.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:35,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_2.7_P,Field Msr/Obs,WATER,NA,8/7/2012,10:52:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.24,20.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:52,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_21.1_P,Field Msr/Obs,WATER,NA,6/16/2015,6:05:00,EST,NA,NA,NA,21.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.44,8.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:05,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20091014_0.2_P,Field Msr/Obs,WATER,NA,10/14/2009,5:14:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.99,8.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:14,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_21.5_P,Field Msr/Obs,WATER,NA,8/4/2010,6:50:00,EST,NA,NA,NA,21.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_4_P,Field Msr/Obs,WATER,NA,10/12/2010,3:27:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.68,13.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:27,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_8.3_P,Field Msr/Obs,WATER,NA,5/28/2014,2:27:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.56,13.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:27,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_18.6_P,Field Msr/Obs,WATER,NA,5/10/2012,2:59:00,EST,NA,NA,NA,18.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.45,7.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:59,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_11.3_P,Field Msr/Obs,WATER,NA,8/11/2014,12:46:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.43,19.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_41.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:31:00,EST,NA,NA,NA,41.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_2.1_P,Field Msr/Obs,WATER,NA,8/5/2010,11:16:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.33,21.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:16,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_6.6_P,Field Msr/Obs,WATER,NA,8/12/2014,2:04:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.38,20.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:04,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_17.5_P,Field Msr/Obs,WATER,NA,8/7/2012,10:57:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.68,10.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_8.3_P,Field Msr/Obs,WATER,NA,10/9/2012,2:28:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.69,12.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:28,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_26.4_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,26.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.23,7.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_35_P,Field Msr/Obs,WATER,NA,10/14/2010,9:27:00,EST,NA,NA,NA,35,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.05,8.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:27,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_30.7_P,Field Msr/Obs,WATER,NA,10/16/2014,11:41:00,EST,NA,NA,NA,30.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.35,8.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:41,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_25.1_P,Field Msr/Obs,WATER,NA,10/15/2014,12:31:00,EST,NA,NA,NA,25.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.49,11.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:31,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_23.6_P,Field Msr/Obs,WATER,NA,10/16/2014,12:04:00,EST,NA,NA,NA,23.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.79,10.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:04,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_4.5_P,Field Msr/Obs,WATER,NA,5/11/2012,11:09:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.51,12.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:09,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_27.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:52:00,EST,NA,NA,NA,27.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:52,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_0_P,Field Msr/Obs,WATER,NA,7/28/2009,12:41:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.99,22.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:41,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_4.3_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.07,21.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_7.6_P,Field Msr/Obs,WATER,NA,10/14/2010,8:21:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.44,14.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_15.4_P,Field Msr/Obs,WATER,NA,5/9/2012,3:47:00,EST,NA,NA,NA,15.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.83,8.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:47,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_25_P,Field Msr/Obs,WATER,NA,6/17/2015,2:51:00,EST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.17,7.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:51,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_8.2_P,Field Msr/Obs,WATER,NA,10/10/2012,2:17:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.38,13.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:17,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_6_P,Field Msr/Obs,WATER,NA,7/28/2009,10:39:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.57,20.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:39,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_11.4_P,Field Msr/Obs,WATER,NA,8/5/2010,11:19:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.04,18.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:19,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20141016_1.2_P,Field Msr/Obs,WATER,NA,10/16/2014,3:18:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.48,10.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 8:18,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_17.7_P,Field Msr/Obs,WATER,NA,10/16/2014,12:03:00,EST,NA,NA,NA,17.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.14,13.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:03,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_1_P,Field Msr/Obs,WATER,NA,9/13/2011,9:14:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20101014_6.2_P,Field Msr/Obs,WATER,NA,10/14/2010,1:32:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.45,12.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:32,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_12.2_P,Field Msr/Obs,WATER,NA,5/28/2014,7:46:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.92,12.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:46,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_7.4_P,Field Msr/Obs,WATER,NA,10/16/2014,1:31:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.03,13.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:31,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_24.9_P,Field Msr/Obs,WATER,NA,10/13/2010,12:37:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.57,8.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:37,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_15.3_P,Field Msr/Obs,WATER,NA,8/5/2010,11:22:00,EST,NA,NA,NA,15.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.49,13.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:22,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_11.5_P,Field Msr/Obs,WATER,NA,5/11/2012,10:37:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.94,7.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:37,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_25.7_P,Field Msr/Obs,WATER,NA,10/13/2010,12:37:00,EST,NA,NA,NA,25.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.48,8.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:37,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_16.7_P,Field Msr/Obs,WATER,NA,7/28/2009,12:54:00,EST,NA,NA,NA,16.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:54,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_8_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.36,8.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_39.7_P,Field Msr/Obs,WATER,NA,10/14/2010,8:30:00,EST,NA,NA,NA,39.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_6.6_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.95,8.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_14.1_P,Field Msr/Obs,WATER,NA,10/10/2012,1:49:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.72,13.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_11.4_P,Field Msr/Obs,WATER,NA,5/29/2014,11:48:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.74,10.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_8.6_P,Field Msr/Obs,WATER,NA,8/5/2010,3:19:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.97,19.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:19,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_29_P,Field Msr/Obs,WATER,NA,10/9/2012,1:42:00,EST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.54,12.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:42,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090519_1_P,Field Msr/Obs,WATER,NA,5/19/2009,7:15:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 12:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_14_P,Field Msr/Obs,WATER,NA,5/29/2014,12:41:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.76,10.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:41,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_3.5_P,Field Msr/Obs,WATER,NA,10/14/2009,8:59:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 13:59,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_22.2_P,Field Msr/Obs,WATER,NA,8/7/2012,1:10:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.12,9.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:10,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130604_2.4_P,Field Msr/Obs,WATER,NA,6/4/2013,7:28:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.79,17.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:28,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20120511_1.8_P,Field Msr/Obs,WATER,NA,5/11/2012,10:07:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.95,12.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:07,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_19.4_P,Field Msr/Obs,WATER,NA,8/5/2010,11:44:00,EST,NA,NA,NA,19.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.17,10.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:44,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_19.1_P,Field Msr/Obs,WATER,NA,5/29/2014,1:23:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.88,7.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:23,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20080722_1_P,Field Msr/Obs,WATER,NA,7/22/2008,7:45:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,2.71,2.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 12:45,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_27.1_P,Field Msr/Obs,WATER,NA,6/17/2015,2:52:00,EST,NA,NA,NA,27.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:52,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100601_0.1_P,Field Msr/Obs,WATER,NA,6/1/2010,7:15:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.38,12.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_11.8_P,Field Msr/Obs,WATER,NA,10/16/2014,1:59:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.06,13.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:59,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_19.2_P,Field Msr/Obs,WATER,NA,10/14/2010,8:25:00,EST,NA,NA,NA,19.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.43,11.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:25,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20101012_1_P,Field Msr/Obs,WATER,NA,10/12/2010,2:48:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.02,12.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 7:48,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_11.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:43:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.67,10.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:43,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20100601_0.1_P,Field Msr/Obs,WATER,NA,6/1/2010,6:10:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.14,15.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 11:10,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_3.3_P,Field Msr/Obs,WATER,NA,8/11/2014,1:58:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.56,19.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_5_P,Field Msr/Obs,WATER,NA,7/28/2009,10:36:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.6,20.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:36,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_42.1_P,Field Msr/Obs,WATER,NA,10/15/2009,4:29:00,EST,NA,NA,NA,42.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.09,7.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:29,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_6_P,Field Msr/Obs,WATER,NA,6/5/2013,5:41:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.14,11.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:41,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_1_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.58,7.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_16.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:09:00,EST,NA,NA,NA,16.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.66,9.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:09,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_13.8_P,Field Msr/Obs,WATER,NA,7/28/2009,9:20:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.13,12.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:20,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20140528_1_P,Field Msr/Obs,WATER,NA,5/28/2014,7:10:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.28,16.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:10,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_40.6_P,Field Msr/Obs,WATER,NA,8/12/2014,1:13:00,EST,NA,NA,NA,40.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:13,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_17.6_P,Field Msr/Obs,WATER,NA,10/14/2009,7:38:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.42,10.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:38,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100601_9.1_P,Field Msr/Obs,WATER,NA,6/1/2010,7:15:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.08,10.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_16.3_P,Field Msr/Obs,WATER,NA,5/29/2014,1:22:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.93,8.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:22,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_2.2_P,Field Msr/Obs,WATER,NA,10/10/2012,1:47:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.91,13.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:47,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_0.3_P,Field Msr/Obs,WATER,NA,5/29/2014,11:45:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_15.1_P,Field Msr/Obs,WATER,NA,5/29/2014,12:44:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.89,9.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:44,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_25.5_P,Field Msr/Obs,WATER,NA,8/12/2014,2:11:00,EST,NA,NA,NA,25.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.95,7.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:11,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_10.3_P,Field Msr/Obs,WATER,NA,8/7/2012,1:05:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.48,19.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:05,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20091014_3.2_P,Field Msr/Obs,WATER,NA,10/14/2009,3:34:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.46,10.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:34,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_21_P,Field Msr/Obs,WATER,NA,10/15/2009,1:40:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.97,10.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:40,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_19.6_P,Field Msr/Obs,WATER,NA,8/12/2014,2:10:00,EST,NA,NA,NA,19.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.04,11.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_0.2_P,Field Msr/Obs,WATER,NA,10/16/2014,12:00:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.62,13.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_22.3_P,Field Msr/Obs,WATER,NA,6/16/2015,11:50:00,EST,NA,NA,NA,22.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.91,13.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:50,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120511_4_P,Field Msr/Obs,WATER,NA,5/11/2012,11:37:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.84,13.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:37,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_6.6_P,Field Msr/Obs,WATER,NA,5/29/2014,11:47:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.39,12.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:47,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_3.1_P,Field Msr/Obs,WATER,NA,10/16/2014,11:34:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.44,13.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:34,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_20.4_P,Field Msr/Obs,WATER,NA,8/12/2014,3:14:00,EST,NA,NA,NA,20.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.06,10.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:14,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_14.1_P,Field Msr/Obs,WATER,NA,7/28/2009,10:11:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.87,12.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:11,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_10.1_P,Field Msr/Obs,WATER,NA,8/7/2012,10:54:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_11.3_P,Field Msr/Obs,WATER,NA,7/28/2009,6:58:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.03,15.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:58,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_17.3_P,Field Msr/Obs,WATER,NA,8/7/2012,11:26:00,EST,NA,NA,NA,17.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.42,11.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_24.6_P,Field Msr/Obs,WATER,NA,8/5/2010,2:53:00,EST,NA,NA,NA,24.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.85,16.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:53,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_15.5_P,Field Msr/Obs,WATER,NA,9/12/2011,7:25:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.87,17.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:25,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_4.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:33:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:33,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_1.5_P,Field Msr/Obs,WATER,NA,10/12/2010,3:24:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.12,14.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:24,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_10.8_P,Field Msr/Obs,WATER,NA,10/12/2010,6:04:00,EST,NA,NA,NA,10.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.48,14.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_5.4_P,Field Msr/Obs,WATER,NA,8/6/2012,2:54:00,EST,NA,NA,NA,5.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.45,19.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:54,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_20.4_P,Field Msr/Obs,WATER,NA,8/7/2012,11:27:00,EST,NA,NA,NA,20.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.94,9.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:27,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_25.8_P,Field Msr/Obs,WATER,NA,10/16/2014,12:53:00,EST,NA,NA,NA,25.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.99,9.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_18_P,Field Msr/Obs,WATER,NA,9/24/2013,9:30:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_21.7_P,Field Msr/Obs,WATER,NA,6/5/2013,4:39:00,EST,NA,NA,NA,21.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.05,7.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:39,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_16.7_P,Field Msr/Obs,WATER,NA,8/5/2010,11:43:00,EST,NA,NA,NA,16.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.51,11.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:43,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_15_P,Field Msr/Obs,WATER,NA,5/28/2014,7:47:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.83,8.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:47,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_5.2_P,Field Msr/Obs,WATER,NA,10/12/2010,3:29:00,EST,NA,NA,NA,5.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.04,13.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:29,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_8.1_P,Field Msr/Obs,WATER,NA,7/27/2009,8:10:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20141015_5.2_P,Field Msr/Obs,WATER,NA,10/15/2014,2:21:00,EST,NA,NA,NA,5.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.37,7.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 7:21,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_11.8_P,Field Msr/Obs,WATER,NA,10/15/2014,1:20:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.57,12.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:20,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_2_P,Field Msr/Obs,WATER,NA,8/5/2010,3:16:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.43,20.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:16,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_1.9_P,Field Msr/Obs,WATER,NA,10/16/2014,2:51:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.92,12.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_10.1_P,Field Msr/Obs,WATER,NA,10/14/2009,7:36:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.14,11.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:36,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_18.7_P,Field Msr/Obs,WATER,NA,7/28/2009,7:09:00,EST,NA,NA,NA,18.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.53,9.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:09,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_14.2_P,Field Msr/Obs,WATER,NA,5/29/2014,1:21:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.06,10.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:21,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_22_P,Field Msr/Obs,WATER,NA,7/28/2009,7:11:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.95,8.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:11,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_18.4_P,Field Msr/Obs,WATER,NA,10/9/2012,2:31:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.81,11.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:31,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_3.2_P,Field Msr/Obs,WATER,NA,5/11/2012,10:34:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.14,10.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_0.2_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_9.5_P,Field Msr/Obs,WATER,NA,7/28/2009,6:46:00,EST,NA,NA,NA,9.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.54,17.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:46,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_31.3_P,Field Msr/Obs,WATER,NA,7/28/2009,2:10:00,EST,NA,NA,NA,31.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.69,6.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:10,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_9.7_P,Field Msr/Obs,WATER,NA,7/28/2009,6:54:00,EST,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.99,16.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:54,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_0_P,Field Msr/Obs,WATER,NA,10/15/2014,1:18:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.02,13.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:18,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140528_8.5_P,Field Msr/Obs,WATER,NA,5/28/2014,6:43:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.06,16.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 11:43,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090727_1_P,Field Msr/Obs,WATER,NA,7/27/2009,7:11:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.08,22.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 12:11,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_39.5_P,Field Msr/Obs,WATER,NA,10/16/2014,11:43:00,EST,NA,NA,NA,39.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.82,7.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:43,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_20.4_P,Field Msr/Obs,WATER,NA,8/5/2010,2:52:00,EST,NA,NA,NA,20.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.73,17.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:52,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_11.5_P,Field Msr/Obs,WATER,NA,5/9/2012,2:48:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.26,9.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:48,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_12.5_P,Field Msr/Obs,WATER,NA,8/11/2014,6:33:00,EST,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.81,17.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_15_P,Field Msr/Obs,WATER,NA,10/14/2009,4:28:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.65,9.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:28,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_4.7_P,Field Msr/Obs,WATER,NA,10/12/2010,3:28:00,EST,NA,NA,NA,4.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.45,13.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:28,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_21.5_P,Field Msr/Obs,WATER,NA,10/10/2012,3:02:00,EST,NA,NA,NA,21.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_9.6_P,Field Msr/Obs,WATER,NA,10/9/2012,3:00:00,EST,NA,NA,NA,9.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.41,11.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 8:00,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_17.7_P,Field Msr/Obs,WATER,NA,10/16/2014,2:20:00,EST,NA,NA,NA,17.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.26,12.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:20,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_5.8_P,Field Msr/Obs,WATER,NA,7/28/2009,1:54:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_7.1_P,Field Msr/Obs,WATER,NA,10/16/2014,12:01:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.31,13.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:01,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_7.1_P,Field Msr/Obs,WATER,NA,6/5/2013,5:03:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.95,11.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:03,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_24.9_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.08,8.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_14.3_P,Field Msr/Obs,WATER,NA,8/4/2010,2:47:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20140811_2.9_P,Field Msr/Obs,WATER,NA,8/11/2014,5:53:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.95,21.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:53,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_1.2_P,Field Msr/Obs,WATER,NA,8/5/2010,11:31:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.45,21.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_13.4_P,Field Msr/Obs,WATER,NA,6/17/2015,2:48:00,EST,NA,NA,NA,13.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.45,12.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_9.3_P,Field Msr/Obs,WATER,NA,9/24/2013,12:44:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.81,16.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:44,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_10_P,Field Msr/Obs,WATER,NA,10/11/2012,9:53:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.07,12.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:53,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_10.4_P,Field Msr/Obs,WATER,NA,10/15/2014,12:28:00,EST,NA,NA,NA,10.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.64,12.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:28,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_20.3_P,Field Msr/Obs,WATER,NA,8/12/2014,1:11:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.54,9.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:11,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_16_P,Field Msr/Obs,WATER,NA,5/28/2014,1:45:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_2.9_P,Field Msr/Obs,WATER,NA,8/12/2014,3:11:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.58,20.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:11,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090520_0.4_P,Field Msr/Obs,WATER,NA,5/20/2009,4:00:00,EST,NA,NA,NA,0.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.01,12.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/20/2009 9:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_18_P,Field Msr/Obs,WATER,NA,5/11/2012,10:39:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.93,6.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:39,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_3.3_P,Field Msr/Obs,WATER,NA,5/10/2012,4:35:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.43,9.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:35,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_0.1_P,Field Msr/Obs,WATER,NA,8/5/2010,3:15:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.07,22.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:15,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_3.3_P,Field Msr/Obs,WATER,NA,6/16/2015,11:46:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.26,17.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_45.2_P,Field Msr/Obs,WATER,NA,10/16/2014,11:45:00,EST,NA,NA,NA,45.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.66,7.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_22.8_P,Field Msr/Obs,WATER,NA,10/15/2009,3:26:00,EST,NA,NA,NA,22.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.43,9.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20130924_0.4_P,Field Msr/Obs,WATER,NA,9/24/2013,1:47:00,EST,NA,NA,NA,0.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.82,13.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:47,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090728_3_P,Field Msr/Obs,WATER,NA,7/28/2009,8:11:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.87,20.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 13:11,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_14.8_P,Field Msr/Obs,WATER,NA,10/16/2014,2:20:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.67,12.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:20,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_21.2_P,Field Msr/Obs,WATER,NA,8/11/2014,12:49:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.24,18.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:49,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_13.7_P,Field Msr/Obs,WATER,NA,6/16/2015,11:48:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.44,16.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:48,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_42.3_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,42.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.14,5.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_2.5_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.82,20.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_21.8_P,Field Msr/Obs,WATER,NA,10/16/2014,2:02:00,EST,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.94,12.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:02,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_21.6_P,Field Msr/Obs,WATER,NA,10/15/2009,4:25:00,EST,NA,NA,NA,21.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.68,10.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:25,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_4.5_P,Field Msr/Obs,WATER,NA,10/16/2014,11:35:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.42,13.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:35,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_24.4_P,Field Msr/Obs,WATER,NA,8/5/2010,2:19:00,EST,NA,NA,NA,24.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.07,17.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:19,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_1.4_P,Field Msr/Obs,WATER,NA,5/29/2014,3:09:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.31,15.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:09,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20140528_0.1_P,Field Msr/Obs,WATER,NA,5/28/2014,7:09:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.28,16.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:09,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_3_P,Field Msr/Obs,WATER,NA,8/11/2014,12:43:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.75,20.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:43,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_0_P,Field Msr/Obs,WATER,NA,8/6/2012,2:07:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.47,20.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:07,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_16.2_P,Field Msr/Obs,WATER,NA,10/16/2014,12:49:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:49,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_11.9_P,Field Msr/Obs,WATER,NA,5/28/2014,2:28:00,EST,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:28,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_1.2_P,Field Msr/Obs,WATER,NA,8/12/2014,3:31:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.42,21.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:31,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_4.6_P,Field Msr/Obs,WATER,NA,5/28/2014,3:09:00,EST,NA,NA,NA,4.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.17,13.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:09,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_9_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_2.9_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.08,11.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_10.3_P,Field Msr/Obs,WATER,NA,5/29/2014,12:40:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.55,11.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:40,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20130604_1_P,Field Msr/Obs,WATER,NA,6/4/2013,7:57:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.66,17.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:57,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_22.1_P,Field Msr/Obs,WATER,NA,6/5/2013,6:59:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.74,7.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:59,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_21.2_P,Field Msr/Obs,WATER,NA,10/16/2014,2:23:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:23,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_26.9_P,Field Msr/Obs,WATER,NA,10/10/2012,1:54:00,EST,NA,NA,NA,26.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.81,7.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_10.4_P,Field Msr/Obs,WATER,NA,6/17/2015,2:47:00,EST,NA,NA,NA,10.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.86,13.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_19.1_P,Field Msr/Obs,WATER,NA,10/15/2014,12:30:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.35,12.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:30,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_32_P,Field Msr/Obs,WATER,NA,5/10/2012,4:47:00,EST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:47,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_15_P,Field Msr/Obs,WATER,NA,8/11/2014,2:00:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.95,18.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 7:00,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_0.9_P,Field Msr/Obs,WATER,NA,6/16/2015,12:31:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.32,18.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:31,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_3.9_P,Field Msr/Obs,WATER,NA,5/9/2012,3:40:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.17,10.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:40,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_1.6_P,Field Msr/Obs,WATER,NA,10/15/2014,1:41:00,EST,NA,NA,NA,1.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:41,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_3_P,Field Msr/Obs,WATER,NA,8/5/2010,11:17:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.21,21.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:17,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_39.4_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,39.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.33,7.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_4.8_P,Field Msr/Obs,WATER,NA,6/4/2013,8:28:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.03,11.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:28,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_13.1_P,Field Msr/Obs,WATER,NA,9/11/2009,11:04:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.04,17.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:04,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_1.1_P,Field Msr/Obs,WATER,NA,10/14/2009,7:32:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.18,11.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:32,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_7.4_P,Field Msr/Obs,WATER,NA,8/7/2012,1:04:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.18,20.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_33.8_P,Field Msr/Obs,WATER,NA,6/17/2015,2:54:00,EST,NA,NA,NA,33.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:54,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_7.1_P,Field Msr/Obs,WATER,NA,10/14/2010,9:51:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.39,14.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:51,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_10_P,Field Msr/Obs,WATER,NA,8/6/2012,3:28:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.75,18.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:28,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_3.7_P,Field Msr/Obs,WATER,NA,5/9/2012,4:35:00,EST,NA,NA,NA,3.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:35,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_14.1_P,Field Msr/Obs,WATER,NA,8/5/2010,2:16:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.65,18.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:16,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_13.4_P,Field Msr/Obs,WATER,NA,8/4/2010,3:52:00,EST,NA,NA,NA,13.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.02,14.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:52,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_9_P,Field Msr/Obs,WATER,NA,5/11/2012,11:10:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.83,8.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_4.9_P,Field Msr/Obs,WATER,NA,5/29/2014,3:10:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.59,14.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:10,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_27.8_P,Field Msr/Obs,WATER,NA,10/13/2010,12:38:00,EST,NA,NA,NA,27.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_46.4_P,Field Msr/Obs,WATER,NA,5/29/2014,11:56:00,EST,NA,NA,NA,46.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.18,6.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_38_P,Field Msr/Obs,WATER,NA,10/16/2014,12:06:00,EST,NA,NA,NA,38,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.35,8.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:06,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_11.8_P,Field Msr/Obs,WATER,NA,10/16/2014,2:19:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.84,12.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:19,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_1_P,Field Msr/Obs,WATER,NA,8/4/2010,6:41:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.01,21.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:41,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_22.6_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,22.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.39,8.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_15_P,Field Msr/Obs,WATER,NA,5/29/2014,2:53:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:53,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_17.6_P,Field Msr/Obs,WATER,NA,10/16/2014,2:01:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.05,13.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:01,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_9_P,Field Msr/Obs,WATER,NA,10/14/2009,9:41:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.93,9.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:41,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_20.2_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,20.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.41,8.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_0.5_P,Field Msr/Obs,WATER,NA,5/11/2012,10:33:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.18,10.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_32.4_P,Field Msr/Obs,WATER,NA,6/16/2015,11:52:00,EST,NA,NA,NA,32.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.71,10.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_33.5_P,Field Msr/Obs,WATER,NA,5/29/2014,1:25:00,EST,NA,NA,NA,33.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.85,6.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:25,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_5_P,Field Msr/Obs,WATER,NA,8/4/2010,3:45:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.14,21.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:45,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_0.2_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.26,10.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_27.9_P,Field Msr/Obs,WATER,NA,5/29/2014,1:24:00,EST,NA,NA,NA,27.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.95,6.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:24,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_7.6_P,Field Msr/Obs,WATER,NA,10/16/2014,11:35:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:35,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_14.2_P,Field Msr/Obs,WATER,NA,8/4/2010,6:49:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.02,15.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_1.1_P,Field Msr/Obs,WATER,NA,10/16/2014,2:16:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.21,13.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:16,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_15.1_P,Field Msr/Obs,WATER,NA,10/13/2010,12:29:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.43,14.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:29,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_22.2_P,Field Msr/Obs,WATER,NA,6/4/2013,2:14:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.13,13.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_0.1_P,Field Msr/Obs,WATER,NA,10/15/2014,1:40:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.88,12.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:40,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_20.3_P,Field Msr/Obs,WATER,NA,10/16/2014,2:01:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.03,13.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:01,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20101012_2.5_P,Field Msr/Obs,WATER,NA,10/12/2010,2:50:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.66,11.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 7:50,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_0.9_P,Field Msr/Obs,WATER,NA,5/10/2012,4:34:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.42,9.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:34,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20121009_0_P,Field Msr/Obs,WATER,NA,10/9/2012,3:50:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.26,8.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 8:50,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_8.9_P,Field Msr/Obs,WATER,NA,5/29/2014,12:40:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.02,12.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:40,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_17.4_P,Field Msr/Obs,WATER,NA,8/12/2014,3:34:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.75,11.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:34,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_25.5_P,Field Msr/Obs,WATER,NA,10/15/2014,1:23:00,EST,NA,NA,NA,25.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.57,11.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:23,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20140811_3_P,Field Msr/Obs,WATER,NA,8/11/2014,7:22:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.97,21.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:22,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_22.4_P,Field Msr/Obs,WATER,NA,10/16/2014,11:38:00,EST,NA,NA,NA,22.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.47,10.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_23.5_P,Field Msr/Obs,WATER,NA,10/16/2014,12:51:00,EST,NA,NA,NA,23.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.81,12.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:51,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_6.7_P,Field Msr/Obs,WATER,NA,5/28/2014,2:26:00,EST,NA,NA,NA,6.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:26,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_3.8_P,Field Msr/Obs,WATER,NA,6/16/2015,6:02:00,EST,NA,NA,NA,3.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.47,17.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:02,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20100601_2.1_P,Field Msr/Obs,WATER,NA,6/1/2010,8:30:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 13:30,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_14.8_P,Field Msr/Obs,WATER,NA,5/29/2014,1:21:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:21,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_22.1_P,Field Msr/Obs,WATER,NA,10/16/2014,12:04:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.86,11.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:04,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_1.6_P,Field Msr/Obs,WATER,NA,10/16/2014,1:57:00,EST,NA,NA,NA,1.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.24,13.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:57,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_4.5_P,Field Msr/Obs,WATER,NA,5/29/2014,11:46:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:46,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20100601_0_P,Field Msr/Obs,WATER,NA,6/1/2010,8:30:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.03,14.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 13:30,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_1_P,Field Msr/Obs,WATER,NA,6/4/2013,3:05:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.54,13.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:05,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20140529_2.4_P,Field Msr/Obs,WATER,NA,5/29/2014,3:46:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.07,16.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:46,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_35.2_P,Field Msr/Obs,WATER,NA,10/14/2010,8:29:00,EST,NA,NA,NA,35.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.96,7.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_16.9_P,Field Msr/Obs,WATER,NA,5/28/2014,2:30:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.53,10.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:30,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_4.5_P,Field Msr/Obs,WATER,NA,8/12/2014,1:03:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.9,20.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:03,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_7_P,Field Msr/Obs,WATER,NA,8/4/2010,4:53:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.75,19.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_12.6_P,Field Msr/Obs,WATER,NA,8/5/2010,3:20:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.99,18.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:20,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_13.9_P,Field Msr/Obs,WATER,NA,8/4/2010,4:56:00,EST,NA,NA,NA,13.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:56,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_0_P,Field Msr/Obs,WATER,NA,6/5/2013,4:29:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.97,14.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:29,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_1.5_P,Field Msr/Obs,WATER,NA,6/16/2015,12:54:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.72,17.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:54,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_29.2_P,Field Msr/Obs,WATER,NA,10/13/2010,12:38:00,EST,NA,NA,NA,29.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_4.4_P,Field Msr/Obs,WATER,NA,10/16/2014,2:17:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.89,12.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:17,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_10.2_P,Field Msr/Obs,WATER,NA,5/28/2014,3:12:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:12,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_42_P,Field Msr/Obs,WATER,NA,8/12/2014,1:39:00,EST,NA,NA,NA,42,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.03,7.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_3.6_P,Field Msr/Obs,WATER,NA,5/11/2012,11:08:00,EST,NA,NA,NA,3.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.73,12.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:08,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_1.2_P,Field Msr/Obs,WATER,NA,8/7/2012,11:54:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.78,20.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_0_P,Field Msr/Obs,WATER,NA,10/15/2009,3:18:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:18,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_5.9_P,Field Msr/Obs,WATER,NA,10/16/2014,2:18:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.87,12.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:18,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_7.1_P,Field Msr/Obs,WATER,NA,8/11/2014,1:59:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.47,19.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_18.8_P,Field Msr/Obs,WATER,NA,10/15/2014,1:44:00,EST,NA,NA,NA,18.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.52,11.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:44,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_1.4_P,Field Msr/Obs,WATER,NA,10/16/2014,12:00:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_0_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.48,12.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140528_5.7_P,Field Msr/Obs,WATER,NA,5/28/2014,6:42:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 11:42,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_18.2_P,Field Msr/Obs,WATER,NA,6/5/2013,6:31:00,EST,NA,NA,NA,18.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.51,7.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:31,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_13.3_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.58,6.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_2.6_P,Field Msr/Obs,WATER,NA,10/12/2010,5:24:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.51,14.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:24,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_10.5_P,Field Msr/Obs,WATER,NA,5/29/2014,3:11:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.28,14.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:11,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_13.3_P,Field Msr/Obs,WATER,NA,10/16/2014,2:00:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.06,13.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_11.9_P,Field Msr/Obs,WATER,NA,6/4/2013,3:52:00,EST,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.15,13.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:52,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_45.1_P,Field Msr/Obs,WATER,NA,10/16/2014,11:45:00,EST,NA,NA,NA,45.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.69,7.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_11.8_P,Field Msr/Obs,WATER,NA,10/16/2014,12:49:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.12,13.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:49,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_26.6_P,Field Msr/Obs,WATER,NA,5/29/2014,1:24:00,EST,NA,NA,NA,26.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.11,7.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:24,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_19.5_P,Field Msr/Obs,WATER,NA,8/4/2010,3:56:00,EST,NA,NA,NA,19.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.52,9.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:56,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20140811_1.3_P,Field Msr/Obs,WATER,NA,8/11/2014,7:21:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.7,22.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:21,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_18.4_P,Field Msr/Obs,WATER,NA,10/13/2010,12:32:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.14,13.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:32,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_4.8_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100805_0.1_P,Field Msr/Obs,WATER,NA,8/5/2010,12:03:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.6,22.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:03,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_16.5_P,Field Msr/Obs,WATER,NA,6/17/2015,2:17:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.52,9.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:17,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20101014_5_P,Field Msr/Obs,WATER,NA,10/14/2010,1:32:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.53,12.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:32,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_19.9_P,Field Msr/Obs,WATER,NA,8/11/2014,6:35:00,EST,NA,NA,NA,19.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.59,10.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:35,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20101012_0_P,Field Msr/Obs,WATER,NA,10/12/2010,2:46:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 7:46,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_4.4_P,Field Msr/Obs,WATER,NA,10/13/2010,12:22:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.62,14.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:22,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_13.5_P,Field Msr/Obs,WATER,NA,7/28/2009,10:10:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.39,13.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:10,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20100805_1.5_P,Field Msr/Obs,WATER,NA,8/5/2010,3:57:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.77,16.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:57,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_13.3_P,Field Msr/Obs,WATER,NA,10/16/2014,2:53:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.74,12.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:53,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_7.2_P,Field Msr/Obs,WATER,NA,8/12/2014,3:12:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.28,20.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:12,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_42.7_P,Field Msr/Obs,WATER,NA,10/16/2014,12:07:00,EST,NA,NA,NA,42.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.22,8.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:07,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_16.3_P,Field Msr/Obs,WATER,NA,5/29/2014,2:54:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.25,9.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:54,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_3_P,Field Msr/Obs,WATER,NA,10/15/2009,1:32:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.33,11.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:32,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_16.7_P,Field Msr/Obs,WATER,NA,8/4/2010,3:55:00,EST,NA,NA,NA,16.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.08,11.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:55,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_4.4_P,Field Msr/Obs,WATER,NA,8/7/2012,1:04:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.24,20.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_13.5_P,Field Msr/Obs,WATER,NA,8/12/2014,2:08:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.16,14.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:08,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_1.3_P,Field Msr/Obs,WATER,NA,5/28/2014,2:25:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:25,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_11.3_P,Field Msr/Obs,WATER,NA,8/4/2010,2:46:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.53,16.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_13.1_P,Field Msr/Obs,WATER,NA,10/16/2014,12:49:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.11,13.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:49,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_0.2_P,Field Msr/Obs,WATER,NA,10/15/2014,12:26:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.77,12.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:26,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_10_P,Field Msr/Obs,WATER,NA,9/13/2011,10:21:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.08,17.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:21,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_17.4_P,Field Msr/Obs,WATER,NA,8/11/2014,7:37:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.06,11.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:37,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_1.1_P,Field Msr/Obs,WATER,NA,7/28/2009,1:52:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.74,21.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:52,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_2.9_P,Field Msr/Obs,WATER,NA,10/16/2014,2:17:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.97,12.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:17,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_21.5_P,Field Msr/Obs,WATER,NA,5/10/2012,3:43:00,EST,NA,NA,NA,21.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.91,6.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_43.4_P,Field Msr/Obs,WATER,NA,8/12/2014,1:14:00,EST,NA,NA,NA,43.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.65,6.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:14,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_3.7_P,Field Msr/Obs,WATER,NA,5/28/2014,2:26:00,EST,NA,NA,NA,3.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.71,14.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:26,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_23.8_P,Field Msr/Obs,WATER,NA,8/12/2014,2:11:00,EST,NA,NA,NA,23.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.51,8.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:11,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_18.6_P,Field Msr/Obs,WATER,NA,8/4/2010,4:59:00,EST,NA,NA,NA,18.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.65,10.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:59,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20101012_1.3_P,Field Msr/Obs,WATER,NA,10/12/2010,4:49:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 9:49,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_2.9_P,Field Msr/Obs,WATER,NA,6/17/2015,2:43:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.71,17.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_13.2_P,Field Msr/Obs,WATER,NA,5/29/2014,12:41:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:41,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_21.2_P,Field Msr/Obs,WATER,NA,8/11/2014,6:35:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.28,10.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:35,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_18.7_P,Field Msr/Obs,WATER,NA,9/13/2011,9:18:00,EST,NA,NA,NA,18.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.36,17.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:18,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_5.7_P,Field Msr/Obs,WATER,NA,8/12/2014,1:30:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.41,20.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_16.1_P,Field Msr/Obs,WATER,NA,8/11/2014,12:47:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.16,19.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_25.8_P,Field Msr/Obs,WATER,NA,9/13/2011,9:53:00,EST,NA,NA,NA,25.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.51,16.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:53,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_16_P,Field Msr/Obs,WATER,NA,6/5/2013,4:35:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:35,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_1.3_P,Field Msr/Obs,WATER,NA,5/29/2014,12:38:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.17,13.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:38,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_5.9_P,Field Msr/Obs,WATER,NA,10/15/2014,1:42:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:42,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_37.1_P,Field Msr/Obs,WATER,NA,7/28/2009,12:09:00,EST,NA,NA,NA,37.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.62,6.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:09,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20140529_0.2_P,Field Msr/Obs,WATER,NA,5/29/2014,3:45:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:45,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_11_P,Field Msr/Obs,WATER,NA,10/15/2009,2:05:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.18,11.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:05,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_16.1_P,Field Msr/Obs,WATER,NA,6/2/2010,3:59:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.56,8.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:59,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_8.3_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.97,11.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20141015_2.4_P,Field Msr/Obs,WATER,NA,10/15/2014,2:20:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.68,7.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 7:20,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_2.2_P,Field Msr/Obs,WATER,NA,8/4/2010,3:43:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.19,21.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:43,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_1_P,Field Msr/Obs,WATER,NA,7/27/2009,8:02:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.48,22.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:02,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_0.6_P,Field Msr/Obs,WATER,NA,5/29/2014,1:16:00,EST,NA,NA,NA,0.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.91,13.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:16,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_6_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_11.8_P,Field Msr/Obs,WATER,NA,7/28/2009,7:00:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.33,14.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_10.7_P,Field Msr/Obs,WATER,NA,8/11/2014,7:35:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.48,19.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:35,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_7.1_P,Field Msr/Obs,WATER,NA,8/7/2012,10:53:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.56,19.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_3.3_P,Field Msr/Obs,WATER,NA,5/29/2014,3:09:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.79,14.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:09,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_0.3_P,Field Msr/Obs,WATER,NA,8/11/2014,6:31:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.35,22.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090728_3.7_P,Field Msr/Obs,WATER,NA,7/28/2009,8:47:00,EST,NA,NA,NA,3.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.2,21.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 13:47,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_7.3_P,Field Msr/Obs,WATER,NA,6/17/2015,4:08:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.32,16.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:08,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_4.3_P,Field Msr/Obs,WATER,NA,5/10/2012,2:55:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.82,9.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_24.3_P,Field Msr/Obs,WATER,NA,8/4/2010,3:58:00,EST,NA,NA,NA,24.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.51,8.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:58,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_28.6_P,Field Msr/Obs,WATER,NA,5/10/2012,3:02:00,EST,NA,NA,NA,28.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.12,5.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:02,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_10.8_P,Field Msr/Obs,WATER,NA,7/28/2009,1:57:00,EST,NA,NA,NA,10.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.38,17.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_21_P,Field Msr/Obs,WATER,NA,10/14/2009,9:12:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.01,8.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:12,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_1_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.38,21.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_29_P,Field Msr/Obs,WATER,NA,5/29/2014,1:24:00,EST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.91,6.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:24,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_23.9_P,Field Msr/Obs,WATER,NA,8/12/2014,3:36:00,EST,NA,NA,NA,23.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.56,8.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:36,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_26.4_P,Field Msr/Obs,WATER,NA,10/16/2014,11:40:00,EST,NA,NA,NA,26.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.91,8.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:40,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_16_P,Field Msr/Obs,WATER,NA,8/12/2014,1:08:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.78,12.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:08,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_0.1_P,Field Msr/Obs,WATER,NA,10/16/2014,1:56:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.46,14.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:56,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_22.4_P,Field Msr/Obs,WATER,NA,5/29/2014,11:51:00,EST,NA,NA,NA,22.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.86,6.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:51,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_25_P,Field Msr/Obs,WATER,NA,10/14/2010,8:27:00,EST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.71,8.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:27,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_3.1_P,Field Msr/Obs,WATER,NA,5/29/2014,11:46:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.64,12.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:46,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_18_P,Field Msr/Obs,WATER,NA,7/28/2009,10:47:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.23,9.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:47,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_28.5_P,Field Msr/Obs,WATER,NA,8/11/2014,12:52:00,EST,NA,NA,NA,28.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.81,15.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_9.7_P,Field Msr/Obs,WATER,NA,6/17/2015,4:31:00,EST,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.52,15.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:31,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_14.3_P,Field Msr/Obs,WATER,NA,8/12/2014,1:07:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.48,14.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:07,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_4.3_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_4.2_P,Field Msr/Obs,WATER,NA,6/5/2013,4:31:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.98,12.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:31,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_5_P,Field Msr/Obs,WATER,NA,6/5/2013,6:50:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.83,11.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_38.8_P,Field Msr/Obs,WATER,NA,5/29/2014,11:54:00,EST,NA,NA,NA,38.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.29,6.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_12_P,Field Msr/Obs,WATER,NA,5/29/2014,3:11:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.44,13.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:11,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_17.8_P,Field Msr/Obs,WATER,NA,10/14/2009,5:53:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.18,9.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:53,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_4.4_P,Field Msr/Obs,WATER,NA,10/15/2014,1:41:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.52,12.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:41,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_11.9_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.98,11.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_21.3_P,Field Msr/Obs,WATER,NA,9/12/2011,7:32:00,EST,NA,NA,NA,21.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:32,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140811_4.9_P,Field Msr/Obs,WATER,NA,8/11/2014,5:24:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.09,21.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:24,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_13.3_P,Field Msr/Obs,WATER,NA,6/16/2015,12:35:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.69,16.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:35,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_24.7_P,Field Msr/Obs,WATER,NA,10/16/2014,11:39:00,EST,NA,NA,NA,24.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.05,9.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:39,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_10.9_P,Field Msr/Obs,WATER,NA,5/28/2014,2:27:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.79,12.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:27,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_19_P,Field Msr/Obs,WATER,NA,10/14/2009,9:09:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:09,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_3.8_P,Field Msr/Obs,WATER,NA,8/7/2012,1:04:00,EST,NA,NA,NA,3.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.27,20.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_36.3_P,Field Msr/Obs,WATER,NA,10/16/2014,12:58:00,EST,NA,NA,NA,36.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.48,8.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:58,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_18.5_P,Field Msr/Obs,WATER,NA,8/4/2010,3:55:00,EST,NA,NA,NA,18.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.03,10.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:55,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_8_P,Field Msr/Obs,WATER,NA,10/14/2009,9:41:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.95,9.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:41,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20091014_3.3_P,Field Msr/Obs,WATER,NA,10/14/2009,3:34:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.46,10.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:34,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_21.2_P,Field Msr/Obs,WATER,NA,5/29/2014,11:51:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.26,7.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:51,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_0.1_P,Field Msr/Obs,WATER,NA,8/12/2014,3:30:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.43,21.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:30,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_7.4_P,Field Msr/Obs,WATER,NA,8/12/2014,3:32:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.42,20.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:32,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_20.6_P,Field Msr/Obs,WATER,NA,5/29/2014,1:23:00,EST,NA,NA,NA,20.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.61,7.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:23,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20100601_0_P,Field Msr/Obs,WATER,NA,6/1/2010,6:10:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.09,15.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 11:10,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_0.1_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.28,16.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_3.8_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,3.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.44,10.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_30.6_P,Field Msr/Obs,WATER,NA,8/5/2010,2:21:00,EST,NA,NA,NA,30.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.51,12.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_7.9_P,Field Msr/Obs,WATER,NA,9/24/2013,8:48:00,EST,NA,NA,NA,7.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_10.7_P,Field Msr/Obs,WATER,NA,8/4/2010,3:48:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.48,17.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:48,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_0.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:21:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.16,11.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:21,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_10.5_P,Field Msr/Obs,WATER,NA,5/29/2014,1:19:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.68,12.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:19,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_26_P,Field Msr/Obs,WATER,NA,5/29/2014,12:47:00,EST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.54,7.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_21.1_P,Field Msr/Obs,WATER,NA,9/13/2011,9:52:00,EST,NA,NA,NA,21.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.79,16.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:52,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_34.5_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,34.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.61,6.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_1.6_P,Field Msr/Obs,WATER,NA,10/15/2014,12:26:00,EST,NA,NA,NA,1.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.76,12.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:26,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_12.1_P,Field Msr/Obs,WATER,NA,5/29/2014,2:52:00,EST,NA,NA,NA,12.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.88,11.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:52,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_10.3_P,Field Msr/Obs,WATER,NA,8/4/2010,4:55:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.21,17.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20141015_0.2_P,Field Msr/Obs,WATER,NA,10/15/2014,5:04:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.27,12.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:04,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_3.1_P,Field Msr/Obs,WATER,NA,5/28/2014,3:09:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.92,14.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:09,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_47.3_P,Field Msr/Obs,WATER,NA,6/17/2015,2:24:00,EST,NA,NA,NA,47.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.72,5.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:24,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_15.8_P,Field Msr/Obs,WATER,NA,6/16/2015,6:40:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.11,9.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:40,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_12.2_P,Field Msr/Obs,WATER,NA,8/12/2014,2:07:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.96,14.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:07,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_20.3_P,Field Msr/Obs,WATER,NA,9/12/2011,7:31:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.21,13.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:31,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_25.4_P,Field Msr/Obs,WATER,NA,10/16/2014,11:40:00,EST,NA,NA,NA,25.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.96,8.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:40,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_11.5_P,Field Msr/Obs,WATER,NA,8/4/2010,4:55:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.71,16.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_11_P,Field Msr/Obs,WATER,NA,8/11/2014,7:35:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.25,19.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:35,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_14_P,Field Msr/Obs,WATER,NA,5/29/2014,11:49:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.15,9.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_11.5_P,Field Msr/Obs,WATER,NA,8/7/2012,10:55:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.41,15.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_28_P,Field Msr/Obs,WATER,NA,7/28/2009,2:09:00,EST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.11,7.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:09,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_31.7_P,Field Msr/Obs,WATER,NA,5/29/2014,1:25:00,EST,NA,NA,NA,31.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.86,6.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:25,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_18.6_P,Field Msr/Obs,WATER,NA,8/5/2010,11:44:00,EST,NA,NA,NA,18.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.27,10.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:44,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_28.3_P,Field Msr/Obs,WATER,NA,6/16/2015,11:51:00,EST,NA,NA,NA,28.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.51,11.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:51,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_12.9_P,Field Msr/Obs,WATER,NA,6/17/2015,4:32:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.31,13.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:32,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_37_P,Field Msr/Obs,WATER,NA,10/15/2009,4:28:00,EST,NA,NA,NA,37,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.32,7.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:28,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_28_P,Field Msr/Obs,WATER,NA,10/14/2010,9:25:00,EST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.38,8.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:25,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_5_P,Field Msr/Obs,WATER,NA,10/15/2009,4:17:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.39,12.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:17,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_17_P,Field Msr/Obs,WATER,NA,5/29/2014,2:54:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.07,9.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:54,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090518_0.4_P,Field Msr/Obs,WATER,NA,5/18/2009,7:02:00,EST,NA,NA,NA,0.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:02,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140528_1_P,Field Msr/Obs,WATER,NA,5/28/2014,6:41:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.54,16.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 11:41,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_12_P,Field Msr/Obs,WATER,NA,9/13/2011,10:21:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.01,17.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:21,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_9.8_P,Field Msr/Obs,WATER,NA,5/10/2012,2:56:00,EST,NA,NA,NA,9.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.34,8.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_5.5_P,Field Msr/Obs,WATER,NA,9/12/2011,7:20:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.48,18.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:20,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_1.3_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.79,13.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_20.7_P,Field Msr/Obs,WATER,NA,9/24/2013,11:17:00,EST,NA,NA,NA,20.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.73,9.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:17,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20150616_2.3_P,Field Msr/Obs,WATER,NA,6/16/2015,5:17:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.77,17.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 10:17,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_1.5_P,Field Msr/Obs,WATER,NA,10/16/2014,12:46:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.36,13.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:46,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20121009_0.1_P,Field Msr/Obs,WATER,NA,10/9/2012,6:46:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.91,8.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 11:46,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_6.9_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,6.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_6.5_P,Field Msr/Obs,WATER,NA,7/27/2009,8:08:00,EST,NA,NA,NA,6.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.8,20.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:08,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_0.3_P,Field Msr/Obs,WATER,NA,5/11/2012,11:07:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.99,12.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:07,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_37.6_P,Field Msr/Obs,WATER,NA,8/12/2014,1:13:00,EST,NA,NA,NA,37.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:13,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_0.9_P,Field Msr/Obs,WATER,NA,6/16/2015,6:01:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.46,18.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:01,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_9.4_P,Field Msr/Obs,WATER,NA,10/12/2010,3:55:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.06,14.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:55,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_19_P,Field Msr/Obs,WATER,NA,8/11/2014,12:48:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.65,18.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:48,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_16.4_P,Field Msr/Obs,WATER,NA,5/29/2014,12:45:00,EST,NA,NA,NA,16.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.36,8.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_7.6_P,Field Msr/Obs,WATER,NA,7/28/2009,6:39:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.32,19.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:39,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_40.8_P,Field Msr/Obs,WATER,NA,7/28/2009,2:12:00,EST,NA,NA,NA,40.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.89,5.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:12,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_19.3_P,Field Msr/Obs,WATER,NA,6/16/2015,12:37:00,EST,NA,NA,NA,19.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.85,13.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:37,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_6_P,Field Msr/Obs,WATER,NA,5/11/2012,9:33:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.64,9.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:33,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_13.6_P,Field Msr/Obs,WATER,NA,9/24/2013,11:14:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.79,12.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:14,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_5.8_P,Field Msr/Obs,WATER,NA,10/10/2012,3:57:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.82,12.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:57,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_34.4_P,Field Msr/Obs,WATER,NA,8/12/2014,1:13:00,EST,NA,NA,NA,34.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.18,7.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:13,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_34_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,34,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.99,5.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_9.6_P,Field Msr/Obs,WATER,NA,7/28/2009,12:47:00,EST,NA,NA,NA,9.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_34.4_P,Field Msr/Obs,WATER,NA,8/12/2014,1:37:00,EST,NA,NA,NA,34.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.25,7.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:37,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_10.3_P,Field Msr/Obs,WATER,NA,10/15/2014,1:43:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.11,12.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:43,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_5.5_P,Field Msr/Obs,WATER,NA,10/12/2010,6:02:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:02,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_10.7_P,Field Msr/Obs,WATER,NA,8/11/2014,1:37:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.59,19.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:37,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_10.7_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.54,16.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_17.7_P,Field Msr/Obs,WATER,NA,6/16/2015,12:36:00,EST,NA,NA,NA,17.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:36,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_6.4_P,Field Msr/Obs,WATER,NA,10/12/2010,3:55:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.19,14.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:55,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_11.3_P,Field Msr/Obs,WATER,NA,5/29/2014,1:19:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.06,12.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:19,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_8.9_P,Field Msr/Obs,WATER,NA,8/12/2014,3:32:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.33,19.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:32,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_18.1_P,Field Msr/Obs,WATER,NA,8/12/2014,2:09:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.73,11.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:09,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_16.2_P,Field Msr/Obs,WATER,NA,7/28/2009,9:24:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.19,10.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:24,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_12.3_P,Field Msr/Obs,WATER,NA,5/29/2014,2:23:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.74,12.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:23,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_4.1_P,Field Msr/Obs,WATER,NA,5/9/2012,2:46:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.17,10.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_11.1_P,Field Msr/Obs,WATER,NA,5/28/2014,2:27:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.83,12.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:27,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_23.1_P,Field Msr/Obs,WATER,NA,8/12/2014,3:15:00,EST,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.27,9.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:15,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_24.9_P,Field Msr/Obs,WATER,NA,10/16/2014,12:04:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.28,10.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:04,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_7.4_P,Field Msr/Obs,WATER,NA,10/15/2014,12:28:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.66,12.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:28,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_1.9_P,Field Msr/Obs,WATER,NA,8/11/2014,7:33:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.85,20.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:33,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_40.8_P,Field Msr/Obs,WATER,NA,10/16/2014,11:43:00,EST,NA,NA,NA,40.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.79,7.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:43,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_16.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:29:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.48,9.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:29,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_4.1_P,Field Msr/Obs,WATER,NA,10/14/2010,3:12:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.15,13.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:12,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_18.4_P,Field Msr/Obs,WATER,NA,8/11/2014,6:35:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:35,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_18.9_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.87,6.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20140528_2.9_P,Field Msr/Obs,WATER,NA,5/28/2014,3:52:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.76,14.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:52,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_11.7_P,Field Msr/Obs,WATER,NA,10/16/2014,1:32:00,EST,NA,NA,NA,11.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.01,13.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:32,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_17.3_P,Field Msr/Obs,WATER,NA,6/5/2013,5:10:00,EST,NA,NA,NA,17.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.66,8.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_9_P,Field Msr/Obs,WATER,NA,6/17/2015,3:26:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.98,15.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:26,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_12.2_P,Field Msr/Obs,WATER,NA,8/11/2014,1:38:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.57,19.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:38,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_14.6_P,Field Msr/Obs,WATER,NA,5/28/2014,7:47:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.21,9.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:47,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_1.4_P,Field Msr/Obs,WATER,NA,9/13/2011,9:48:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.46,17.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:48,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_8.2_P,Field Msr/Obs,WATER,NA,7/28/2009,9:10:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:10,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_5.7_P,Field Msr/Obs,WATER,NA,10/16/2014,1:58:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.08,13.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:58,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_10.5_P,Field Msr/Obs,WATER,NA,10/16/2014,2:52:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.74,12.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_31.4_P,Field Msr/Obs,WATER,NA,8/12/2014,1:12:00,EST,NA,NA,NA,31.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.46,7.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:12,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_9.3_P,Field Msr/Obs,WATER,NA,5/11/2012,9:34:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.52,9.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:34,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090520_0_P,Field Msr/Obs,WATER,NA,5/20/2009,6:05:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.14,12.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/20/2009 11:05,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_20.2_P,Field Msr/Obs,WATER,NA,10/16/2014,1:34:00,EST,NA,NA,NA,20.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.91,12.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_6.1_P,Field Msr/Obs,WATER,NA,6/16/2015,4:56:00,EST,NA,NA,NA,6.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.38,16.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:56,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_16.1_P,Field Msr/Obs,WATER,NA,10/16/2014,11:37:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.39,13.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:37,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_32.3_P,Field Msr/Obs,WATER,NA,10/16/2014,12:55:00,EST,NA,NA,NA,32.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.62,8.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20150616_3.5_P,Field Msr/Obs,WATER,NA,6/16/2015,5:17:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.77,17.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 10:17,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_35.1_P,Field Msr/Obs,WATER,NA,10/16/2014,12:57:00,EST,NA,NA,NA,35.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.51,8.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:57,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_38.1_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,38.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.64,5.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_13.4_P,Field Msr/Obs,WATER,NA,10/11/2012,9:54:00,EST,NA,NA,NA,13.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.78,11.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:54,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_13_P,Field Msr/Obs,WATER,NA,6/5/2013,6:57:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:57,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20140811_0_P,Field Msr/Obs,WATER,NA,8/11/2014,2:43:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.65,21.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 7:43,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_14.8_P,Field Msr/Obs,WATER,NA,9/23/2013,3:02:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.87,14.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 8:02,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_12.7_P,Field Msr/Obs,WATER,NA,8/12/2014,1:31:00,EST,NA,NA,NA,12.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.23,17.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_40.6_P,Field Msr/Obs,WATER,NA,10/16/2014,12:07:00,EST,NA,NA,NA,40.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.33,8.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:07,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_21.4_P,Field Msr/Obs,WATER,NA,8/12/2014,1:11:00,EST,NA,NA,NA,21.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.99,8.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:11,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_23.6_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,23.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.99,7.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_16.2_P,Field Msr/Obs,WATER,NA,10/16/2014,2:20:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:20,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_18_P,Field Msr/Obs,WATER,NA,10/16/2014,12:50:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:50,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_15.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:08:00,EST,NA,NA,NA,15.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.35,10.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:08,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20141015_7.4_P,Field Msr/Obs,WATER,NA,10/15/2014,5:06:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.99,11.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:06,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_8_P,Field Msr/Obs,WATER,NA,8/11/2014,7:34:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.52,20.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:34,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_2.6_P,Field Msr/Obs,WATER,NA,5/10/2012,3:38:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.38,8.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:38,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_4.5_P,Field Msr/Obs,WATER,NA,10/16/2014,12:01:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.34,13.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:01,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_14.7_P,Field Msr/Obs,WATER,NA,8/12/2014,3:34:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.23,14.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:34,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_20.8_P,Field Msr/Obs,WATER,NA,6/17/2015,3:29:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.52,8.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:29,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_20.7_P,Field Msr/Obs,WATER,NA,6/17/2015,4:12:00,EST,NA,NA,NA,20.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.02,8.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:12,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_12.2_P,Field Msr/Obs,WATER,NA,6/17/2015,2:15:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_7_P,Field Msr/Obs,WATER,NA,6/17/2015,4:30:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.76,16.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:30,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_1.4_P,Field Msr/Obs,WATER,NA,8/12/2014,1:03:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.17,21.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:03,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_1_P,Field Msr/Obs,WATER,NA,7/28/2009,11:38:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.3,21.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:38,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_11.4_P,Field Msr/Obs,WATER,NA,6/5/2013,6:28:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.67,8.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:28,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_18.8_P,Field Msr/Obs,WATER,NA,6/17/2015,2:18:00,EST,NA,NA,NA,18.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.32,8.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:18,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_41.6_P,Field Msr/Obs,WATER,NA,5/10/2012,3:48:00,EST,NA,NA,NA,41.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.07,5.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_32.6_P,Field Msr/Obs,WATER,NA,8/11/2014,12:55:00,EST,NA,NA,NA,32.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:55,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_5.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:12:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.19,17.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:12,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_30.9_P,Field Msr/Obs,WATER,NA,6/5/2013,5:17:00,EST,NA,NA,NA,30.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.32,6.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:17,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_8_P,Field Msr/Obs,WATER,NA,5/29/2014,2:21:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:21,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_6.3_P,Field Msr/Obs,WATER,NA,5/29/2014,1:17:00,EST,NA,NA,NA,6.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.18,13.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:17,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_15.6_P,Field Msr/Obs,WATER,NA,10/12/2010,6:07:00,EST,NA,NA,NA,15.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.65,11.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:07,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_14.7_P,Field Msr/Obs,WATER,NA,6/5/2013,5:08:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.53,10.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:08,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_44.8_P,Field Msr/Obs,WATER,NA,10/16/2014,11:45:00,EST,NA,NA,NA,44.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.59,7.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_12.3_P,Field Msr/Obs,WATER,NA,10/14/2010,2:21:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.19,13.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:21,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_13.9_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,13.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120511_0.2_P,Field Msr/Obs,WATER,NA,5/11/2012,11:34:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.19,14.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:34,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_17.4_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.13,8.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_7.4_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.64,18.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20080515_0.1_P,Field Msr/Obs,WATER,NA,5/15/2008,10:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.54,10.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 15:00,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_13.3_P,Field Msr/Obs,WATER,NA,10/16/2014,2:19:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.82,12.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:19,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080723_18.5_P,Field Msr/Obs,WATER,NA,7/23/2008,7:15:00,EST,NA,NA,NA,18.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_14.1_P,Field Msr/Obs,WATER,NA,8/12/2014,3:13:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:13,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_14.1_P,Field Msr/Obs,WATER,NA,6/16/2015,12:35:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.49,16.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:35,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_15_P,Field Msr/Obs,WATER,NA,10/15/2009,3:24:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.01,12.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_5.7_P,Field Msr/Obs,WATER,NA,5/29/2014,12:39:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.59,12.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_22_P,Field Msr/Obs,WATER,NA,9/12/2011,7:33:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.31,11.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_6.5_P,Field Msr/Obs,WATER,NA,5/29/2014,2:21:00,EST,NA,NA,NA,6.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.19,13.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:21,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_5.6_P,Field Msr/Obs,WATER,NA,8/12/2014,3:11:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.31,20.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:11,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_7.8_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,7.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.48,18.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_13.4_P,Field Msr/Obs,WATER,NA,5/28/2014,1:45:00,EST,NA,NA,NA,13.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.78,11.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_19.8_P,Field Msr/Obs,WATER,NA,10/14/2010,8:25:00,EST,NA,NA,NA,19.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:25,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_13.5_P,Field Msr/Obs,WATER,NA,10/12/2010,3:57:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.87,13.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:57,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_25.1_P,Field Msr/Obs,WATER,NA,10/16/2014,12:53:00,EST,NA,NA,NA,25.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.56,10.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_1.8_P,Field Msr/Obs,WATER,NA,5/11/2012,10:33:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.17,10.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_15.3_P,Field Msr/Obs,WATER,NA,5/29/2014,3:13:00,EST,NA,NA,NA,15.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.83,9.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:13,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_7.1_P,Field Msr/Obs,WATER,NA,10/15/2009,4:18:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.39,12.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:18,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_15.4_P,Field Msr/Obs,WATER,NA,8/5/2010,11:22:00,EST,NA,NA,NA,15.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.07,13.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:22,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_7.3_P,Field Msr/Obs,WATER,NA,9/10/2009,12:07:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.87,17.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:07,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_4_P,Field Msr/Obs,WATER,NA,5/29/2014,12:39:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.89,12.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_6.1_P,Field Msr/Obs,WATER,NA,9/11/2009,11:05:00,EST,NA,NA,NA,6.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.92,18.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:05,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_2.3_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.78,9.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_33.4_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,33.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.54,6.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_15_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.44,7.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_37.3_P,Field Msr/Obs,WATER,NA,7/28/2009,2:11:00,EST,NA,NA,NA,37.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.03,6.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:11,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20101014_3_P,Field Msr/Obs,WATER,NA,10/14/2010,1:31:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.83,12.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:31,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_18.5_P,Field Msr/Obs,WATER,NA,10/11/2012,9:24:00,EST,NA,NA,NA,18.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.68,9.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:24,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_29.5_P,Field Msr/Obs,WATER,NA,10/15/2014,12:32:00,EST,NA,NA,NA,29.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.05,11.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:32,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_27.3_P,Field Msr/Obs,WATER,NA,8/12/2014,1:12:00,EST,NA,NA,NA,27.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:12,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20091014_2.1_P,Field Msr/Obs,WATER,NA,10/14/2009,5:15:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.99,8.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:15,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_36.3_P,Field Msr/Obs,WATER,NA,8/12/2014,2:13:00,EST,NA,NA,NA,36.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.32,7.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:13,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_24_P,Field Msr/Obs,WATER,NA,10/16/2014,12:52:00,EST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.08,12.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:52,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_0.1_P,Field Msr/Obs,WATER,NA,10/14/2009,3:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.64,10.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:00,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090727_4_P,Field Msr/Obs,WATER,NA,7/27/2009,7:46:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.48,21.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 12:46,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_19.7_P,Field Msr/Obs,WATER,NA,8/11/2014,2:01:00,EST,NA,NA,NA,19.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.41,18.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 7:01,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_29.4_P,Field Msr/Obs,WATER,NA,8/5/2010,2:21:00,EST,NA,NA,NA,29.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.43,14.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_11.7_P,Field Msr/Obs,WATER,NA,8/11/2014,12:46:00,EST,NA,NA,NA,11.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.42,19.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_3.2_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.1,20.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_43.1_P,Field Msr/Obs,WATER,NA,7/28/2009,1:13:00,EST,NA,NA,NA,43.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.23,6.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:13,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_35.1_P,Field Msr/Obs,WATER,NA,10/16/2014,11:42:00,EST,NA,NA,NA,35.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.92,7.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:42,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_2.7_P,Field Msr/Obs,WATER,NA,6/5/2013,5:02:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:02,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_2_P,Field Msr/Obs,WATER,NA,6/16/2015,4:55:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.76,16.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:55,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_10.5_P,Field Msr/Obs,WATER,NA,5/9/2012,2:49:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.96,9.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:49,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_32.8_P,Field Msr/Obs,WATER,NA,5/10/2012,4:47:00,EST,NA,NA,NA,32.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.36,5.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:47,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_21.4_P,Field Msr/Obs,WATER,NA,10/16/2014,11:38:00,EST,NA,NA,NA,21.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.52,11.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20141015_1_P,Field Msr/Obs,WATER,NA,10/15/2014,5:24:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.36,10.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:24,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_13.6_P,Field Msr/Obs,WATER,NA,5/29/2014,3:12:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.14,12.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:12,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_6_P,Field Msr/Obs,WATER,NA,6/16/2015,12:33:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.22,17.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:33,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_17.4_P,Field Msr/Obs,WATER,NA,10/10/2012,1:50:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.92,12.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20141015_9_P,Field Msr/Obs,WATER,NA,10/15/2014,5:06:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.19,11.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:06,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_11.6_P,Field Msr/Obs,WATER,NA,8/12/2014,2:07:00,EST,NA,NA,NA,11.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.48,16.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:07,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_14.4_P,Field Msr/Obs,WATER,NA,10/15/2014,1:43:00,EST,NA,NA,NA,14.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.55,11.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:43,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_7.6_P,Field Msr/Obs,WATER,NA,8/11/2014,12:44:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.29,20.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:44,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_31_P,Field Msr/Obs,WATER,NA,8/12/2014,1:36:00,EST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.52,7.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:36,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_4.8_P,Field Msr/Obs,WATER,NA,5/29/2014,1:17:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.46,13.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:17,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_13.2_P,Field Msr/Obs,WATER,NA,5/28/2014,2:29:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.11,11.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:29,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_33.8_P,Field Msr/Obs,WATER,NA,10/16/2014,12:55:00,EST,NA,NA,NA,33.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.56,8.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_5.2_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,5.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.95,12.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20080515_1_P,Field Msr/Obs,WATER,NA,5/15/2008,8:15:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.22,8.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 13:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_10.7_P,Field Msr/Obs,WATER,NA,6/4/2013,8:31:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.87,8.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_15.4_P,Field Msr/Obs,WATER,NA,8/11/2014,6:34:00,EST,NA,NA,NA,15.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.23,13.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_11_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.58,14.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_10.2_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.51,13.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_14.4_P,Field Msr/Obs,WATER,NA,6/5/2013,7:17:00,EST,NA,NA,NA,14.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.25,8.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:17,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20140528_2.1_P,Field Msr/Obs,WATER,NA,5/28/2014,7:10:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.28,16.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:10,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_12.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:06:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.26,16.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:06,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_1_P,Field Msr/Obs,WATER,NA,7/28/2009,12:43:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.34,21.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20130604_0.5_P,Field Msr/Obs,WATER,NA,6/4/2013,7:56:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.65,17.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:56,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_12.3_P,Field Msr/Obs,WATER,NA,5/10/2012,4:40:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.29,8.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:40,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130924_5.5_P,Field Msr/Obs,WATER,NA,9/24/2013,1:26:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.13,13.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:26,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_1.2_P,Field Msr/Obs,WATER,NA,10/12/2010,5:24:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.96,14.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:24,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20141015_5.9_P,Field Msr/Obs,WATER,NA,10/15/2014,5:05:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.17,12.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:05,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_2_P,Field Msr/Obs,WATER,NA,10/9/2012,2:58:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.49,12.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_7.2_P,Field Msr/Obs,WATER,NA,9/23/2013,1:41:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.72,16.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_2.7_P,Field Msr/Obs,WATER,NA,10/14/2010,9:50:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.42,14.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:50,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_5.6_P,Field Msr/Obs,WATER,NA,8/11/2014,12:44:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.55,20.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:44,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_40.8_P,Field Msr/Obs,WATER,NA,6/17/2015,2:55:00,EST,NA,NA,NA,40.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.21,6.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:55,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_48.1_P,Field Msr/Obs,WATER,NA,8/12/2014,1:15:00,EST,NA,NA,NA,48.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20140528_2.7_P,Field Msr/Obs,WATER,NA,5/28/2014,3:52:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.76,14.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:52,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_35.8_P,Field Msr/Obs,WATER,NA,8/12/2014,1:38:00,EST,NA,NA,NA,35.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.17,7.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:38,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_20.5_P,Field Msr/Obs,WATER,NA,5/9/2012,2:52:00,EST,NA,NA,NA,20.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.86,8.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_17.4_P,Field Msr/Obs,WATER,NA,8/5/2010,2:51:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.15,18.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:51,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20080515_1.8_P,Field Msr/Obs,WATER,NA,5/15/2008,10:00:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.02,10.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 15:00,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_5.2_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,5.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.56,9.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20140811_0.8_P,Field Msr/Obs,WATER,NA,8/11/2014,7:21:00,EST,NA,NA,NA,0.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.85,22.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:21,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20141015_10.1_P,Field Msr/Obs,WATER,NA,10/15/2014,5:06:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:06,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_31.9_P,Field Msr/Obs,WATER,NA,10/16/2014,11:41:00,EST,NA,NA,NA,31.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.24,8.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:41,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_29.4_P,Field Msr/Obs,WATER,NA,6/17/2015,2:21:00,EST,NA,NA,NA,29.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.72,6.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:21,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_13_P,Field Msr/Obs,WATER,NA,10/14/2009,4:27:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.58,10.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:27,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_16_P,Field Msr/Obs,WATER,NA,10/15/2014,1:44:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.54,11.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:44,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_1_P,Field Msr/Obs,WATER,NA,8/6/2012,2:53:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.84,19.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:53,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_8.9_P,Field Msr/Obs,WATER,NA,10/16/2014,12:48:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.13,13.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:48,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_1.6_P,Field Msr/Obs,WATER,NA,6/16/2015,12:31:00,EST,NA,NA,NA,1.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.14,18.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:31,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_11_P,Field Msr/Obs,WATER,NA,8/12/2014,2:06:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.31,18.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:06,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_4.4_P,Field Msr/Obs,WATER,NA,10/16/2014,2:51:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_6_P,Field Msr/Obs,WATER,NA,5/28/2014,1:43:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.63,13.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:43,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130924_5.6_P,Field Msr/Obs,WATER,NA,9/24/2013,1:27:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.13,13.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:27,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_13.5_P,Field Msr/Obs,WATER,NA,9/13/2011,10:22:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.71,16.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:22,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_1.3_P,Field Msr/Obs,WATER,NA,10/11/2012,9:17:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.64,12.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:17,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_13.2_P,Field Msr/Obs,WATER,NA,10/15/2014,1:43:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:43,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_3_P,Field Msr/Obs,WATER,NA,8/12/2014,3:31:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.35,21.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:31,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_24.6_P,Field Msr/Obs,WATER,NA,10/15/2009,3:26:00,EST,NA,NA,NA,24.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.89,8.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_0.9_P,Field Msr/Obs,WATER,NA,5/9/2012,2:45:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.62,10.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:45,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_1.6_P,Field Msr/Obs,WATER,NA,9/11/2009,11:06:00,EST,NA,NA,NA,1.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.07,19.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:06,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_5.4_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,5.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_0.1_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.26,8.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_21.9_P,Field Msr/Obs,WATER,NA,9/23/2013,2:35:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.22,15.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:35,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_12_P,Field Msr/Obs,WATER,NA,8/12/2014,2:07:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.64,15.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:07,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_10.6_P,Field Msr/Obs,WATER,NA,6/16/2015,6:03:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.75,14.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:03,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_8.7_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_17.4_P,Field Msr/Obs,WATER,NA,8/4/2010,4:58:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.53,11.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:58,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_15.5_P,Field Msr/Obs,WATER,NA,10/14/2009,9:07:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.53,10.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:07,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20080515_2.2_P,Field Msr/Obs,WATER,NA,5/15/2008,9:00:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.18,8.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_16.1_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.92,6.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_22.4_P,Field Msr/Obs,WATER,NA,5/29/2014,2:55:00,EST,NA,NA,NA,22.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.05,8.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:55,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_9.7_P,Field Msr/Obs,WATER,NA,5/28/2014,2:27:00,EST,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.31,13.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:27,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_32.2_P,Field Msr/Obs,WATER,NA,8/11/2014,12:54:00,EST,NA,NA,NA,32.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.53,12.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:54,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_20.7_P,Field Msr/Obs,WATER,NA,10/10/2012,3:02:00,EST,NA,NA,NA,20.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_15_P,Field Msr/Obs,WATER,NA,9/24/2013,10:54:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.91,9.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:54,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_21.9_P,Field Msr/Obs,WATER,NA,5/29/2014,2:26:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.71,7.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:26,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_12_P,Field Msr/Obs,WATER,NA,7/28/2009,12:49:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.25,16.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:49,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_1.8_P,Field Msr/Obs,WATER,NA,8/11/2014,1:58:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.67,19.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_17.9_P,Field Msr/Obs,WATER,NA,8/4/2010,2:48:00,EST,NA,NA,NA,17.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_2_P,Field Msr/Obs,WATER,NA,5/29/2014,2:50:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.19,14.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_1.1_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.86,11.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_10.4_P,Field Msr/Obs,WATER,NA,10/14/2010,9:21:00,EST,NA,NA,NA,10.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.29,14.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:21,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_5.9_P,Field Msr/Obs,WATER,NA,8/12/2014,1:04:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.83,20.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:04,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_5.1_P,Field Msr/Obs,WATER,NA,10/14/2009,9:00:00,EST,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.97,10.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_18.6_P,Field Msr/Obs,WATER,NA,7/28/2009,2:06:00,EST,NA,NA,NA,18.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:06,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_10.1_P,Field Msr/Obs,WATER,NA,10/10/2012,4:22:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.68,12.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:22,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_41.2_P,Field Msr/Obs,WATER,NA,10/10/2012,1:56:00,EST,NA,NA,NA,41.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.86,5.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_2.6_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.21,21.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_17.4_P,Field Msr/Obs,WATER,NA,8/7/2012,1:07:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:07,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_1_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.77,7.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_4.2_P,Field Msr/Obs,WATER,NA,6/5/2013,5:02:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.87,12.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:02,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_7.8_P,Field Msr/Obs,WATER,NA,6/16/2015,11:47:00,EST,NA,NA,NA,7.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.13,17.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_23_P,Field Msr/Obs,WATER,NA,10/16/2014,11:39:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.26,9.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:39,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_7_P,Field Msr/Obs,WATER,NA,8/7/2012,11:55:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.23,20.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_8_P,Field Msr/Obs,WATER,NA,8/5/2010,2:49:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.99,19.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:49,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20140811_2.4_P,Field Msr/Obs,WATER,NA,8/11/2014,7:21:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.41,22.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:21,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_10.8_P,Field Msr/Obs,WATER,NA,5/29/2014,2:51:00,EST,NA,NA,NA,10.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.82,12.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:51,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_20.8_P,Field Msr/Obs,WATER,NA,6/16/2015,12:38:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.56,12.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:38,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_3_P,Field Msr/Obs,WATER,NA,10/14/2009,9:38:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.29,10.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:38,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20080513_0.1_P,Field Msr/Obs,WATER,NA,5/13/2008,9:40:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 14:40,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_0.3_P,Field Msr/Obs,WATER,NA,5/29/2014,12:37:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.33,13.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:37,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_35_P,Field Msr/Obs,WATER,NA,5/29/2014,11:54:00,EST,NA,NA,NA,35,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.34,6.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20130923_0.6_P,Field Msr/Obs,WATER,NA,9/23/2013,4:12:00,EST,NA,NA,NA,0.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.89,13.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 9:12,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_1.2_P,Field Msr/Obs,WATER,NA,10/16/2014,2:17:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.17,13.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:17,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_15_P,Field Msr/Obs,WATER,NA,6/4/2013,2:12:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.42,13.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:12,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_11.8_P,Field Msr/Obs,WATER,NA,5/28/2014,2:28:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.67,12.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:28,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_21.8_P,Field Msr/Obs,WATER,NA,6/17/2015,2:50:00,EST,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.71,7.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_45.9_P,Field Msr/Obs,WATER,NA,6/17/2015,2:23:00,EST,NA,NA,NA,45.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.77,5.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:23,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_13.6_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.47,7.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_17.4_P,Field Msr/Obs,WATER,NA,5/11/2012,8:34:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.47,6.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_7.6_P,Field Msr/Obs,WATER,NA,10/16/2014,12:48:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.15,13.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:48,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_17.9_P,Field Msr/Obs,WATER,NA,6/5/2013,5:10:00,EST,NA,NA,NA,17.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.42,8.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_9_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.88,16.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_21_P,Field Msr/Obs,WATER,NA,8/11/2014,6:36:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.13,10.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:36,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_16.6_P,Field Msr/Obs,WATER,NA,10/14/2009,5:51:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.14,10.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_7.2_P,Field Msr/Obs,WATER,NA,10/15/2014,1:42:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.27,12.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:42,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_18_P,Field Msr/Obs,WATER,NA,10/10/2012,4:27:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.72,10.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:27,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_19.9_P,Field Msr/Obs,WATER,NA,10/14/2010,9:59:00,EST,NA,NA,NA,19.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.11,11.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:59,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120806_2.4_P,Field Msr/Obs,WATER,NA,8/6/2012,6:55:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.06,22.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 11:55,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_28_P,Field Msr/Obs,WATER,NA,10/16/2014,12:05:00,EST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.16,9.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:05,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_4.9_P,Field Msr/Obs,WATER,NA,5/29/2014,2:50:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.84,13.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_23.6_P,Field Msr/Obs,WATER,NA,10/15/2014,1:23:00,EST,NA,NA,NA,23.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.73,11.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:23,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_21_P,Field Msr/Obs,WATER,NA,8/12/2014,2:10:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.16,10.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_26.3_P,Field Msr/Obs,WATER,NA,10/16/2014,12:53:00,EST,NA,NA,NA,26.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.78,9.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_31.5_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,31.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.26,6.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_13.2_P,Field Msr/Obs,WATER,NA,10/16/2014,1:33:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.01,13.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_18.9_P,Field Msr/Obs,WATER,NA,5/28/2014,1:46:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.25,10.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_1.2_P,Field Msr/Obs,WATER,NA,5/11/2012,10:33:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.16,10.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_14.6_P,Field Msr/Obs,WATER,NA,5/29/2014,2:23:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.93,9.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:23,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_31.6_P,Field Msr/Obs,WATER,NA,10/15/2014,12:33:00,EST,NA,NA,NA,31.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.88,10.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:33,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_0.1_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_32.4_P,Field Msr/Obs,WATER,NA,5/29/2014,12:47:00,EST,NA,NA,NA,32.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.12,7.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20141015_1.4_P,Field Msr/Obs,WATER,NA,10/15/2014,5:04:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.26,12.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:04,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_0.1_P,Field Msr/Obs,WATER,NA,9/23/2013,2:27:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.81,16.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:27,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_23_P,Field Msr/Obs,WATER,NA,8/12/2014,3:15:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:15,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_11.2_P,Field Msr/Obs,WATER,NA,8/4/2010,2:45:00,EST,NA,NA,NA,11.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.03,17.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_6.8_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,6.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.41,19.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_35.5_P,Field Msr/Obs,WATER,NA,5/29/2014,1:26:00,EST,NA,NA,NA,35.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.82,6.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:26,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20110913_15.9_P,Field Msr/Obs,WATER,NA,9/13/2011,9:50:00,EST,NA,NA,NA,15.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.38,17.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:50,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_39.5_P,Field Msr/Obs,WATER,NA,5/29/2014,12:48:00,EST,NA,NA,NA,39.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.86,6.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:48,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_35.5_P,Field Msr/Obs,WATER,NA,6/17/2015,2:22:00,EST,NA,NA,NA,35.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.09,6.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:22,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_11.8_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.19,14.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_3.5_P,Field Msr/Obs,WATER,NA,5/29/2014,1:17:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.66,13.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:17,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_11_P,Field Msr/Obs,WATER,NA,5/29/2014,2:52:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:52,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_27.7_P,Field Msr/Obs,WATER,NA,8/7/2012,12:06:00,EST,NA,NA,NA,27.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:06,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_14.9_P,Field Msr/Obs,WATER,NA,5/29/2014,3:12:00,EST,NA,NA,NA,14.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.55,10.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:12,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_15.1_P,Field Msr/Obs,WATER,NA,6/17/2015,3:27:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:27,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_9.1_P,Field Msr/Obs,WATER,NA,6/4/2013,2:12:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.49,13.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:12,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_2_P,Field Msr/Obs,WATER,NA,6/16/2015,6:38:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.41,18.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:38,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_21.9_P,Field Msr/Obs,WATER,NA,10/13/2010,12:34:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.62,9.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:34,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_23.6_P,Field Msr/Obs,WATER,NA,9/23/2013,1:46:00,EST,NA,NA,NA,23.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.19,16.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_25.9_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,25.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.98,7.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_23.5_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,23.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.98,7.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_5_P,Field Msr/Obs,WATER,NA,9/10/2009,12:07:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.88,17.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:07,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140811_7.9_P,Field Msr/Obs,WATER,NA,8/11/2014,5:25:00,EST,NA,NA,NA,7.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.46,19.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:25,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_14.6_P,Field Msr/Obs,WATER,NA,10/15/2014,1:21:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.48,12.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:21,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_24.9_P,Field Msr/Obs,WATER,NA,10/15/2014,1:23:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.64,11.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:23,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_3_P,Field Msr/Obs,WATER,NA,5/28/2014,1:42:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.85,13.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:42,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080513_2.4_P,Field Msr/Obs,WATER,NA,5/13/2008,12:50:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.02,8.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130604_11.9_P,Field Msr/Obs,WATER,NA,6/4/2013,3:52:00,EST,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.15,13.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:52,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20150616_3.1_P,Field Msr/Obs,WATER,NA,6/16/2015,1:46:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.84,16.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 6:46,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_49.4_P,Field Msr/Obs,WATER,NA,6/17/2015,2:24:00,EST,NA,NA,NA,49.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.71,5.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:24,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_23.2_P,Field Msr/Obs,WATER,NA,10/15/2009,1:41:00,EST,NA,NA,NA,23.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.52,10.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:41,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_0.7_P,Field Msr/Obs,WATER,NA,5/29/2014,3:08:00,EST,NA,NA,NA,0.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.49,16.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:08,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_5.2_P,Field Msr/Obs,WATER,NA,10/15/2009,3:20:00,EST,NA,NA,NA,5.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_8.2_P,Field Msr/Obs,WATER,NA,7/28/2009,12:46:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.98,19.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_24.9_P,Field Msr/Obs,WATER,NA,8/12/2014,1:12:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.35,8.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:12,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20080723_0.1_P,Field Msr/Obs,WATER,NA,7/23/2008,8:30:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.51,20.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:30,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_9.1_P,Field Msr/Obs,WATER,NA,6/17/2015,2:46:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_5.8_P,Field Msr/Obs,WATER,NA,10/16/2014,11:35:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:35,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_8.9_P,Field Msr/Obs,WATER,NA,10/16/2014,2:52:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.75,12.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_22.8_P,Field Msr/Obs,WATER,NA,8/6/2012,2:21:00,EST,NA,NA,NA,22.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.39,16.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_7.7_P,Field Msr/Obs,WATER,NA,8/11/2014,1:37:00,EST,NA,NA,NA,7.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.68,19.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:37,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_4.1_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.18,10.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_18_P,Field Msr/Obs,WATER,NA,5/29/2014,2:24:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.46,8.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:24,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_10.5_P,Field Msr/Obs,WATER,NA,9/23/2013,3:01:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.94,15.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 8:01,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_38.6_P,Field Msr/Obs,WATER,NA,10/15/2009,3:30:00,EST,NA,NA,NA,38.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.87,7.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_35.2_P,Field Msr/Obs,WATER,NA,10/16/2014,12:06:00,EST,NA,NA,NA,35.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.45,8.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:06,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_3.4_P,Field Msr/Obs,WATER,NA,8/11/2014,6:31:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.47,21.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20141015_0_P,Field Msr/Obs,WATER,NA,10/15/2014,2:20:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.95,7.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 7:20,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_5.6_P,Field Msr/Obs,WATER,NA,5/28/2014,2:26:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.59,14.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:26,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_24.5_P,Field Msr/Obs,WATER,NA,10/16/2014,2:03:00,EST,NA,NA,NA,24.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:03,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_23.9_P,Field Msr/Obs,WATER,NA,10/13/2010,12:36:00,EST,NA,NA,NA,23.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.85,8.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:36,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_4.5_P,Field Msr/Obs,WATER,NA,10/11/2012,9:52:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.25,12.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_7_P,Field Msr/Obs,WATER,NA,6/5/2013,5:42:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.09,11.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:42,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_21.1_P,Field Msr/Obs,WATER,NA,10/9/2012,2:32:00,EST,NA,NA,NA,21.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.68,11.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:32,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_48.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:15:00,EST,NA,NA,NA,48.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.52,6.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20140811_0.2_P,Field Msr/Obs,WATER,NA,8/11/2014,7:09:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.48,23.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:09,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_14.8_P,Field Msr/Obs,WATER,NA,10/15/2014,12:29:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.43,12.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:29,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_16.2_P,Field Msr/Obs,WATER,NA,10/16/2014,2:53:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.71,12.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:53,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_14.5_P,Field Msr/Obs,WATER,NA,10/16/2014,11:36:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:36,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_13.5_P,Field Msr/Obs,WATER,NA,8/11/2014,6:33:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.31,15.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20141015_4.3_P,Field Msr/Obs,WATER,NA,10/15/2014,5:24:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.38,10.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:24,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_12.1_P,Field Msr/Obs,WATER,NA,6/4/2013,8:31:00,EST,NA,NA,NA,12.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.56,8.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_19_P,Field Msr/Obs,WATER,NA,10/16/2014,11:37:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:37,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_20.5_P,Field Msr/Obs,WATER,NA,10/16/2014,11:37:00,EST,NA,NA,NA,20.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.81,12.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:37,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_6.3_P,Field Msr/Obs,WATER,NA,5/29/2014,2:51:00,EST,NA,NA,NA,6.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.74,13.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:51,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_3_P,Field Msr/Obs,WATER,NA,10/15/2014,1:18:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:18,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_16.2_P,Field Msr/Obs,WATER,NA,10/10/2012,2:19:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.03,13.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:19,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_13_P,Field Msr/Obs,WATER,NA,10/16/2014,12:02:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:02,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_22.5_P,Field Msr/Obs,WATER,NA,9/11/2009,11:01:00,EST,NA,NA,NA,22.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:01,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_24.6_P,Field Msr/Obs,WATER,NA,10/16/2014,2:04:00,EST,NA,NA,NA,24.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.47,10.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_1.8_P,Field Msr/Obs,WATER,NA,8/12/2014,2:03:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.74,20.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:03,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_17.8_P,Field Msr/Obs,WATER,NA,10/15/2014,12:30:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:30,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_18.3_P,Field Msr/Obs,WATER,NA,8/11/2014,1:39:00,EST,NA,NA,NA,18.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.75,18.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:39,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_16.2_P,Field Msr/Obs,WATER,NA,10/15/2014,1:21:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:21,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_11_P,Field Msr/Obs,WATER,NA,10/15/2009,4:19:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:19,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_15.4_P,Field Msr/Obs,WATER,NA,10/16/2014,2:00:00,EST,NA,NA,NA,15.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.06,13.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_18.1_P,Field Msr/Obs,WATER,NA,8/11/2014,2:00:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.46,18.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 7:00,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_8.1_P,Field Msr/Obs,WATER,NA,8/7/2012,11:56:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.94,19.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:56,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_21_P,Field Msr/Obs,WATER,NA,6/16/2015,11:50:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.21,14.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:50,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_4.8_P,Field Msr/Obs,WATER,NA,5/11/2012,9:32:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.68,9.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:32,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_1.8_P,Field Msr/Obs,WATER,NA,5/10/2012,4:34:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.39,9.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:34,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090519_6_P,Field Msr/Obs,WATER,NA,5/19/2009,7:15:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.47,11.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 12:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_12.7_P,Field Msr/Obs,WATER,NA,7/28/2009,12:51:00,EST,NA,NA,NA,12.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.93,14.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:51,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_15.1_P,Field Msr/Obs,WATER,NA,6/17/2015,2:17:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.95,9.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:17,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_12.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:37:00,EST,NA,NA,NA,12.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:37,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_16.7_P,Field Msr/Obs,WATER,NA,6/4/2013,3:08:00,EST,NA,NA,NA,16.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:08,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_18.4_P,Field Msr/Obs,WATER,NA,10/10/2012,4:00:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.37,11.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:00,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_10.5_P,Field Msr/Obs,WATER,NA,5/10/2012,3:41:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:41,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_22.1_P,Field Msr/Obs,WATER,NA,6/5/2013,5:17:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.34,7.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:17,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_29.9_P,Field Msr/Obs,WATER,NA,8/11/2014,12:53:00,EST,NA,NA,NA,29.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.48,14.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:53,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_6.4_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.47,19.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_40.3_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,40.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_16.3_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.03,10.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_16.5_P,Field Msr/Obs,WATER,NA,6/17/2015,3:28:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.13,10.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:28,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_25.4_P,Field Msr/Obs,WATER,NA,9/13/2011,9:19:00,EST,NA,NA,NA,25.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.05,17.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:19,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_2.7_P,Field Msr/Obs,WATER,NA,6/5/2013,5:40:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.36,11.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:40,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_13_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.24,12.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_4.1_P,Field Msr/Obs,WATER,NA,10/14/2009,9:38:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:38,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20080515_8.4_P,Field Msr/Obs,WATER,NA,5/15/2008,9:00:00,EST,NA,NA,NA,8.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.14,8.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130604_5.7_P,Field Msr/Obs,WATER,NA,6/4/2013,7:31:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.08,16.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:31,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_2.1_P,Field Msr/Obs,WATER,NA,6/16/2015,6:02:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.02,18.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:02,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080513_0.1_P,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.89,7.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 17:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_21.9_P,Field Msr/Obs,WATER,NA,10/10/2012,2:21:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.88,8.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_9.1_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_10.9_P,Field Msr/Obs,WATER,NA,6/16/2015,6:39:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.19,12.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:39,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_16.7_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,16.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.31,10.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_20.2_P,Field Msr/Obs,WATER,NA,10/12/2010,6:11:00,EST,NA,NA,NA,20.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:11,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_7.9_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,7.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.62,8.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_8.7_P,Field Msr/Obs,WATER,NA,6/16/2015,12:57:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.47,17.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:57,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_17.2_P,Field Msr/Obs,WATER,NA,10/10/2012,2:57:00,EST,NA,NA,NA,17.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:57,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_3.9_P,Field Msr/Obs,WATER,NA,8/6/2012,3:27:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.38,19.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:27,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130924_5_P,Field Msr/Obs,WATER,NA,9/24/2013,1:24:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:24,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_14.6_P,Field Msr/Obs,WATER,NA,8/5/2010,2:51:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.56,18.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:51,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_8.6_P,Field Msr/Obs,WATER,NA,6/16/2015,12:57:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.47,17.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:57,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_24.4_P,Field Msr/Obs,WATER,NA,9/10/2009,11:15:00,EST,NA,NA,NA,24.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.99,16.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_3_P,Field Msr/Obs,WATER,NA,8/5/2010,2:48:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.25,20.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:48,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_7.4_P,Field Msr/Obs,WATER,NA,10/16/2014,2:52:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.76,12.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_9.1_P,Field Msr/Obs,WATER,NA,10/15/2009,4:19:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.39,12.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:19,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_1.9_P,Field Msr/Obs,WATER,NA,8/12/2014,1:29:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.57,21.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_8.8_P,Field Msr/Obs,WATER,NA,10/11/2012,9:19:00,EST,NA,NA,NA,8.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:19,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_34.1_P,Field Msr/Obs,WATER,NA,9/24/2013,8:58:00,EST,NA,NA,NA,34.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:58,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_17.9_P,Field Msr/Obs,WATER,NA,6/17/2015,4:11:00,EST,NA,NA,NA,17.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.09,9.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:11,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_31.3_P,Field Msr/Obs,WATER,NA,6/17/2015,3:31:00,EST,NA,NA,NA,31.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:31,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_19.1_P,Field Msr/Obs,WATER,NA,6/4/2013,3:09:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.39,13.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:09,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_7.8_P,Field Msr/Obs,WATER,NA,6/16/2015,6:03:00,EST,NA,NA,NA,7.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.44,16.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:03,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_21.8_P,Field Msr/Obs,WATER,NA,8/7/2012,11:27:00,EST,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.65,9.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:27,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_6.4_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.37,19.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_10.9_P,Field Msr/Obs,WATER,NA,5/9/2012,4:37:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.89,8.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:37,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_1.8_P,Field Msr/Obs,WATER,NA,6/5/2013,6:48:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.73,13.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:48,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_9.9_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_1.2_P,Field Msr/Obs,WATER,NA,9/24/2013,9:22:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.12,17.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_12.9_P,Field Msr/Obs,WATER,NA,6/17/2015,2:16:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.88,10.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:16,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_28_P,Field Msr/Obs,WATER,NA,6/17/2015,2:51:00,EST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:51,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_17_P,Field Msr/Obs,WATER,NA,6/16/2015,6:40:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.86,8.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:40,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_1.9_P,Field Msr/Obs,WATER,NA,6/17/2015,4:07:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:07,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_1_P,Field Msr/Obs,WATER,NA,6/16/2015,4:55:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.61,17.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:55,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_6.2_P,Field Msr/Obs,WATER,NA,9/23/2013,3:00:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.43,16.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 8:00,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_17.8_P,Field Msr/Obs,WATER,NA,9/23/2013,2:33:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.44,16.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:33,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_15.8_P,Field Msr/Obs,WATER,NA,6/17/2015,2:17:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.72,9.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:17,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_42.9_P,Field Msr/Obs,WATER,NA,6/17/2015,2:23:00,EST,NA,NA,NA,42.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.81,5.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:23,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_26.9_P,Field Msr/Obs,WATER,NA,10/10/2012,3:06:00,EST,NA,NA,NA,26.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.52,7.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:06,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_3.2_P,Field Msr/Obs,WATER,NA,6/17/2015,4:07:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.95,17.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:07,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_2_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.51,7.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_10.7_P,Field Msr/Obs,WATER,NA,8/12/2014,1:31:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.39,19.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_10.7_P,Field Msr/Obs,WATER,NA,6/17/2015,3:26:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.06,14.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:26,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_8_P,Field Msr/Obs,WATER,NA,7/28/2009,10:41:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.34,20.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:41,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_14.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:45:00,EST,NA,NA,NA,14.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20080723_2_P,Field Msr/Obs,WATER,NA,7/23/2008,8:30:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.52,20.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:30,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_19.9_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,19.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.05,9.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_7.4_P,Field Msr/Obs,WATER,NA,10/16/2014,1:58:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.07,13.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:58,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_0.2_P,Field Msr/Obs,WATER,NA,6/17/2015,3:34:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.61,22.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:34,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20080513_2.8_P,Field Msr/Obs,WATER,NA,5/13/2008,9:40:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.39,9.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 14:40,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_2_P,Field Msr/Obs,WATER,NA,6/5/2013,4:30:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.29,13.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:30,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_16.5_P,Field Msr/Obs,WATER,NA,10/14/2009,9:07:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.49,10.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:07,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_33.4_P,Field Msr/Obs,WATER,NA,6/16/2015,11:52:00,EST,NA,NA,NA,33.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.58,10.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_13_P,Field Msr/Obs,WATER,NA,6/16/2015,12:57:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.67,16.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:57,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_29.7_P,Field Msr/Obs,WATER,NA,10/10/2012,3:07:00,EST,NA,NA,NA,29.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.32,7.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:07,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_20.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:30:00,EST,NA,NA,NA,20.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.42,9.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:30,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_4.9_P,Field Msr/Obs,WATER,NA,5/29/2014,2:21:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.25,13.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:21,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_5.6_P,Field Msr/Obs,WATER,NA,5/10/2012,4:37:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.98,8.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:37,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_0_P,Field Msr/Obs,WATER,NA,6/5/2013,7:09:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.98,14.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:09,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_14.3_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.98,11.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_1.1_P,Field Msr/Obs,WATER,NA,10/14/2009,4:22:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:22,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_32_P,Field Msr/Obs,WATER,NA,8/7/2012,12:08:00,EST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.74,6.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:08,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_0.1_P,Field Msr/Obs,WATER,NA,10/9/2012,1:34:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.73,13.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:34,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090520_0.6_P,Field Msr/Obs,WATER,NA,5/20/2009,3:15:00,EST,NA,NA,NA,0.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.21,16.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/20/2009 8:15,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_45.8_P,Field Msr/Obs,WATER,NA,5/10/2012,3:07:00,EST,NA,NA,NA,45.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.73,4.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:07,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_36.8_P,Field Msr/Obs,WATER,NA,10/16/2014,12:58:00,EST,NA,NA,NA,36.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.33,8.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:58,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_0.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:30:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.37,11.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:30,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120806_2.3_P,Field Msr/Obs,WATER,NA,8/6/2012,7:16:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.13,21.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 12:16,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_11.2_P,Field Msr/Obs,WATER,NA,10/14/2009,4:27:00,EST,NA,NA,NA,11.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:27,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_14.1_P,Field Msr/Obs,WATER,NA,7/28/2009,10:44:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.15,12.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:44,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_43.2_P,Field Msr/Obs,WATER,NA,5/10/2012,3:06:00,EST,NA,NA,NA,43.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.79,4.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:06,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_18.5_P,Field Msr/Obs,WATER,NA,5/10/2012,4:43:00,EST,NA,NA,NA,18.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.61,6.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:43,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,9:21:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.12,17.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_2_P,Field Msr/Obs,WATER,NA,8/5/2010,11:32:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.25,21.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:32,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_0_P,Field Msr/Obs,WATER,NA,10/10/2012,1:46:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.43,14.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:46,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_9.4_P,Field Msr/Obs,WATER,NA,6/16/2015,4:56:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.35,16.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:56,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_1.8_P,Field Msr/Obs,WATER,NA,6/4/2013,2:09:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.87,13.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:09,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_25.2_P,Field Msr/Obs,WATER,NA,6/16/2015,12:39:00,EST,NA,NA,NA,25.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.19,12.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:39,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_1_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.08,20.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_6_P,Field Msr/Obs,WATER,NA,6/16/2015,12:56:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.49,17.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:56,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_25.3_P,Field Msr/Obs,WATER,NA,10/10/2012,1:53:00,EST,NA,NA,NA,25.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_17.4_P,Field Msr/Obs,WATER,NA,10/16/2014,2:54:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:54,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20080723_1_P,Field Msr/Obs,WATER,NA,7/23/2008,8:30:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.51,20.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:30,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_0.3_P,Field Msr/Obs,WATER,NA,6/16/2015,6:37:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.46,18.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:37,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_9_P,Field Msr/Obs,WATER,NA,5/29/2014,1:18:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.93,12.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:18,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_10.6_P,Field Msr/Obs,WATER,NA,9/23/2013,2:30:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.73,16.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:30,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_3.3_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.17,10.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_28.8_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,28.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.28,6.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_7_P,Field Msr/Obs,WATER,NA,8/6/2012,2:15:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20,20,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_0_P,Field Msr/Obs,WATER,NA,10/15/2014,12:26:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.77,12.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:26,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_27.7_P,Field Msr/Obs,WATER,NA,8/7/2012,11:01:00,EST,NA,NA,NA,27.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.45,7.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:01,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_14.8_P,Field Msr/Obs,WATER,NA,6/17/2015,4:10:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.18,11.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:10,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_30.4_P,Field Msr/Obs,WATER,NA,8/5/2010,2:21:00,EST,NA,NA,NA,30.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.62,12.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_21_P,Field Msr/Obs,WATER,NA,5/11/2012,8:36:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.18,6.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:36,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_9.1_P,Field Msr/Obs,WATER,NA,9/24/2013,11:34:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.77,16.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:34,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_11.6_P,Field Msr/Obs,WATER,NA,5/11/2012,8:33:00,EST,NA,NA,NA,11.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.04,7.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_1_P,Field Msr/Obs,WATER,NA,6/17/2015,3:35:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.27,18.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:35,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130604_1.1_P,Field Msr/Obs,WATER,NA,6/4/2013,7:28:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:28,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_7.9_P,Field Msr/Obs,WATER,NA,6/16/2015,6:38:00,EST,NA,NA,NA,7.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.29,16.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:38,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_43.8_P,Field Msr/Obs,WATER,NA,10/10/2012,1:57:00,EST,NA,NA,NA,43.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:57,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_0_P,Field Msr/Obs,WATER,NA,10/12/2010,5:23:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.87,14.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:23,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20150616_3_P,Field Msr/Obs,WATER,NA,6/16/2015,1:45:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.84,16.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 6:45,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20120806_0.7_P,Field Msr/Obs,WATER,NA,8/6/2012,8:40:00,EST,NA,NA,NA,0.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.36,22.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:40,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_32.5_P,Field Msr/Obs,WATER,NA,6/17/2015,2:21:00,EST,NA,NA,NA,32.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.43,6.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:21,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_17.8_P,Field Msr/Obs,WATER,NA,5/10/2012,3:42:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:42,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_11_P,Field Msr/Obs,WATER,NA,9/11/2009,11:04:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:04,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20100601_1_P,Field Msr/Obs,WATER,NA,6/1/2010,8:30:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.01,14.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 13:30,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_0.4_P,Field Msr/Obs,WATER,NA,9/24/2013,11:10:00,EST,NA,NA,NA,0.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.36,17.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:10,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120806_8_P,Field Msr/Obs,WATER,NA,8/6/2012,6:57:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.63,18.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 11:57,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_8.7_P,Field Msr/Obs,WATER,NA,6/5/2013,4:33:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.87,11.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:33,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_0.1_P,Field Msr/Obs,WATER,NA,5/28/2014,7:43:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.97,14.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:43,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_15.6_P,Field Msr/Obs,WATER,NA,7/28/2009,10:12:00,EST,NA,NA,NA,15.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.05,12.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:12,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_14_P,Field Msr/Obs,WATER,NA,5/28/2014,2:29:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.87,10.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:29,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_17.3_P,Field Msr/Obs,WATER,NA,6/17/2015,2:18:00,EST,NA,NA,NA,17.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.88,8.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:18,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_4.4_P,Field Msr/Obs,WATER,NA,10/14/2009,4:24:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.01,11.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:24,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_0.1_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.28,11.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_33.5_P,Field Msr/Obs,WATER,NA,8/7/2012,11:02:00,EST,NA,NA,NA,33.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.25,6.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:02,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_2.8_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.14,20.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_7.3_P,Field Msr/Obs,WATER,NA,6/16/2015,12:56:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.48,17.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:56,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_13.1_P,Field Msr/Obs,WATER,NA,8/11/2014,12:47:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.39,19.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20080513_6.9_P,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,EST,NA,NA,NA,6.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 16:00,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_19.3_P,Field Msr/Obs,WATER,NA,6/16/2015,12:59:00,EST,NA,NA,NA,19.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.09,15.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_14.5_P,Field Msr/Obs,WATER,NA,5/11/2012,8:33:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.94,6.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20130923_1_P,Field Msr/Obs,WATER,NA,9/23/2013,4:13:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.91,13.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 9:13,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_23.4_P,Field Msr/Obs,WATER,NA,10/16/2014,2:02:00,EST,NA,NA,NA,23.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:02,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_15.1_P,Field Msr/Obs,WATER,NA,9/24/2013,10:05:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.76,11.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:05,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_8.3_P,Field Msr/Obs,WATER,NA,8/5/2010,11:34:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.6,20.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_14.7_P,Field Msr/Obs,WATER,NA,10/11/2012,9:55:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.28,11.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:55,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_6.4_P,Field Msr/Obs,WATER,NA,9/24/2013,11:34:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.77,16.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:34,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_8_P,Field Msr/Obs,WATER,NA,10/15/2009,4:18:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.39,12.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:18,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_29_P,Field Msr/Obs,WATER,NA,6/17/2015,3:31:00,EST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.66,6.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:31,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_9.3_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_22_P,Field Msr/Obs,WATER,NA,10/15/2009,1:41:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.94,10.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:41,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_16.3_P,Field Msr/Obs,WATER,NA,6/17/2015,4:10:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.46,10.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:10,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20150616_1.7_P,Field Msr/Obs,WATER,NA,6/16/2015,1:45:00,EST,NA,NA,NA,1.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.85,16.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 6:45,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_7.7_P,Field Msr/Obs,WATER,NA,9/24/2013,10:47:00,EST,NA,NA,NA,7.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.16,17.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:47,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_7.1_P,Field Msr/Obs,WATER,NA,10/14/2009,9:00:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.96,10.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_46_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,46,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.93,5.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20080723_12.9_P,Field Msr/Obs,WATER,NA,7/23/2008,8:45:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.88,12.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 13:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_2.7_P,Field Msr/Obs,WATER,NA,10/10/2012,3:56:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.23,13.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:56,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_20.6_P,Field Msr/Obs,WATER,NA,10/15/2014,12:30:00,EST,NA,NA,NA,20.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.33,12.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:30,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_40.8_P,Field Msr/Obs,WATER,NA,8/7/2012,11:32:00,EST,NA,NA,NA,40.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.32,6.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_15.3_P,Field Msr/Obs,WATER,NA,6/16/2015,6:04:00,EST,NA,NA,NA,15.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.45,9.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:04,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_1.2_P,Field Msr/Obs,WATER,NA,5/11/2012,11:07:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.96,12.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:07,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_9_P,Field Msr/Obs,WATER,NA,6/16/2015,12:34:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.12,17.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:34,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_13.9_P,Field Msr/Obs,WATER,NA,6/16/2015,6:04:00,EST,NA,NA,NA,13.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.81,9.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:04,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_23.9_P,Field Msr/Obs,WATER,NA,6/4/2013,2:21:00,EST,NA,NA,NA,23.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.15,10.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_13.1_P,Field Msr/Obs,WATER,NA,10/10/2012,2:18:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.29,13.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:18,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_3.1_P,Field Msr/Obs,WATER,NA,5/29/2014,12:39:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.99,12.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_3.2_P,Field Msr/Obs,WATER,NA,10/16/2014,12:00:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.36,13.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_5.1_P,Field Msr/Obs,WATER,NA,8/4/2010,2:43:00,EST,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.09,21.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_18.2_P,Field Msr/Obs,WATER,NA,6/16/2015,6:05:00,EST,NA,NA,NA,18.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.68,8.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:05,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_14.5_P,Field Msr/Obs,WATER,NA,10/10/2012,2:18:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.27,13.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:18,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_18_P,Field Msr/Obs,WATER,NA,6/4/2013,8:39:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.09,8.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:39,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_0.1_P,Field Msr/Obs,WATER,NA,6/16/2015,12:54:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.36,18.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:54,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_0.5_P,Field Msr/Obs,WATER,NA,9/24/2013,12:41:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.72,17.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:41,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20140811_3.2_P,Field Msr/Obs,WATER,NA,8/11/2014,5:53:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.96,21.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:53,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_16.7_P,Field Msr/Obs,WATER,NA,5/10/2012,2:58:00,EST,NA,NA,NA,16.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.54,7.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:58,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_12.9_P,Field Msr/Obs,WATER,NA,8/5/2010,2:50:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:50,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_41.9_P,Field Msr/Obs,WATER,NA,6/5/2013,4:42:00,EST,NA,NA,NA,41.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.86,5.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:42,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_6.3_P,Field Msr/Obs,WATER,NA,6/4/2013,3:50:00,EST,NA,NA,NA,6.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.64,13.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:50,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_18.8_P,Field Msr/Obs,WATER,NA,6/5/2013,5:11:00,EST,NA,NA,NA,18.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.85,7.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:11,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_1.4_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.04,13.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_0.2_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.54,11.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_2.1_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.57,10.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_26.1_P,Field Msr/Obs,WATER,NA,6/16/2015,12:39:00,EST,NA,NA,NA,26.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.06,12.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:39,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_2.6_P,Field Msr/Obs,WATER,NA,5/28/2014,2:25:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:25,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_5_P,Field Msr/Obs,WATER,NA,6/16/2015,6:02:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:02,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_23.4_P,Field Msr/Obs,WATER,NA,6/17/2015,2:50:00,EST,NA,NA,NA,23.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_2.4_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.74,13.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_24.5_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,24.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.85,7.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_5.6_P,Field Msr/Obs,WATER,NA,6/5/2013,6:50:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.34,11.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_18.6_P,Field Msr/Obs,WATER,NA,6/16/2015,12:37:00,EST,NA,NA,NA,18.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:37,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_30.5_P,Field Msr/Obs,WATER,NA,6/17/2015,3:31:00,EST,NA,NA,NA,30.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.62,6.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:31,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_24_P,Field Msr/Obs,WATER,NA,6/17/2015,4:13:00,EST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:13,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_8.2_P,Field Msr/Obs,WATER,NA,6/16/2015,12:56:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.48,17.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:56,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_20_P,Field Msr/Obs,WATER,NA,9/23/2013,2:33:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.42,15.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:33,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_20_P,Field Msr/Obs,WATER,NA,10/10/2012,3:01:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:01,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_4_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.74,20.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_38_P,Field Msr/Obs,WATER,NA,6/17/2015,2:55:00,EST,NA,NA,NA,38,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.25,6.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:55,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20141016_12_P,Field Msr/Obs,WATER,NA,10/16/2014,2:52:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.74,12.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20080722_0_P,Field Msr/Obs,WATER,NA,7/22/2008,7:45:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.41,21.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 12:45,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090727_5_P,Field Msr/Obs,WATER,NA,7/27/2009,7:47:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.2,21.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 12:47,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_7.4_P,Field Msr/Obs,WATER,NA,5/28/2014,3:11:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.53,11.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:11,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_12.1_P,Field Msr/Obs,WATER,NA,5/9/2012,3:44:00,EST,NA,NA,NA,12.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.97,8.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:44,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_4_P,Field Msr/Obs,WATER,NA,6/16/2015,12:32:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.47,17.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:32,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_4.2_P,Field Msr/Obs,WATER,NA,8/4/2010,4:52:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:52,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_0.2_P,Field Msr/Obs,WATER,NA,6/17/2015,4:06:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.95,19.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:06,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_49_P,Field Msr/Obs,WATER,NA,6/17/2015,2:25:00,EST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.74,5.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:25,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140811_10_P,Field Msr/Obs,WATER,NA,8/11/2014,5:25:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.99,18.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:25,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_6.8_P,Field Msr/Obs,WATER,NA,5/28/2014,3:11:00,EST,NA,NA,NA,6.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.56,11.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:11,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_21.3_P,Field Msr/Obs,WATER,NA,8/6/2012,2:20:00,EST,NA,NA,NA,21.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.56,16.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:20,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_17_P,Field Msr/Obs,WATER,NA,5/11/2012,9:37:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.02,7.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:37,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_21.4_P,Field Msr/Obs,WATER,NA,10/16/2014,1:34:00,EST,NA,NA,NA,21.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.82,12.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_0.1_P,Field Msr/Obs,WATER,NA,8/6/2012,3:26:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.79,20.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:26,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_19.4_P,Field Msr/Obs,WATER,NA,5/29/2014,2:25:00,EST,NA,NA,NA,19.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.22,8.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:25,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_2.5_P,Field Msr/Obs,WATER,NA,5/9/2012,4:21:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.22,13.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:21,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_1.3_P,Field Msr/Obs,WATER,NA,8/12/2014,2:03:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.85,20.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:03,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_12.8_P,Field Msr/Obs,WATER,NA,5/9/2012,3:46:00,EST,NA,NA,NA,12.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.94,8.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:46,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_16.4_P,Field Msr/Obs,WATER,NA,6/16/2015,12:58:00,EST,NA,NA,NA,16.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.22,15.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_17.4_P,Field Msr/Obs,WATER,NA,10/15/2014,1:44:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:44,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_4.1_P,Field Msr/Obs,WATER,NA,8/7/2012,11:55:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.44,20.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20100601_2_P,Field Msr/Obs,WATER,NA,6/1/2010,8:30:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 13:30,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_26_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.63,7.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_4.9_P,Field Msr/Obs,WATER,NA,8/5/2010,11:33:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.18,21.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_3_P,Field Msr/Obs,WATER,NA,6/17/2015,4:28:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.94,17.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:28,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_22.2_P,Field Msr/Obs,WATER,NA,8/6/2012,3:03:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.05,16.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:03,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_18.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:10:00,EST,NA,NA,NA,18.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.75,10.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:10,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_20_P,Field Msr/Obs,WATER,NA,10/14/2009,9:09:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.19,8.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:09,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_12_P,Field Msr/Obs,WATER,NA,5/29/2014,1:19:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.64,11.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:19,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_13.6_P,Field Msr/Obs,WATER,NA,6/17/2015,3:27:00,EST,NA,NA,NA,13.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.49,12.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:27,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_16.1_P,Field Msr/Obs,WATER,NA,10/11/2012,9:22:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.97,9.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:22,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_44.3_P,Field Msr/Obs,WATER,NA,6/17/2015,2:23:00,EST,NA,NA,NA,44.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.77,5.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:23,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_25.7_P,Field Msr/Obs,WATER,NA,8/6/2012,2:21:00,EST,NA,NA,NA,25.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.46,15.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_5.3_P,Field Msr/Obs,WATER,NA,5/10/2012,3:39:00,EST,NA,NA,NA,5.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.23,8.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_16.6_P,Field Msr/Obs,WATER,NA,8/6/2012,2:58:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.86,17.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:58,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_12_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.62,11.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_23.5_P,Field Msr/Obs,WATER,NA,6/4/2013,2:20:00,EST,NA,NA,NA,23.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.17,12.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:20,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_1.5_P,Field Msr/Obs,WATER,NA,5/10/2012,3:38:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.44,8.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:38,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_11.3_P,Field Msr/Obs,WATER,NA,7/28/2009,10:08:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.73,14.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:08,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_44.7_P,Field Msr/Obs,WATER,NA,6/5/2013,4:44:00,EST,NA,NA,NA,44.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.76,5.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:44,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_10.8_P,Field Msr/Obs,WATER,NA,5/10/2012,4:39:00,EST,NA,NA,NA,10.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.66,8.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:39,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_12_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.48,12.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_8.6_P,Field Msr/Obs,WATER,NA,8/12/2014,1:04:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:04,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_15.5_P,Field Msr/Obs,WATER,NA,8/5/2010,11:43:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.66,12.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:43,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_39.2_P,Field Msr/Obs,WATER,NA,10/15/2009,3:30:00,EST,NA,NA,NA,39.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.87,7.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_16.2_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.18,10.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_29.2_P,Field Msr/Obs,WATER,NA,8/7/2012,11:01:00,EST,NA,NA,NA,29.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.02,7.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:01,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_22.3_P,Field Msr/Obs,WATER,NA,8/7/2012,10:59:00,EST,NA,NA,NA,22.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.03,9.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:59,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_2.9_P,Field Msr/Obs,WATER,NA,10/16/2014,1:29:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.08,13.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_11.3_P,Field Msr/Obs,WATER,NA,5/28/2014,3:12:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:12,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_5.7_P,Field Msr/Obs,WATER,NA,10/11/2012,9:18:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.61,12.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:18,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_3_P,Field Msr/Obs,WATER,NA,10/9/2012,1:35:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.65,13.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:35,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_16.1_P,Field Msr/Obs,WATER,NA,8/4/2010,3:54:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.52,11.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:54,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20091014_1_P,Field Msr/Obs,WATER,NA,10/14/2009,3:33:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.43,10.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:33,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_4.9_P,Field Msr/Obs,WATER,NA,6/4/2013,2:10:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.58,13.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:10,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_8.7_P,Field Msr/Obs,WATER,NA,6/17/2015,2:13:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.46,15.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:13,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_45.6_P,Field Msr/Obs,WATER,NA,5/10/2012,3:06:00,EST,NA,NA,NA,45.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.71,4.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:06,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_16.9_P,Field Msr/Obs,WATER,NA,6/5/2013,6:30:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.66,7.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:30,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_15.2_P,Field Msr/Obs,WATER,NA,8/6/2012,2:57:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.41,18.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:57,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_13.1_P,Field Msr/Obs,WATER,NA,9/24/2013,11:36:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.52,16.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:36,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_3_P,Field Msr/Obs,WATER,NA,6/16/2015,12:55:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.56,17.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:55,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_31.1_P,Field Msr/Obs,WATER,NA,10/10/2012,1:55:00,EST,NA,NA,NA,31.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.85,6.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_20_P,Field Msr/Obs,WATER,NA,7/28/2009,10:16:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.39,9.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:16,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_18_P,Field Msr/Obs,WATER,NA,6/16/2015,11:49:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.82,15.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:49,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_13.8_P,Field Msr/Obs,WATER,NA,5/28/2014,7:48:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:48,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_4.2_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_9_P,Field Msr/Obs,WATER,NA,10/15/2014,12:28:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.65,12.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:28,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080513_1_P,Field Msr/Obs,WATER,NA,5/13/2008,3:45:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.99,7.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 8:45,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_2.3_P,Field Msr/Obs,WATER,NA,5/9/2012,4:34:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.58,12.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:34,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20101012_11.1_P,Field Msr/Obs,WATER,NA,10/12/2010,3:56:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.96,13.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:56,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_16.8_P,Field Msr/Obs,WATER,NA,5/29/2014,12:45:00,EST,NA,NA,NA,16.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.32,8.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_13.2_P,Field Msr/Obs,WATER,NA,10/9/2012,3:01:00,EST,NA,NA,NA,13.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.97,10.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 8:01,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_15.8_P,Field Msr/Obs,WATER,NA,8/7/2012,12:01:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.18,12.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:01,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_13.5_P,Field Msr/Obs,WATER,NA,9/23/2013,3:02:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.98,14.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 8:02,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_17.8_P,Field Msr/Obs,WATER,NA,10/14/2010,8:23:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.72,13.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_8.2_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.04,9.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_1.1_P,Field Msr/Obs,WATER,NA,9/23/2013,1:39:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.85,16.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:39,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_20.7_P,Field Msr/Obs,WATER,NA,9/24/2013,10:07:00,EST,NA,NA,NA,20.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:07,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_4.7_P,Field Msr/Obs,WATER,NA,5/11/2012,10:35:00,EST,NA,NA,NA,4.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.08,10.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:35,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_5.6_P,Field Msr/Obs,WATER,NA,6/5/2013,7:12:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.21,13.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:12,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_4.2_P,Field Msr/Obs,WATER,NA,10/10/2012,4:20:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.09,13.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:20,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_21.8_P,Field Msr/Obs,WATER,NA,6/16/2015,6:06:00,EST,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:06,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_15.1_P,Field Msr/Obs,WATER,NA,10/9/2012,3:01:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 8:01,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_4_P,Field Msr/Obs,WATER,NA,7/28/2009,10:35:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:35,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_17.5_P,Field Msr/Obs,WATER,NA,5/28/2014,1:46:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.56,10.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_23.4_P,Field Msr/Obs,WATER,NA,10/15/2009,3:26:00,EST,NA,NA,NA,23.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.24,9.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090518_9_P,Field Msr/Obs,WATER,NA,5/18/2009,7:50:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.72,8.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_15.7_P,Field Msr/Obs,WATER,NA,8/5/2010,11:23:00,EST,NA,NA,NA,15.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.46,12.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:23,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_1.7_P,Field Msr/Obs,WATER,NA,6/17/2015,4:28:00,EST,NA,NA,NA,1.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.17,18.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:28,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_0.8_P,Field Msr/Obs,WATER,NA,5/29/2014,3:09:00,EST,NA,NA,NA,0.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:09,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_14.5_P,Field Msr/Obs,WATER,NA,8/7/2012,11:24:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.55,12.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_10_P,Field Msr/Obs,WATER,NA,6/17/2015,4:31:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.48,15.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:31,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100601_15.2_P,Field Msr/Obs,WATER,NA,6/1/2010,7:15:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:15,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_25.7_P,Field Msr/Obs,WATER,NA,10/10/2012,3:05:00,EST,NA,NA,NA,25.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.77,7.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:05,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_23_P,Field Msr/Obs,WATER,NA,10/10/2012,3:04:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.06,8.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:04,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20121009_1_P,Field Msr/Obs,WATER,NA,10/9/2012,6:47:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.95,8.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 11:47,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_17_P,Field Msr/Obs,WATER,NA,6/16/2015,6:04:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.01,9.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:04,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_16_P,Field Msr/Obs,WATER,NA,5/11/2012,8:34:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.52,6.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_7.5_P,Field Msr/Obs,WATER,NA,10/15/2014,1:19:00,EST,NA,NA,NA,7.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:19,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_20.3_P,Field Msr/Obs,WATER,NA,6/17/2015,4:33:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:33,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20121009_1.3_P,Field Msr/Obs,WATER,NA,10/9/2012,3:50:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 8:50,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_0.9_P,Field Msr/Obs,WATER,NA,6/16/2015,6:37:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.47,18.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:37,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_4.2_P,Field Msr/Obs,WATER,NA,8/7/2012,11:20:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.15,20.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_5.7_P,Field Msr/Obs,WATER,NA,8/7/2012,10:53:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.94,19.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_21.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:19:00,EST,NA,NA,NA,21.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.57,7.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:19,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_19_P,Field Msr/Obs,WATER,NA,6/17/2015,2:49:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.23,8.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:49,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_21_P,Field Msr/Obs,WATER,NA,7/28/2009,10:48:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:48,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_13_P,Field Msr/Obs,WATER,NA,5/28/2014,7:48:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:48,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_17.3_P,Field Msr/Obs,WATER,NA,10/14/2010,9:55:00,EST,NA,NA,NA,17.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.66,13.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:55,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_14.1_P,Field Msr/Obs,WATER,NA,5/10/2012,4:41:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.66,7.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:41,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_41.5_P,Field Msr/Obs,WATER,NA,6/17/2015,2:23:00,EST,NA,NA,NA,41.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.84,5.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:23,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_11.3_P,Field Msr/Obs,WATER,NA,5/28/2014,7:46:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.23,14.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:46,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_15.2_P,Field Msr/Obs,WATER,NA,8/4/2010,4:57:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:57,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_23.9_P,Field Msr/Obs,WATER,NA,9/24/2013,8:54:00,EST,NA,NA,NA,23.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.31,8.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_18_P,Field Msr/Obs,WATER,NA,6/17/2015,3:28:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:28,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_0_P,Field Msr/Obs,WATER,NA,6/5/2013,6:22:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.44,15.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:22,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_11.6_P,Field Msr/Obs,WATER,NA,6/17/2015,4:09:00,EST,NA,NA,NA,11.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.23,14.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:09,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_10.9_P,Field Msr/Obs,WATER,NA,6/16/2015,4:57:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.29,16.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:57,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_19.3_P,Field Msr/Obs,WATER,NA,6/17/2015,4:11:00,EST,NA,NA,NA,19.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.56,8.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:11,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_23.7_P,Field Msr/Obs,WATER,NA,6/16/2015,12:38:00,EST,NA,NA,NA,23.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.27,12.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:38,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_19.4_P,Field Msr/Obs,WATER,NA,6/17/2015,3:28:00,EST,NA,NA,NA,19.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.93,8.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:28,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_5.9_P,Field Msr/Obs,WATER,NA,6/17/2015,2:45:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.31,17.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_6_P,Field Msr/Obs,WATER,NA,6/16/2015,11:47:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.14,17.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_5.6_P,Field Msr/Obs,WATER,NA,8/7/2012,11:55:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.28,20.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20080722_3_P,Field Msr/Obs,WATER,NA,7/22/2008,7:45:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.12,20.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/22/2008 12:45,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20121011_4_P,Field Msr/Obs,WATER,NA,10/11/2012,8:50:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.48,10.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 13:50,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_1_P,Field Msr/Obs,WATER,NA,7/28/2009,9:05:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.86,20.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:05,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20080515_0.1_P,Field Msr/Obs,WATER,NA,5/15/2008,9:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.64,8.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/15/2008 14:00,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_23_P,Field Msr/Obs,WATER,NA,6/17/2015,4:12:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.65,7.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:12,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_18.2_P,Field Msr/Obs,WATER,NA,10/10/2012,2:20:00,EST,NA,NA,NA,18.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.39,11.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_10.9_P,Field Msr/Obs,WATER,NA,8/6/2012,2:55:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.78,18.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:55,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_17.7_P,Field Msr/Obs,WATER,NA,5/29/2014,1:22:00,EST,NA,NA,NA,17.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:22,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_13.1_P,Field Msr/Obs,WATER,NA,10/10/2012,3:59:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.72,12.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:59,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_0.2_P,Field Msr/Obs,WATER,NA,8/11/2014,1:57:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.35,20.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:57,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_39.3_P,Field Msr/Obs,WATER,NA,10/10/2012,2:25:00,EST,NA,NA,NA,39.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.44,6.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:25,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_0.8_P,Field Msr/Obs,WATER,NA,5/9/2012,4:20:00,EST,NA,NA,NA,0.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.24,13.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:20,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_7_P,Field Msr/Obs,WATER,NA,10/14/2010,3:12:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.12,13.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:12,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_0.5_P,Field Msr/Obs,WATER,NA,6/16/2015,4:55:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.19,19.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:55,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_18.9_P,Field Msr/Obs,WATER,NA,8/12/2014,1:33:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:33,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_35.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:30:00,EST,NA,NA,NA,35.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.88,7.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20080723_13.3_P,Field Msr/Obs,WATER,NA,7/23/2008,12:10:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.35,11.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:10,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_6.8_P,Field Msr/Obs,WATER,NA,8/12/2014,2:05:00,EST,NA,NA,NA,6.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.38,20.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:05,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_46.2_P,Field Msr/Obs,WATER,NA,10/10/2012,1:59:00,EST,NA,NA,NA,46.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.78,5.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:59,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_21.3_P,Field Msr/Obs,WATER,NA,10/15/2009,2:07:00,EST,NA,NA,NA,21.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.03,11.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:07,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_16_P,Field Msr/Obs,WATER,NA,10/15/2009,1:38:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.18,11.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:38,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_7.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:35:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:35,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_15.8_P,Field Msr/Obs,WATER,NA,10/9/2012,2:31:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.16,12.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:31,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_12.3_P,Field Msr/Obs,WATER,NA,9/24/2013,10:02:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_24.9_P,Field Msr/Obs,WATER,NA,5/29/2014,1:24:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.35,7.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:24,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_5.3_P,Field Msr/Obs,WATER,NA,10/9/2012,2:27:00,EST,NA,NA,NA,5.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.74,12.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:27,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_44.3_P,Field Msr/Obs,WATER,NA,10/15/2009,4:30:00,EST,NA,NA,NA,44.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.04,7.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:30,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_10.1_P,Field Msr/Obs,WATER,NA,5/29/2014,11:47:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.26,12.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:47,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_13_P,Field Msr/Obs,WATER,NA,7/28/2009,10:44:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.96,12.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:44,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_19.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:39:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.08,11.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:39,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_14_P,Field Msr/Obs,WATER,NA,8/4/2010,2:47:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.47,14.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_0.1_P,Field Msr/Obs,WATER,NA,6/16/2015,12:31:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.04,21.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:31,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_5.8_P,Field Msr/Obs,WATER,NA,8/7/2012,1:04:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.25,20.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_5_P,Field Msr/Obs,WATER,NA,7/27/2009,8:06:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.65,21.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:06,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_41.1_P,Field Msr/Obs,WATER,NA,10/14/2010,8:31:00,EST,NA,NA,NA,41.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.72,7.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_25.3_P,Field Msr/Obs,WATER,NA,9/24/2013,10:08:00,EST,NA,NA,NA,25.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.23,8.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:08,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_37.9_P,Field Msr/Obs,WATER,NA,5/10/2012,3:04:00,EST,NA,NA,NA,37.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.83,4.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:04,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_17.5_P,Field Msr/Obs,WATER,NA,5/9/2012,2:52:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.88,8.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_15_P,Field Msr/Obs,WATER,NA,5/29/2014,2:23:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.83,9.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:23,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_0_P,Field Msr/Obs,WATER,NA,6/16/2015,1:44:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.89,16.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 6:44,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_4.5_P,Field Msr/Obs,WATER,NA,6/17/2015,3:25:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.73,17.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:25,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_5.7_P,Field Msr/Obs,WATER,NA,10/10/2012,4:20:00,EST,NA,NA,NA,5.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.81,12.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:20,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_14.3_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.59,8.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_7.7_P,Field Msr/Obs,WATER,NA,6/17/2015,3:25:00,EST,NA,NA,NA,7.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.57,16.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:25,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_1_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.95,10.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_36.2_P,Field Msr/Obs,WATER,NA,6/5/2013,4:42:00,EST,NA,NA,NA,36.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.95,5.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:42,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_28.7_P,Field Msr/Obs,WATER,NA,6/17/2015,2:53:00,EST,NA,NA,NA,28.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.72,6.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:53,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_2.7_P,Field Msr/Obs,WATER,NA,6/5/2013,6:48:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.23,13.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:48,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_16.6_P,Field Msr/Obs,WATER,NA,6/5/2013,4:36:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.58,10.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:36,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_14.6_P,Field Msr/Obs,WATER,NA,10/16/2014,12:02:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.29,13.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:02,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_31.8_P,Field Msr/Obs,WATER,NA,10/10/2012,2:23:00,EST,NA,NA,NA,31.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.81,6.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_1.8_P,Field Msr/Obs,WATER,NA,9/24/2013,11:10:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.31,17.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:10,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_1_P,Field Msr/Obs,WATER,NA,10/13/2010,12:20:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.82,14.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:20,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_18.2_P,Field Msr/Obs,WATER,NA,8/6/2012,8:05:00,EST,NA,NA,NA,18.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:05,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_28.2_P,Field Msr/Obs,WATER,NA,8/6/2012,2:22:00,EST,NA,NA,NA,28.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.59,14.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:22,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_8.5_P,Field Msr/Obs,WATER,NA,5/29/2014,11:47:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.31,12.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:47,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_21.8_P,Field Msr/Obs,WATER,NA,8/7/2012,12:04:00,EST,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.54,9.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:04,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_17.4_P,Field Msr/Obs,WATER,NA,5/29/2014,12:46:00,EST,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.28,8.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_14.2_P,Field Msr/Obs,WATER,NA,5/11/2012,9:35:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.05,8.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:35,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_11.7_P,Field Msr/Obs,WATER,NA,8/12/2014,3:33:00,EST,NA,NA,NA,11.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.95,15.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:33,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_4.8_P,Field Msr/Obs,WATER,NA,9/23/2013,1:40:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.75,16.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:40,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_10.1_P,Field Msr/Obs,WATER,NA,5/11/2012,8:32:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.07,7.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:32,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_2.5_P,Field Msr/Obs,WATER,NA,5/11/2012,11:08:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.87,12.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:08,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_27.6_P,Field Msr/Obs,WATER,NA,8/7/2012,11:29:00,EST,NA,NA,NA,27.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.77,7.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_4_P,Field Msr/Obs,WATER,NA,6/5/2013,7:12:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.38,13.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:12,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_4.8_P,Field Msr/Obs,WATER,NA,9/24/2013,9:22:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_28.2_P,Field Msr/Obs,WATER,NA,7/28/2009,12:07:00,EST,NA,NA,NA,28.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.01,7.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:07,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_2.5_P,Field Msr/Obs,WATER,NA,5/9/2012,2:46:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.21,10.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_8.2_P,Field Msr/Obs,WATER,NA,6/5/2013,5:04:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.65,11.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:04,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_20_P,Field Msr/Obs,WATER,NA,10/9/2012,2:32:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.69,11.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:32,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_21.1_P,Field Msr/Obs,WATER,NA,10/15/2009,4:25:00,EST,NA,NA,NA,21.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.06,11.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:25,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_6_P,Field Msr/Obs,WATER,NA,5/9/2012,4:35:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.07,9.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:35,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_14.5_P,Field Msr/Obs,WATER,NA,8/7/2012,10:56:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.85,12.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_11.4_P,Field Msr/Obs,WATER,NA,10/9/2012,1:37:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.78,12.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:37,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_14.3_P,Field Msr/Obs,WATER,NA,5/9/2012,2:51:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.97,8.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:51,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_32_P,Field Msr/Obs,WATER,NA,6/17/2015,2:53:00,EST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:53,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_21.3_P,Field Msr/Obs,WATER,NA,7/28/2009,10:17:00,EST,NA,NA,NA,21.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.86,8.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:17,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_4.9_P,Field Msr/Obs,WATER,NA,6/4/2013,3:49:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.71,13.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:49,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_18.4_P,Field Msr/Obs,WATER,NA,7/28/2009,9:26:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.81,9.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:26,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_18_P,Field Msr/Obs,WATER,NA,6/17/2015,2:18:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.54,8.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:18,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20140811_2.8_P,Field Msr/Obs,WATER,NA,8/11/2014,7:22:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.08,22.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:22,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_29.8_P,Field Msr/Obs,WATER,NA,6/16/2015,11:52:00,EST,NA,NA,NA,29.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.24,11.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_22.3_P,Field Msr/Obs,WATER,NA,6/16/2015,12:38:00,EST,NA,NA,NA,22.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:38,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_18.8_P,Field Msr/Obs,WATER,NA,8/7/2012,12:03:00,EST,NA,NA,NA,18.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:03,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_2_P,Field Msr/Obs,WATER,NA,10/15/2009,1:31:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.37,11.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:31,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_27_P,Field Msr/Obs,WATER,NA,8/11/2014,12:52:00,EST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.32,16.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_35.3_P,Field Msr/Obs,WATER,NA,8/7/2012,12:09:00,EST,NA,NA,NA,35.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:09,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_23.1_P,Field Msr/Obs,WATER,NA,10/14/2009,7:40:00,EST,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:40,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_22.8_P,Field Msr/Obs,WATER,NA,10/15/2009,4:26:00,EST,NA,NA,NA,22.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.96,9.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:26,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_12.6_P,Field Msr/Obs,WATER,NA,7/28/2009,10:09:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.07,14.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:09,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_28_P,Field Msr/Obs,WATER,NA,6/17/2015,2:20:00,EST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.77,6.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:20,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_23.4_P,Field Msr/Obs,WATER,NA,10/10/2012,2:21:00,EST,NA,NA,NA,23.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.42,8.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_11.4_P,Field Msr/Obs,WATER,NA,10/10/2012,2:53:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_2.1_P,Field Msr/Obs,WATER,NA,5/29/2014,1:16:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:16,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_10.2_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.04,8.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_16.5_P,Field Msr/Obs,WATER,NA,9/23/2013,2:31:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.62,16.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:31,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_26.5_P,Field Msr/Obs,WATER,NA,10/14/2010,9:25:00,EST,NA,NA,NA,26.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.59,8.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:25,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_26.3_P,Field Msr/Obs,WATER,NA,9/10/2009,11:16:00,EST,NA,NA,NA,26.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.83,16.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:16,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20121011_0_P,Field Msr/Obs,WATER,NA,10/11/2012,9:17:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:17,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_23.3_P,Field Msr/Obs,WATER,NA,8/7/2012,12:05:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.72,8.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:05,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090728_20_P,Field Msr/Obs,WATER,NA,7/28/2009,10:47:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.05,8.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:47,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_0_P,Field Msr/Obs,WATER,NA,6/5/2013,5:38:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.03,16.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:38,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_21_P,Field Msr/Obs,WATER,NA,6/5/2013,4:38:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.09,7.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_19.4_P,Field Msr/Obs,WATER,NA,5/10/2012,4:44:00,EST,NA,NA,NA,19.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.44,6.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:44,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_5.9_P,Field Msr/Obs,WATER,NA,5/28/2014,7:44:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.82,14.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:44,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_43.7_P,Field Msr/Obs,WATER,NA,10/16/2014,11:44:00,EST,NA,NA,NA,43.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.75,7.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:44,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_2.1_P,Field Msr/Obs,WATER,NA,8/5/2010,2:12:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.75,20.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:12,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_0_P,Field Msr/Obs,WATER,NA,8/6/2012,2:53:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.83,19.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:53,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_21.4_P,Field Msr/Obs,WATER,NA,5/28/2014,1:47:00,EST,NA,NA,NA,21.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.86,9.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_7.4_P,Field Msr/Obs,WATER,NA,5/11/2012,11:10:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.79,10.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:10,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20121011_7.4_P,Field Msr/Obs,WATER,NA,10/11/2012,9:52:00,EST,NA,NA,NA,7.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.12,12.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 14:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_18.7_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,18.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.24,7.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_26.2_P,Field Msr/Obs,WATER,NA,6/17/2015,3:30:00,EST,NA,NA,NA,26.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.78,6.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:30,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_17_P,Field Msr/Obs,WATER,NA,8/6/2012,8:05:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.86,11.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:05,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_6.1_P,Field Msr/Obs,WATER,NA,6/17/2015,4:29:00,EST,NA,NA,NA,6.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.07,17.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:29,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_2.4_P,Field Msr/Obs,WATER,NA,8/6/2012,2:14:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.34,20.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20121009_1.5_P,Field Msr/Obs,WATER,NA,10/9/2012,3:51:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.07,8.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 8:51,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_24.8_P,Field Msr/Obs,WATER,NA,7/28/2009,2:08:00,EST,NA,NA,NA,24.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.45,7.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 7:08,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_3.2_P,Field Msr/Obs,WATER,NA,8/4/2010,4:52:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.37,21.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:52,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_3.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:40:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:40,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_7.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:20:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_2.3_P,Field Msr/Obs,WATER,NA,10/13/2010,12:21:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.69,14.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:21,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_4_P,Field Msr/Obs,WATER,NA,10/14/2009,5:45:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.03,11.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_3.6_P,Field Msr/Obs,WATER,NA,5/11/2012,9:31:00,EST,NA,NA,NA,3.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.84,9.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:31,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_26.1_P,Field Msr/Obs,WATER,NA,8/6/2012,3:05:00,EST,NA,NA,NA,26.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.69,15.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:05,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130924_0.3_P,Field Msr/Obs,WATER,NA,9/24/2013,1:23:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.03,16.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:23,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_41.3_P,Field Msr/Obs,WATER,NA,5/29/2014,12:49:00,EST,NA,NA,NA,41.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:49,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_15_P,Field Msr/Obs,WATER,NA,8/7/2012,12:01:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.06,13.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:01,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090727_0_P,Field Msr/Obs,WATER,NA,7/27/2009,7:40:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.07,22.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 12:40,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_0_P,Field Msr/Obs,WATER,NA,8/12/2014,1:28:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.59,21.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:28,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_19.5_P,Field Msr/Obs,WATER,NA,9/23/2013,1:43:00,EST,NA,NA,NA,19.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.65,16.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:43,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_0.1_P,Field Msr/Obs,WATER,NA,8/5/2010,2:47:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.28,21.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:47,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_1_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.89,10.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_17.8_P,Field Msr/Obs,WATER,NA,6/4/2013,2:13:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:13,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_18.7_P,Field Msr/Obs,WATER,NA,10/10/2012,4:28:00,EST,NA,NA,NA,18.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.27,10.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:28,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_15.7_P,Field Msr/Obs,WATER,NA,5/10/2012,4:42:00,EST,NA,NA,NA,15.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.93,6.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:42,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_17.5_P,Field Msr/Obs,WATER,NA,7/28/2009,11:59:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.15,12.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:59,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_9.2_P,Field Msr/Obs,WATER,NA,6/16/2015,6:03:00,EST,NA,NA,NA,9.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.51,15.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:03,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090728_1_P,Field Msr/Obs,WATER,NA,7/28/2009,8:43:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 13:43,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20140811_0.2_P,Field Msr/Obs,WATER,NA,8/11/2014,7:20:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.03,23.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:20,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_10.1_P,Field Msr/Obs,WATER,NA,8/4/2010,4:54:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.69,17.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_22.2_P,Field Msr/Obs,WATER,NA,8/4/2010,5:02:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.52,9.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 10:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20150616_19.5_P,Field Msr/Obs,WATER,NA,6/16/2015,6:05:00,EST,NA,NA,NA,19.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.48,8.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:05,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090910_6_P,Field Msr/Obs,WATER,NA,9/10/2009,12:38:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.39,17.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:38,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_1.2_P,Field Msr/Obs,WATER,NA,10/14/2009,9:37:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.33,10.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:37,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_3.5_P,Field Msr/Obs,WATER,NA,7/28/2009,9:07:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.84,20.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:07,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_1_P,Field Msr/Obs,WATER,NA,10/14/2009,5:45:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.03,11.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:45,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_20.3_P,Field Msr/Obs,WATER,NA,8/12/2014,3:35:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.05,10.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:35,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_14.3_P,Field Msr/Obs,WATER,NA,6/4/2013,8:34:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.42,8.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_6_P,Field Msr/Obs,WATER,NA,8/11/2014,1:58:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.49,19.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_11.8_P,Field Msr/Obs,WATER,NA,6/17/2015,2:47:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.14,13.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120806_1_P,Field Msr/Obs,WATER,NA,8/6/2012,7:15:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.62,22.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 12:15,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_23.3_P,Field Msr/Obs,WATER,NA,7/28/2009,10:20:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.24,8.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:20,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_21.3_P,Field Msr/Obs,WATER,NA,10/15/2009,1:40:00,EST,NA,NA,NA,21.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.96,10.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:40,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_10.6_P,Field Msr/Obs,WATER,NA,9/24/2013,11:11:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:11,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_40.4_P,Field Msr/Obs,WATER,NA,8/7/2012,11:04:00,EST,NA,NA,NA,40.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.73,5.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:04,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_18.6_P,Field Msr/Obs,WATER,NA,6/5/2013,5:48:00,EST,NA,NA,NA,18.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.23,7.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:48,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_9.1_P,Field Msr/Obs,WATER,NA,6/4/2013,3:07:00,EST,NA,NA,NA,9.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.45,13.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:07,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_21.9_P,Field Msr/Obs,WATER,NA,10/14/2010,8:26:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.26,9.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:26,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_27_P,Field Msr/Obs,WATER,NA,9/23/2013,1:50:00,EST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.76,13.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:50,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130604_7_P,Field Msr/Obs,WATER,NA,6/4/2013,7:32:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.63,15.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:32,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_21.2_P,Field Msr/Obs,WATER,NA,5/10/2012,3:43:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.92,6.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_30_P,Field Msr/Obs,WATER,NA,8/4/2010,4:00:00,EST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.63,7.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:00,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_16.5_P,Field Msr/Obs,WATER,NA,6/16/2015,11:49:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.94,15.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:49,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_19.1_P,Field Msr/Obs,WATER,NA,6/16/2015,12:59:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.07,15.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_15.3_P,Field Msr/Obs,WATER,NA,5/10/2012,3:42:00,EST,NA,NA,NA,15.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.18,7.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:42,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_13.1_P,Field Msr/Obs,WATER,NA,8/7/2012,1:05:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.83,14.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:05,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_7.6_P,Field Msr/Obs,WATER,NA,9/24/2013,9:23:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.08,17.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_27.6_P,Field Msr/Obs,WATER,NA,6/5/2013,4:41:00,EST,NA,NA,NA,27.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:41,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_25_P,Field Msr/Obs,WATER,NA,8/11/2014,12:51:00,EST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:51,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_16_P,Field Msr/Obs,WATER,NA,10/14/2009,5:51:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.37,10.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:51,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_4.4_P,Field Msr/Obs,WATER,NA,10/9/2012,1:35:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.24,13.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:35,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_31.9_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,31.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.43,5.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_23.8_P,Field Msr/Obs,WATER,NA,6/16/2015,11:50:00,EST,NA,NA,NA,23.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.43,13.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:50,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_15_P,Field Msr/Obs,WATER,NA,10/15/2009,1:38:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.19,11.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:38,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_9.3_P,Field Msr/Obs,WATER,NA,10/14/2009,3:06:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.51,7.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:06,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_8_P,Field Msr/Obs,WATER,NA,9/24/2013,11:34:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.77,16.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:34,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_0.1_P,Field Msr/Obs,WATER,NA,7/27/2009,8:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.51,22.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:00,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_7.1_P,Field Msr/Obs,WATER,NA,6/5/2013,6:51:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.85,9.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:51,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_1.2_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_18.1_P,Field Msr/Obs,WATER,NA,10/14/2009,9:08:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.54,9.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:08,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_19.2_P,Field Msr/Obs,WATER,NA,9/11/2009,11:02:00,EST,NA,NA,NA,19.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.27,10.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:02,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_23.6_P,Field Msr/Obs,WATER,NA,10/15/2014,12:31:00,EST,NA,NA,NA,23.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.81,11.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:31,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_36.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:54:00,EST,NA,NA,NA,36.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.33,6.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:54,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_3.1_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.23,10.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_16_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_9.2_P,Field Msr/Obs,WATER,NA,6/5/2013,6:27:00,EST,NA,NA,NA,9.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.11,9.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:27,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,8:46:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.11,17.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:46,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_2_P,Field Msr/Obs,WATER,NA,8/4/2010,6:43:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.01,21.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:43,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20150616_11.4_P,Field Msr/Obs,WATER,NA,6/16/2015,12:34:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.03,17.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:34,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_6.1_P,Field Msr/Obs,WATER,NA,10/14/2010,8:20:00,EST,NA,NA,NA,6.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_16_P,Field Msr/Obs,WATER,NA,6/5/2013,6:30:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.85,7.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:30,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_1_P,Field Msr/Obs,WATER,NA,10/10/2012,2:51:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:51,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_16.2_P,Field Msr/Obs,WATER,NA,10/15/2014,12:29:00,EST,NA,NA,NA,16.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:29,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_15.1_P,Field Msr/Obs,WATER,NA,6/16/2015,11:48:00,EST,NA,NA,NA,15.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.34,16.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:48,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_11_P,Field Msr/Obs,WATER,NA,8/5/2010,3:19:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.55,19.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:19,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_12.9_P,Field Msr/Obs,WATER,NA,5/28/2014,7:46:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.71,10.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:46,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_12.2_P,Field Msr/Obs,WATER,NA,6/5/2013,6:29:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.39,8.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_22.9_P,Field Msr/Obs,WATER,NA,10/16/2014,11:38:00,EST,NA,NA,NA,22.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.78,9.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_29_P,Field Msr/Obs,WATER,NA,8/5/2010,2:21:00,EST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.58,15.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_36.7_P,Field Msr/Obs,WATER,NA,10/14/2010,8:30:00,EST,NA,NA,NA,36.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.91,7.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_6_P,Field Msr/Obs,WATER,NA,6/4/2013,8:29:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.74,9.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:29,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_0.1_P,Field Msr/Obs,WATER,NA,6/4/2013,8:24:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.91,13.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:24,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_16.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:47:00,EST,NA,NA,NA,16.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.09,8.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:47,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_3_P,Field Msr/Obs,WATER,NA,6/16/2015,6:38:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.37,18.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:38,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_17.3_P,Field Msr/Obs,WATER,NA,6/5/2013,4:36:00,EST,NA,NA,NA,17.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.27,10.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:36,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_2.6_P,Field Msr/Obs,WATER,NA,6/4/2013,8:27:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.48,12.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:27,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_19.3_P,Field Msr/Obs,WATER,NA,9/12/2011,7:31:00,EST,NA,NA,NA,19.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.44,13.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:31,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_8.3_P,Field Msr/Obs,WATER,NA,8/11/2014,12:45:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.79,19.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_9.8_P,Field Msr/Obs,WATER,NA,6/17/2015,2:14:00,EST,NA,NA,NA,9.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.67,14.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:14,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_13_P,Field Msr/Obs,WATER,NA,8/12/2014,2:08:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.46,14.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:08,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_12.6_P,Field Msr/Obs,WATER,NA,8/12/2014,1:06:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.25,16.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:06,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_6.6_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.96,19.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_21.5_P,Field Msr/Obs,WATER,NA,6/5/2013,5:16:00,EST,NA,NA,NA,21.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.42,7.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:16,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_23.1_P,Field Msr/Obs,WATER,NA,6/17/2015,2:19:00,EST,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.38,7.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:19,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_35.6_P,Field Msr/Obs,WATER,NA,10/10/2012,1:55:00,EST,NA,NA,NA,35.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.35,6.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_18.9_P,Field Msr/Obs,WATER,NA,7/28/2009,10:16:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.26,10.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:16,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_12.3_P,Field Msr/Obs,WATER,NA,5/11/2012,9:35:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.59,8.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:35,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_12.3_P,Field Msr/Obs,WATER,NA,9/24/2013,11:35:00,EST,NA,NA,NA,12.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.74,16.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:35,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_4.2_P,Field Msr/Obs,WATER,NA,8/6/2012,8:01:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.23,21.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:01,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_15.5_P,Field Msr/Obs,WATER,NA,5/28/2014,2:29:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.65,10.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:29,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_2.5_P,Field Msr/Obs,WATER,NA,5/9/2012,3:40:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:40,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_9_P,Field Msr/Obs,WATER,NA,8/4/2010,4:54:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.29,18.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_11.8_P,Field Msr/Obs,WATER,NA,9/10/2009,11:11:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.04,18.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:11,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_9.2_P,Field Msr/Obs,WATER,NA,8/11/2014,12:45:00,EST,NA,NA,NA,9.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.52,19.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_3_P,Field Msr/Obs,WATER,NA,8/5/2010,12:08:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.77,21.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:08,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_23.3_P,Field Msr/Obs,WATER,NA,5/10/2012,3:44:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.64,6.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:44,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_29.2_P,Field Msr/Obs,WATER,NA,8/6/2012,2:23:00,EST,NA,NA,NA,29.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.25,14.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:23,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_4.4_P,Field Msr/Obs,WATER,NA,8/12/2014,3:31:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.78,20.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:31,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_8.8_P,Field Msr/Obs,WATER,NA,10/16/2014,1:32:00,EST,NA,NA,NA,8.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.02,13.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:32,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_19.1_P,Field Msr/Obs,WATER,NA,8/4/2010,6:50:00,EST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.06,10.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_11.5_P,Field Msr/Obs,WATER,NA,6/17/2015,2:15:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.09,13.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_25.1_P,Field Msr/Obs,WATER,NA,8/12/2014,1:35:00,EST,NA,NA,NA,25.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.16,8.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:35,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_6.6_P,Field Msr/Obs,WATER,NA,5/9/2012,3:41:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.23,9.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:41,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_40_P,Field Msr/Obs,WATER,NA,6/5/2013,5:20:00,EST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_9.4_P,Field Msr/Obs,WATER,NA,8/4/2010,2:44:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.49,18.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:44,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_22_P,Field Msr/Obs,WATER,NA,6/17/2015,4:34:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.74,7.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:34,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_4.4_P,Field Msr/Obs,WATER,NA,6/17/2015,2:45:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.54,17.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_0.1_P,Field Msr/Obs,WATER,NA,5/10/2012,2:53:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.88,10.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:53,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_34_P,Field Msr/Obs,WATER,NA,9/24/2013,9:33:00,EST,NA,NA,NA,34,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:33,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_6.9_P,Field Msr/Obs,WATER,NA,10/14/2010,2:20:00,EST,NA,NA,NA,6.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.26,13.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:20,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_11.8_P,Field Msr/Obs,WATER,NA,10/15/2014,1:43:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.86,11.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:43,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_2.1_P,Field Msr/Obs,WATER,NA,8/7/2012,1:03:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.51,20.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:03,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_30.1_P,Field Msr/Obs,WATER,NA,8/5/2010,2:21:00,EST,NA,NA,NA,30.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.88,12.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:21,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_20.3_P,Field Msr/Obs,WATER,NA,10/15/2009,4:24:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:24,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20091014_0_P,Field Msr/Obs,WATER,NA,10/14/2009,10:37:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.61,7.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 15:37,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_0.1_P,Field Msr/Obs,WATER,NA,9/10/2009,12:06:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.92,18.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:06,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_7_P,Field Msr/Obs,WATER,NA,5/10/2012,4:38:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.89,8.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:38,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_14_P,Field Msr/Obs,WATER,NA,8/5/2010,11:21:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.06,15.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:21,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_5_P,Field Msr/Obs,WATER,NA,5/9/2012,4:22:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.18,9.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:22,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_6.9_P,Field Msr/Obs,WATER,NA,6/4/2013,8:29:00,EST,NA,NA,NA,6.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.64,9.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:29,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_13.1_P,Field Msr/Obs,WATER,NA,5/29/2014,3:11:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.51,12.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:11,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_7_P,Field Msr/Obs,WATER,NA,8/12/2014,1:30:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.28,20.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_11.9_P,Field Msr/Obs,WATER,NA,8/6/2012,2:56:00,EST,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.73,18.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:56,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_7.2_P,Field Msr/Obs,WATER,NA,8/7/2012,11:21:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.71,19.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_17.3_P,Field Msr/Obs,WATER,NA,10/14/2009,5:52:00,EST,NA,NA,NA,17.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.51,9.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:52,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_13.8_P,Field Msr/Obs,WATER,NA,9/10/2009,11:12:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.03,18.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:12,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_20.2_P,Field Msr/Obs,WATER,NA,8/7/2012,12:04:00,EST,NA,NA,NA,20.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:04,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_20_P,Field Msr/Obs,WATER,NA,5/28/2014,1:46:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.08,10.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:46,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_18_P,Field Msr/Obs,WATER,NA,7/28/2009,9:25:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.82,9.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:25,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,11:10:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:10,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_8.6_P,Field Msr/Obs,WATER,NA,10/10/2012,4:21:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.69,12.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:21,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_4.1_P,Field Msr/Obs,WATER,NA,5/10/2012,2:55:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.74,9.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 7:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_0_P,Field Msr/Obs,WATER,NA,10/14/2010,8:19:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.43,14.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:19,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_9.9_P,Field Msr/Obs,WATER,NA,8/12/2014,3:12:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.77,18.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:12,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20141015_4.1_P,Field Msr/Obs,WATER,NA,10/15/2014,5:05:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.18,12.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:05,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_13.1_P,Field Msr/Obs,WATER,NA,8/7/2012,11:23:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_26_P,Field Msr/Obs,WATER,NA,5/10/2012,4:46:00,EST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.63,5.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:46,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_7.3_P,Field Msr/Obs,WATER,NA,10/9/2012,1:36:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.12,13.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:36,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090518_0.1_P,Field Msr/Obs,WATER,NA,5/18/2009,7:00:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.01,19.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2009 12:00,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090519_6.4_P,Field Msr/Obs,WATER,NA,5/19/2009,11:15:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.77,8.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 16:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_3.5_P,Field Msr/Obs,WATER,NA,6/5/2013,6:49:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.98,12.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:49,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_4_P,Field Msr/Obs,WATER,NA,9/23/2013,2:59:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.51,16.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:59,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_4.7_P,Field Msr/Obs,WATER,NA,9/24/2013,11:11:00,EST,NA,NA,NA,4.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.12,17.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:11,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_18.9_P,Field Msr/Obs,WATER,NA,10/10/2012,1:52:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.31,11.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:52,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_30.6_P,Field Msr/Obs,WATER,NA,8/12/2014,2:12:00,EST,NA,NA,NA,30.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:12,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_10.7_P,Field Msr/Obs,WATER,NA,9/24/2013,12:44:00,EST,NA,NA,NA,10.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.63,16.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:44,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_15.5_P,Field Msr/Obs,WATER,NA,7/28/2009,7:04:00,EST,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 12:04,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_11_P,Field Msr/Obs,WATER,NA,8/5/2010,11:35:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.03,18.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:35,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_10.9_P,Field Msr/Obs,WATER,NA,8/4/2010,3:49:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.02,17.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:49,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_7.1_P,Field Msr/Obs,WATER,NA,10/14/2009,9:40:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.03,10.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:40,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_26.1_P,Field Msr/Obs,WATER,NA,8/7/2012,11:29:00,EST,NA,NA,NA,26.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.89,7.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_20.3_P,Field Msr/Obs,WATER,NA,5/11/2012,10:40:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.79,6.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:40,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_2.8_P,Field Msr/Obs,WATER,NA,6/4/2013,8:27:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.29,12.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:27,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_35_P,Field Msr/Obs,WATER,NA,10/10/2012,2:24:00,EST,NA,NA,NA,35,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.47,6.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20090910_1.2_P,Field Msr/Obs,WATER,NA,9/10/2009,12:37:00,EST,NA,NA,NA,1.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.76,17.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:37,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_9_P,Field Msr/Obs,WATER,NA,6/17/2015,2:46:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.56,14.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_12.4_P,Field Msr/Obs,WATER,NA,8/4/2010,3:51:00,EST,NA,NA,NA,12.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.56,15.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:51,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_7.1_P,Field Msr/Obs,WATER,NA,10/14/2009,3:05:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:05,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20141015_5.4_P,Field Msr/Obs,WATER,NA,10/15/2014,2:21:00,EST,NA,NA,NA,5.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.81,7.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 7:21,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_11.9_P,Field Msr/Obs,WATER,NA,5/28/2014,1:44:00,EST,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.23,13.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:44,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_23_P,Field Msr/Obs,WATER,NA,8/12/2014,3:36:00,EST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.86,8.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:36,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_5.3_P,Field Msr/Obs,WATER,NA,8/6/2012,3:27:00,EST,NA,NA,NA,5.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.06,19.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:27,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_0.1_P,Field Msr/Obs,WATER,NA,6/17/2015,2:10:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.64,18.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:10,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_5_P,Field Msr/Obs,WATER,NA,9/24/2013,8:48:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_14.6_P,Field Msr/Obs,WATER,NA,8/12/2014,2:09:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.67,13.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:09,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140811_9.4_P,Field Msr/Obs,WATER,NA,8/11/2014,5:25:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:25,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_6.2_P,Field Msr/Obs,WATER,NA,10/14/2009,3:05:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.53,9.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:05,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_34.2_P,Field Msr/Obs,WATER,NA,7/28/2009,12:09:00,EST,NA,NA,NA,34.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.67,6.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:09,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_2.9_P,Field Msr/Obs,WATER,NA,10/15/2009,2:03:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.26,11.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:03,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_8.6_P,Field Msr/Obs,WATER,NA,8/5/2010,12:10:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.69,18.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 17:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_5.5_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.72,9.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_17.6_P,Field Msr/Obs,WATER,NA,10/9/2012,1:39:00,EST,NA,NA,NA,17.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.64,12.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:39,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20101012_3_P,Field Msr/Obs,WATER,NA,10/12/2010,2:52:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.67,11.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 7:52,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140528_0_P,Field Msr/Obs,WATER,NA,5/28/2014,6:41:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.56,16.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 11:41,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_9.3_P,Field Msr/Obs,WATER,NA,9/24/2013,10:02:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.02,17.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_7.3_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.09,9.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_22.2_P,Field Msr/Obs,WATER,NA,8/12/2014,2:10:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.47,9.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130604_0.1_P,Field Msr/Obs,WATER,NA,6/4/2013,7:27:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.12,18.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:27,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_6_P,Field Msr/Obs,WATER,NA,5/11/2012,11:09:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.76,11.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:09,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_24.6_P,Field Msr/Obs,WATER,NA,8/7/2012,12:05:00,EST,NA,NA,NA,24.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.31,8.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:05,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_0.1_P,Field Msr/Obs,WATER,NA,5/9/2012,4:34:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:34,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_2.8_P,Field Msr/Obs,WATER,NA,6/5/2013,4:31:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.15,13.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:31,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_36.3_P,Field Msr/Obs,WATER,NA,8/7/2012,11:03:00,EST,NA,NA,NA,36.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.93,5.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:03,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_2_P,Field Msr/Obs,WATER,NA,10/16/2014,1:56:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.34,13.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:56,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_6_P,Field Msr/Obs,WATER,NA,8/4/2010,3:45:00,EST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.13,21.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:45,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_16.1_P,Field Msr/Obs,WATER,NA,9/13/2011,9:17:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.36,17.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:17,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_18.2_P,Field Msr/Obs,WATER,NA,5/10/2012,4:44:00,EST,NA,NA,NA,18.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.66,6.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:44,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_14.6_P,Field Msr/Obs,WATER,NA,10/16/2014,2:00:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.06,13.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_3.4_P,Field Msr/Obs,WATER,NA,9/24/2013,12:42:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.02,17.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:42,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120511_0.3_P,Field Msr/Obs,WATER,NA,5/11/2012,11:33:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.95,13.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:33,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120806_0.9_P,Field Msr/Obs,WATER,NA,8/6/2012,6:55:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.25,22.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 11:55,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_13.3_P,Field Msr/Obs,WATER,NA,10/16/2014,11:36:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:36,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120511_2_P,Field Msr/Obs,WATER,NA,5/11/2012,11:35:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.78,13.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:35,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_0_P,Field Msr/Obs,WATER,NA,5/11/2012,10:31:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_23.6_P,Field Msr/Obs,WATER,NA,6/17/2015,3:29:00,EST,NA,NA,NA,23.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.27,7.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:29,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_36.2_P,Field Msr/Obs,WATER,NA,5/10/2012,3:47:00,EST,NA,NA,NA,36.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.26,5.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:47,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_18.4_P,Field Msr/Obs,WATER,NA,8/4/2010,6:49:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.78,10.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_21.9_P,Field Msr/Obs,WATER,NA,7/28/2009,12:01:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.01,9.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:01,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_26.6_P,Field Msr/Obs,WATER,NA,5/10/2012,3:44:00,EST,NA,NA,NA,26.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:44,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_13_P,Field Msr/Obs,WATER,NA,5/11/2012,8:33:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.02,7.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_2.4_P,Field Msr/Obs,WATER,NA,8/7/2012,11:54:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.66,20.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_25.7_P,Field Msr/Obs,WATER,NA,10/15/2009,1:44:00,EST,NA,NA,NA,25.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.58,9.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:44,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_1_P,Field Msr/Obs,WATER,NA,6/4/2013,2:08:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.94,13.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:08,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_14.6_P,Field Msr/Obs,WATER,NA,8/7/2012,11:24:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.48,12.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:24,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_24.8_P,Field Msr/Obs,WATER,NA,8/4/2010,6:51:00,EST,NA,NA,NA,24.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.65,8.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:51,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_27.6_P,Field Msr/Obs,WATER,NA,10/16/2014,11:40:00,EST,NA,NA,NA,27.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.89,8.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:40,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_5_P,Field Msr/Obs,WATER,NA,10/14/2009,4:24:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:24,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_12.9_P,Field Msr/Obs,WATER,NA,6/5/2013,4:34:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.18,11.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:34,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_1.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:19:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:19,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_11.5_P,Field Msr/Obs,WATER,NA,8/5/2010,2:15:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_4.4_P,Field Msr/Obs,WATER,NA,10/16/2014,1:58:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.09,13.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:58,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_22.7_P,Field Msr/Obs,WATER,NA,8/7/2012,1:08:00,EST,NA,NA,NA,22.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.07,9.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:08,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20091015_5.8_P,Field Msr/Obs,WATER,NA,10/15/2009,2:04:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.25,11.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 7:04,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_26.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:17:00,EST,NA,NA,NA,26.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:17,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_26.9_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,26.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_24.1_P,Field Msr/Obs,WATER,NA,5/29/2014,11:52:00,EST,NA,NA,NA,24.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.75,6.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:52,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_24.8_P,Field Msr/Obs,WATER,NA,10/16/2014,12:52:00,EST,NA,NA,NA,24.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.23,11.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:52,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120510_32.4_P,Field Msr/Obs,WATER,NA,5/10/2012,3:03:00,EST,NA,NA,NA,32.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.99,4.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:03,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_21.4_P,Field Msr/Obs,WATER,NA,8/12/2014,3:35:00,EST,NA,NA,NA,21.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.28,9.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:35,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_8.6_P,Field Msr/Obs,WATER,NA,7/28/2009,1:55:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.31,18.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_12.7_P,Field Msr/Obs,WATER,NA,8/5/2010,11:20:00,EST,NA,NA,NA,12.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.96,16.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:20,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_14.3_P,Field Msr/Obs,WATER,NA,5/11/2012,10:38:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.96,6.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:38,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_3.9_P,Field Msr/Obs,WATER,NA,8/6/2012,2:15:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.26,20.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_14.6_P,Field Msr/Obs,WATER,NA,10/14/2009,9:07:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.55,10.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:07,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_16.8_P,Field Msr/Obs,WATER,NA,5/29/2014,11:50:00,EST,NA,NA,NA,16.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.65,8.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_28.3_P,Field Msr/Obs,WATER,NA,10/10/2012,3:07:00,EST,NA,NA,NA,28.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.42,7.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:07,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20120806_2_P,Field Msr/Obs,WATER,NA,8/6/2012,8:40:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.25,22.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:40,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140528_5.5_P,Field Msr/Obs,WATER,NA,5/28/2014,3:10:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.57,12.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 8:10,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_25.5_P,Field Msr/Obs,WATER,NA,9/23/2013,1:48:00,EST,NA,NA,NA,25.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.69,15.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:48,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_19.2_P,Field Msr/Obs,WATER,NA,10/15/2009,3:25:00,EST,NA,NA,NA,19.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.68,11.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:25,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_19.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:11:00,EST,NA,NA,NA,19.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.76,7.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:11,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_10.4_P,Field Msr/Obs,WATER,NA,10/16/2014,1:59:00,EST,NA,NA,NA,10.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.07,13.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:59,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_4_P,Field Msr/Obs,WATER,NA,10/15/2009,4:17:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.39,12.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:17,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_31.4_P,Field Msr/Obs,WATER,NA,8/11/2014,12:54:00,EST,NA,NA,NA,31.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.97,12.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:54,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_30.5_P,Field Msr/Obs,WATER,NA,5/29/2014,11:54:00,EST,NA,NA,NA,30.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.45,6.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:54,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_17.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:39:00,EST,NA,NA,NA,17.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.16,11.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:39,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_1.1_P,Field Msr/Obs,WATER,NA,8/7/2012,10:51:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.33,20.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:51,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_16.5_P,Field Msr/Obs,WATER,NA,8/11/2014,12:47:00,EST,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.14,19.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_25_P,Field Msr/Obs,WATER,NA,6/17/2015,3:30:00,EST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.95,6.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:30,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_5.3_P,Field Msr/Obs,WATER,NA,5/9/2012,3:41:00,EST,NA,NA,NA,5.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:41,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_22.1_P,Field Msr/Obs,WATER,NA,10/15/2014,1:22:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.78,11.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:22,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_12.2_P,Field Msr/Obs,WATER,NA,6/5/2013,5:05:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.39,11.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:05,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_22.2_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.13,7.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_0.2_P,Field Msr/Obs,WATER,NA,9/11/2009,11:07:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.36,19.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:07,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20090727_3_P,Field Msr/Obs,WATER,NA,7/27/2009,7:44:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.66,21.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 12:44,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_16.1_P,Field Msr/Obs,WATER,NA,9/24/2013,10:54:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.65,9.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:54,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_1_P,Field Msr/Obs,WATER,NA,10/12/2010,3:24:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.78,14.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:24,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_0_P,Field Msr/Obs,WATER,NA,5/9/2012,4:34:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:34,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_30.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:50:00,EST,NA,NA,NA,30.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.62,6.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:50,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_37_P,Field Msr/Obs,WATER,NA,10/10/2012,1:56:00,EST,NA,NA,NA,37,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_13.3_P,Field Msr/Obs,WATER,NA,6/4/2013,8:34:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.47,8.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_21_P,Field Msr/Obs,WATER,NA,9/24/2013,9:31:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.91,8.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_10.3_P,Field Msr/Obs,WATER,NA,7/28/2009,9:13:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.35,16.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:13,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_12.9_P,Field Msr/Obs,WATER,NA,6/5/2013,5:44:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.33,10.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:44,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_14.3_P,Field Msr/Obs,WATER,NA,7/28/2009,12:52:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.06,13.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:52,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_11.5_P,Field Msr/Obs,WATER,NA,6/5/2013,4:34:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.38,11.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:34,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_36_P,Field Msr/Obs,WATER,NA,10/15/2009,3:30:00,EST,NA,NA,NA,36,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.88,7.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:30,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_2.1_P,Field Msr/Obs,WATER,NA,9/24/2013,11:32:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.96,16.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:32,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_9.8_P,Field Msr/Obs,WATER,NA,5/10/2012,4:39:00,EST,NA,NA,NA,9.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:39,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_9.3_P,Field Msr/Obs,WATER,NA,8/11/2014,6:32:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.65,19.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:32,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130604_4_P,Field Msr/Obs,WATER,NA,6/4/2013,7:30:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.96,16.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:30,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_12.5_P,Field Msr/Obs,WATER,NA,8/6/2012,2:18:00,EST,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.56,18.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:18,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_25_P,Field Msr/Obs,WATER,NA,7/28/2009,12:06:00,EST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.89,7.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 17:06,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_7_P,Field Msr/Obs,WATER,NA,8/4/2010,2:43:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.49,20.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_24.8_P,Field Msr/Obs,WATER,NA,8/12/2014,3:37:00,EST,NA,NA,NA,24.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.51,8.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:37,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_26.2_P,Field Msr/Obs,WATER,NA,10/10/2012,2:22:00,EST,NA,NA,NA,26.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.68,7.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_2.8_P,Field Msr/Obs,WATER,NA,5/11/2012,9:31:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.93,9.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:31,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_19.6_P,Field Msr/Obs,WATER,NA,6/5/2013,4:38:00,EST,NA,NA,NA,19.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.66,9.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140811_3.4_P,Field Msr/Obs,WATER,NA,8/11/2014,5:23:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.42,21.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:23,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_16.8_P,Field Msr/Obs,WATER,NA,8/11/2014,7:36:00,EST,NA,NA,NA,16.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.39,11.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:36,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_23.2_P,Field Msr/Obs,WATER,NA,8/11/2014,12:50:00,EST,NA,NA,NA,23.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:50,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_1.4_P,Field Msr/Obs,WATER,NA,8/11/2014,12:43:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.98,20.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:43,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_16.9_P,Field Msr/Obs,WATER,NA,5/10/2012,4:42:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.85,6.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:42,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20150616_4.5_P,Field Msr/Obs,WATER,NA,6/16/2015,12:55:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.51,17.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 17:55,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_18.4_P,Field Msr/Obs,WATER,NA,9/13/2011,10:23:00,EST,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.88,15.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:23,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20140529_2_P,Field Msr/Obs,WATER,NA,5/29/2014,3:46:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.98,16.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:46,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140528_8_P,Field Msr/Obs,WATER,NA,5/28/2014,6:43:00,EST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.13,16.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 11:43,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_0.1_P,Field Msr/Obs,WATER,NA,8/11/2014,1:35:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.55,22.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:35,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120806_0.1_P,Field Msr/Obs,WATER,NA,8/6/2012,6:54:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.25,22.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 11:54,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_26.7_P,Field Msr/Obs,WATER,NA,9/23/2013,1:49:00,EST,NA,NA,NA,26.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.74,14.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:49,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120806_5_P,Field Msr/Obs,WATER,NA,8/6/2012,6:56:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.97,20.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 11:56,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_38.4_P,Field Msr/Obs,WATER,NA,10/10/2012,1:56:00,EST,NA,NA,NA,38.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.98,5.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,9:59:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.15,17.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:59,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_43.3_P,Field Msr/Obs,WATER,NA,6/5/2013,4:43:00,EST,NA,NA,NA,43.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.79,5.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:43,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_20.3_P,Field Msr/Obs,WATER,NA,10/14/2009,7:39:00,EST,NA,NA,NA,20.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.43,9.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:39,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_21.8_P,Field Msr/Obs,WATER,NA,6/5/2013,6:58:00,EST,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.74,7.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:58,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_2_P,Field Msr/Obs,WATER,NA,9/23/2013,2:28:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.79,16.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:28,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_12.2_P,Field Msr/Obs,WATER,NA,8/4/2010,3:51:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.51,15.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:51,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_8.3_P,Field Msr/Obs,WATER,NA,6/5/2013,6:52:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.56,9.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:52,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_30.3_P,Field Msr/Obs,WATER,NA,10/10/2012,2:23:00,EST,NA,NA,NA,30.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:23,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_20.4_P,Field Msr/Obs,WATER,NA,8/4/2010,6:50:00,EST,NA,NA,NA,20.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.67,9.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_16.6_P,Field Msr/Obs,WATER,NA,9/24/2013,12:48:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.84,11.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:48,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_10.1_P,Field Msr/Obs,WATER,NA,10/10/2012,1:48:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.74,13.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_0.1_P,Field Msr/Obs,WATER,NA,10/15/2009,4:15:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.38,12.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_6.5_P,Field Msr/Obs,WATER,NA,8/4/2010,4:53:00,EST,NA,NA,NA,6.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.58,20.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_20.9_P,Field Msr/Obs,WATER,NA,8/6/2012,3:02:00,EST,NA,NA,NA,20.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.49,16.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:02,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_3.7_P,Field Msr/Obs,WATER,NA,8/12/2014,1:29:00,EST,NA,NA,NA,3.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.74,20.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:29,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_0.1_P,Field Msr/Obs,WATER,NA,8/4/2010,6:41:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.99,20.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:41,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20090910_22.2_P,Field Msr/Obs,WATER,NA,9/10/2009,12:10:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.07,17.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 17:10,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20141015_2.7_P,Field Msr/Obs,WATER,NA,10/15/2014,5:24:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.37,10.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:24,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_4_P,Field Msr/Obs,WATER,NA,8/4/2010,6:47:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.05,21.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:47,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_2_P,Field Msr/Obs,WATER,NA,6/5/2013,7:10:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.54,14.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:10,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_34.4_P,Field Msr/Obs,WATER,NA,6/17/2015,3:32:00,EST,NA,NA,NA,34.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.49,6.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:32,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_12.9_P,Field Msr/Obs,WATER,NA,8/6/2012,8:04:00,EST,NA,NA,NA,12.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.09,14.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:04,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_22.5_P,Field Msr/Obs,WATER,NA,10/13/2010,12:35:00,EST,NA,NA,NA,22.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.17,9.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:35,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_15.7_P,Field Msr/Obs,WATER,NA,6/5/2013,5:46:00,EST,NA,NA,NA,15.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.72,8.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:46,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_14_P,Field Msr/Obs,WATER,NA,6/4/2013,3:07:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.43,13.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:07,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_19_P,Field Msr/Obs,WATER,NA,10/10/2012,2:20:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.69,10.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_1_P,Field Msr/Obs,WATER,NA,7/28/2009,6:28:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.8,20.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:28,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140811_16.8_P,Field Msr/Obs,WATER,NA,8/11/2014,6:34:00,EST,NA,NA,NA,16.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 11:34,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_29.1_P,Field Msr/Obs,WATER,NA,10/10/2012,2:22:00,EST,NA,NA,NA,29.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_7.3_P,Field Msr/Obs,WATER,NA,5/28/2014,7:44:00,EST,NA,NA,NA,7.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.81,14.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:44,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20141016_2.4_P,Field Msr/Obs,WATER,NA,10/16/2014,3:18:00,EST,NA,NA,NA,2.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.41,10.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 8:18,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_28.2_P,Field Msr/Obs,WATER,NA,9/24/2013,9:32:00,EST,NA,NA,NA,28.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.87,7.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_15.3_P,Field Msr/Obs,WATER,NA,8/11/2014,7:36:00,EST,NA,NA,NA,15.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:36,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_0.1_P,Field Msr/Obs,WATER,NA,5/9/2012,3:39:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:39,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_25.1_P,Field Msr/Obs,WATER,NA,6/17/2015,4:34:00,EST,NA,NA,NA,25.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:34,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20150617_20.6_P,Field Msr/Obs,WATER,NA,6/17/2015,2:50:00,EST,NA,NA,NA,20.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.92,7.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_8.1_P,Field Msr/Obs,WATER,NA,5/9/2012,3:42:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.07,9.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:42,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_30.9_P,Field Msr/Obs,WATER,NA,6/17/2015,2:21:00,EST,NA,NA,NA,30.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.63,6.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:21,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_24.9_P,Field Msr/Obs,WATER,NA,6/4/2013,2:22:00,EST,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.85,8.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:22,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_39.5_P,Field Msr/Obs,WATER,NA,8/4/2010,2:53:00,EST,NA,NA,NA,39.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.77,6.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:53,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_28_P,Field Msr/Obs,WATER,NA,10/9/2012,1:42:00,EST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.55,12.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:42,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_11.8_P,Field Msr/Obs,WATER,NA,10/16/2014,12:01:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:01,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20090728_3.5_P,Field Msr/Obs,WATER,NA,7/28/2009,8:45:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.15,21.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 13:45,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_18.7_P,Field Msr/Obs,WATER,NA,6/17/2015,4:33:00,EST,NA,NA,NA,18.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.44,8.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:33,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_5.8_P,Field Msr/Obs,WATER,NA,5/11/2012,8:31:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:31,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20140811_2.7_P,Field Msr/Obs,WATER,NA,8/11/2014,7:09:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.77,19.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:09,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_13.1_P,Field Msr/Obs,WATER,NA,8/7/2012,12:00:00,EST,NA,NA,NA,13.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.49,14.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:00,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_0.3_P,Field Msr/Obs,WATER,NA,10/14/2009,9:37:00,EST,NA,NA,NA,0.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.28,10.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:37,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_8.7_P,Field Msr/Obs,WATER,NA,8/7/2012,11:22:00,EST,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.55,19.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_11.4_P,Field Msr/Obs,WATER,NA,10/10/2012,1:49:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.73,13.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140811_0.1_P,Field Msr/Obs,WATER,NA,8/11/2014,5:23:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.7,21.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:23,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_25_P,Field Msr/Obs,WATER,NA,10/15/2009,3:27:00,EST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.87,8.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:27,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_0.1_P,Field Msr/Obs,WATER,NA,5/10/2012,3:37:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:37,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_1.3_P,Field Msr/Obs,WATER,NA,6/4/2013,8:25:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.37,13.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:25,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_11.1_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.26,8.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_2.2_P,Field Msr/Obs,WATER,NA,6/2/2010,3:52:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:52,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20130605_0.9_P,Field Msr/Obs,WATER,NA,6/5/2013,7:47:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.35,17.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:47,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_4.4_P,Field Msr/Obs,WATER,NA,10/15/2014,1:19:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.85,12.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:19,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_1.1_P,Field Msr/Obs,WATER,NA,6/5/2013,5:01:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.34,13.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:01,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_16.6_P,Field Msr/Obs,WATER,NA,5/29/2014,2:24:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:24,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_42_P,Field Msr/Obs,WATER,NA,10/15/2009,3:31:00,EST,NA,NA,NA,42,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_37.5_P,Field Msr/Obs,WATER,NA,8/7/2012,11:03:00,EST,NA,NA,NA,37.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.83,5.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:03,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_24.7_P,Field Msr/Obs,WATER,NA,8/12/2014,3:36:00,EST,NA,NA,NA,24.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.51,8.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:36,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_40.2_P,Field Msr/Obs,WATER,NA,8/7/2012,11:04:00,EST,NA,NA,NA,40.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.73,5.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:04,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_4.1_P,Field Msr/Obs,WATER,NA,10/10/2012,2:52:00,EST,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.31,13.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:52,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_1.1_P,Field Msr/Obs,WATER,NA,8/6/2012,8:01:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.59,21.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:01,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_3.9_P,Field Msr/Obs,WATER,NA,8/6/2012,2:54:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.68,19.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:54,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_8.6_P,Field Msr/Obs,WATER,NA,8/12/2014,2:05:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.07,20.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:05,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_21.3_P,Field Msr/Obs,WATER,NA,8/4/2010,5:02:00,EST,NA,NA,NA,21.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 10:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_18.9_P,Field Msr/Obs,WATER,NA,8/12/2014,1:10:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.33,10.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:10,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_17.8_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.78,9.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_14.5_P,Field Msr/Obs,WATER,NA,8/4/2010,6:49:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.89,14.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20121009_1.5_P,Field Msr/Obs,WATER,NA,10/9/2012,2:57:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.52,12.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:57,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_24.5_P,Field Msr/Obs,WATER,NA,6/5/2013,5:50:00,EST,NA,NA,NA,24.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.75,6.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:50,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_40.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:38:00,EST,NA,NA,NA,40.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.06,7.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:38,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_10_P,Field Msr/Obs,WATER,NA,8/5/2010,11:19:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.23,19.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:19,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_18.9_P,Field Msr/Obs,WATER,NA,8/5/2010,3:21:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.35,18.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:21,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_2_P,Field Msr/Obs,WATER,NA,8/5/2010,2:47:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.41,20.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:47,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20121009_10_P,Field Msr/Obs,WATER,NA,10/9/2012,1:37:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.09,13.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 6:37,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_11_P,Field Msr/Obs,WATER,NA,6/5/2013,5:05:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.56,11.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:05,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_22.8_P,Field Msr/Obs,WATER,NA,6/4/2013,2:16:00,EST,NA,NA,NA,22.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.87,12.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:16,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_11.7_P,Field Msr/Obs,WATER,NA,7/28/2009,1:59:00,EST,NA,NA,NA,11.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.76,16.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:59,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_18.9_P,Field Msr/Obs,WATER,NA,9/24/2013,11:16:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.77,9.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:16,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_32.3_P,Field Msr/Obs,WATER,NA,10/16/2014,12:05:00,EST,NA,NA,NA,32.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.62,8.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:05,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_9.8_P,Field Msr/Obs,WATER,NA,10/14/2009,4:26:00,EST,NA,NA,NA,9.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.84,10.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:26,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_11.7_P,Field Msr/Obs,WATER,NA,10/15/2014,12:28:00,EST,NA,NA,NA,11.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:28,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20091015_10.1_P,Field Msr/Obs,WATER,NA,10/15/2009,1:36:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.26,11.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 6:36,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_7.6_P,Field Msr/Obs,WATER,NA,5/29/2014,3:10:00,EST,NA,NA,NA,7.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.37,14.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:10,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120806_8.1_P,Field Msr/Obs,WATER,NA,8/6/2012,6:58:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.59,18.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 11:58,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_13.8_P,Field Msr/Obs,WATER,NA,8/7/2012,12:00:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.73,13.73,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:00,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_5.6_P,Field Msr/Obs,WATER,NA,10/10/2012,1:48:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.79,13.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_7.2_P,Field Msr/Obs,WATER,NA,10/10/2012,3:57:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.79,12.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:57,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_10.6_P,Field Msr/Obs,WATER,NA,9/24/2013,10:48:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.13,17.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:48,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20101012_16_P,Field Msr/Obs,WATER,NA,10/12/2010,5:29:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:29,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_2.3_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,2.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.74,12.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080723_19.3_P,Field Msr/Obs,WATER,NA,7/23/2008,11:10:00,EST,NA,NA,NA,19.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.43,9.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_12.8_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,12.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.91,7.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_10.9_P,Field Msr/Obs,WATER,NA,9/24/2013,10:49:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.13,17.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:49,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_14.7_P,Field Msr/Obs,WATER,NA,9/24/2013,11:15:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.79,11.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20090911_2.9_P,Field Msr/Obs,WATER,NA,9/11/2009,11:06:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.99,18.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2009 16:06,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_10.4_P,Field Msr/Obs,WATER,NA,8/12/2014,3:33:00,EST,NA,NA,NA,10.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.13,18.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:33,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_11.2_P,Field Msr/Obs,WATER,NA,7/28/2009,9:15:00,EST,NA,NA,NA,11.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.14,15.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:15,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_21.9_P,Field Msr/Obs,WATER,NA,8/12/2014,3:15:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.79,9.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:15,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120511_7.1_P,Field Msr/Obs,WATER,NA,5/11/2012,10:36:00,EST,NA,NA,NA,7.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.07,9.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 15:36,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_1_P,Field Msr/Obs,WATER,NA,6/4/2013,8:25:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.79,13.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:25,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_17.5_P,Field Msr/Obs,WATER,NA,10/10/2012,4:26:00,EST,NA,NA,NA,17.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.81,10.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:26,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_18.9_P,Field Msr/Obs,WATER,NA,10/16/2014,2:01:00,EST,NA,NA,NA,18.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.05,13.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:01,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_20.7_P,Field Msr/Obs,WATER,NA,9/10/2009,11:14:00,EST,NA,NA,NA,20.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.34,17.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20100805_4_P,Field Msr/Obs,WATER,NA,8/5/2010,2:49:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.21,20.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:49,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_10.2_P,Field Msr/Obs,WATER,NA,8/7/2012,11:22:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.05,18.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:22,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_28.5_P,Field Msr/Obs,WATER,NA,8/12/2014,2:12:00,EST,NA,NA,NA,28.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.59,7.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:12,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_43.5_P,Field Msr/Obs,WATER,NA,10/16/2014,11:44:00,EST,NA,NA,NA,43.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.76,7.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:44,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_12.1_P,Field Msr/Obs,WATER,NA,6/17/2015,3:26:00,EST,NA,NA,NA,12.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.22,13.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:26,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_8.2_P,Field Msr/Obs,WATER,NA,10/15/2009,3:21:00,EST,NA,NA,NA,8.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.17,12.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:21,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_6.2_P,Field Msr/Obs,WATER,NA,9/23/2013,2:29:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.78,16.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:29,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_2_P,Field Msr/Obs,WATER,NA,6/4/2013,8:26:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:26,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100602_27.3_P,Field Msr/Obs,WATER,NA,6/2/2010,2:50:00,EST,NA,NA,NA,27.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.96,7.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_20.9_P,Field Msr/Obs,WATER,NA,5/29/2014,2:25:00,EST,NA,NA,NA,20.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:25,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_11.5_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,11.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.41,10.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_2_P,Field Msr/Obs,WATER,NA,10/14/2009,7:32:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.18,11.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:32,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_8.8_P,Field Msr/Obs,WATER,NA,7/28/2009,10:02:00,EST,NA,NA,NA,8.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.81,20.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:02,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100601_15_P,Field Msr/Obs,WATER,NA,6/1/2010,7:50:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.14,10.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 12:50,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_3.4_P,Field Msr/Obs,WATER,NA,7/28/2009,11:40:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.24,21.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:40,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_19.9_P,Field Msr/Obs,WATER,NA,8/11/2014,2:01:00,EST,NA,NA,NA,19.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.26,18.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 7:01,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_20.7_P,Field Msr/Obs,WATER,NA,10/16/2014,12:04:00,EST,NA,NA,NA,20.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:04,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_13.3_P,Field Msr/Obs,WATER,NA,10/15/2014,1:21:00,EST,NA,NA,NA,13.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.51,12.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:21,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20101014_4.2_P,Field Msr/Obs,WATER,NA,10/14/2010,9:50:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.41,14.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:50,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20090728_37.1_P,Field Msr/Obs,WATER,NA,7/28/2009,1:09:00,EST,NA,NA,NA,37.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.48,6.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:09,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20150616_18_P,Field Msr/Obs,WATER,NA,6/16/2015,6:40:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.07,9.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 11:40,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_26.1_P,Field Msr/Obs,WATER,NA,8/11/2014,12:51:00,EST,NA,NA,NA,26.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.55,16.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:51,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_10.3_P,Field Msr/Obs,WATER,NA,10/16/2014,11:35:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:35,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_11.9_P,Field Msr/Obs,WATER,NA,9/24/2013,10:49:00,EST,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:49,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_3.5_P,Field Msr/Obs,WATER,NA,10/10/2012,2:16:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.71,13.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:16,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_27.9_P,Field Msr/Obs,WATER,NA,10/15/2014,12:32:00,EST,NA,NA,NA,27.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:32,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_4.6_P,Field Msr/Obs,WATER,NA,5/9/2012,4:35:00,EST,NA,NA,NA,4.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.23,9.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:35,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_19.9_P,Field Msr/Obs,WATER,NA,6/5/2013,5:11:00,EST,NA,NA,NA,19.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.65,7.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:11,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_8.5_P,Field Msr/Obs,WATER,NA,10/10/2012,3:58:00,EST,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.78,12.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:58,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20140529_1.5_P,Field Msr/Obs,WATER,NA,5/29/2014,3:45:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.27,18.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:45,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_14.8_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,14.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.82,7.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_20.5_P,Field Msr/Obs,WATER,NA,6/5/2013,6:58:00,EST,NA,NA,NA,20.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.79,7.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:58,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_40.4_P,Field Msr/Obs,WATER,NA,8/7/2012,11:32:00,EST,NA,NA,NA,40.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.33,6.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_3.4_P,Field Msr/Obs,WATER,NA,6/4/2013,2:10:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.76,13.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:10,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_10.1_P,Field Msr/Obs,WATER,NA,10/16/2014,1:32:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.02,13.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:32,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20150616_4.8_P,Field Msr/Obs,WATER,NA,6/16/2015,4:56:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.43,16.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 9:56,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20150617_26_P,Field Msr/Obs,WATER,NA,6/17/2015,2:20:00,EST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.89,6.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 7:20,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_4.8_P,Field Msr/Obs,WATER,NA,9/23/2013,2:29:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.79,16.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:29,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_19.4_P,Field Msr/Obs,WATER,NA,5/29/2014,2:55:00,EST,NA,NA,NA,19.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.54,8.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:55,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_6.2_P,Field Msr/Obs,WATER,NA,5/29/2014,3:10:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.47,14.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:10,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_6.2_P,Field Msr/Obs,WATER,NA,6/4/2013,3:07:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.47,13.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:07,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20080723_11.3_P,Field Msr/Obs,WATER,NA,7/23/2008,10:00:00,EST,NA,NA,NA,11.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 15:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_22.8_P,Field Msr/Obs,WATER,NA,7/28/2009,10:19:00,EST,NA,NA,NA,22.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.41,8.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:19,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_14.5_P,Field Msr/Obs,WATER,NA,10/16/2014,12:49:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.11,13.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:49,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_19.2_P,Field Msr/Obs,WATER,NA,5/29/2014,11:50:00,EST,NA,NA,NA,19.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.81,7.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20090728_16.9_P,Field Msr/Obs,WATER,NA,7/28/2009,9:24:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 14:24,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_16.7_P,Field Msr/Obs,WATER,NA,8/11/2014,1:39:00,EST,NA,NA,NA,16.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.91,18.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:39,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_8.6_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.03,9.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_7.2_P,Field Msr/Obs,WATER,NA,10/16/2014,2:18:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.86,12.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:18,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_17.1_P,Field Msr/Obs,WATER,NA,6/5/2013,5:47:00,EST,NA,NA,NA,17.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.43,7.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:47,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_33.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:37:00,EST,NA,NA,NA,33.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.37,7.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:37,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_23.6_P,Field Msr/Obs,WATER,NA,10/16/2014,11:39:00,EST,NA,NA,NA,23.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:39,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_0.9_P,Field Msr/Obs,WATER,NA,6/17/2015,3:24:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:24,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_1_P,Field Msr/Obs,WATER,NA,5/29/2014,2:49:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.63,14.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:49,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20100805_13_P,Field Msr/Obs,WATER,NA,8/5/2010,11:36:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.83,16.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:36,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120509_1.1_P,Field Msr/Obs,WATER,NA,5/9/2012,3:40:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.01,11.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 8:40,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_18.6_P,Field Msr/Obs,WATER,NA,5/10/2012,4:43:00,EST,NA,NA,NA,18.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.61,6.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:43,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20110913_3.1_P,Field Msr/Obs,WATER,NA,9/13/2011,9:14:00,EST,NA,NA,NA,3.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 14:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_32_P,Field Msr/Obs,WATER,NA,6/5/2013,4:41:00,EST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.08,6.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:41,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_18.1_P,Field Msr/Obs,WATER,NA,9/24/2013,10:06:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:06,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_1_P,Field Msr/Obs,WATER,NA,8/5/2010,2:12:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.9,22.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:12,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_11.4_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.74,13.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_39.1_P,Field Msr/Obs,WATER,NA,6/5/2013,4:42:00,EST,NA,NA,NA,39.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.91,5.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:42,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_13.5_P,Field Msr/Obs,WATER,NA,5/29/2014,1:20:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.92,10.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:20,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20110913_0.1_P,Field Msr/Obs,WATER,NA,9/13/2011,10:18:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.21,17.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2011 15:18,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_4.4_P,Field Msr/Obs,WATER,NA,10/16/2014,1:30:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.06,13.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:30,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_17.9_P,Field Msr/Obs,WATER,NA,10/10/2012,1:51:00,EST,NA,NA,NA,17.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.81,11.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:51,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_4.9_P,Field Msr/Obs,WATER,NA,9/24/2013,12:42:00,EST,NA,NA,NA,4.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.96,16.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:42,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_22_P,Field Msr/Obs,WATER,NA,10/10/2012,4:30:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.26,9.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:30,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140812_32.1_P,Field Msr/Obs,WATER,NA,8/12/2014,2:12:00,EST,NA,NA,NA,32.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 7:12,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_20_P,Field Msr/Obs,WATER,NA,9/24/2013,11:16:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.74,9.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:16,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_0.2_P,Field Msr/Obs,WATER,NA,8/11/2014,12:43:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.51,21.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:43,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_3.5_P,Field Msr/Obs,WATER,NA,10/12/2010,3:27:00,EST,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.74,13.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:27,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_13.7_P,Field Msr/Obs,WATER,NA,8/11/2014,7:35:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.78,13.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:35,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_3.9_P,Field Msr/Obs,WATER,NA,10/10/2012,1:47:00,EST,NA,NA,NA,3.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.84,13.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:47,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20130923_1.4_P,Field Msr/Obs,WATER,NA,9/23/2013,4:13:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 9:13,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_22.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:34:00,EST,NA,NA,NA,22.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.09,9.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:34,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_31.1_P,Field Msr/Obs,WATER,NA,9/24/2013,9:33:00,EST,NA,NA,NA,31.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.67,7.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:33,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_2.9_P,Field Msr/Obs,WATER,NA,5/28/2014,7:43:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.87,14.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:43,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140811_1.8_P,Field Msr/Obs,WATER,NA,8/11/2014,5:23:00,EST,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.62,21.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:23,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_29.6_P,Field Msr/Obs,WATER,NA,8/11/2014,12:53:00,EST,NA,NA,NA,29.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.88,14.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:53,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20130924_0.1_P,Field Msr/Obs,WATER,NA,9/24/2013,1:46:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.97,13.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:46,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20120511_9.2_P,Field Msr/Obs,WATER,NA,5/11/2012,11:11:00,EST,NA,NA,NA,9.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.83,8.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:11,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20101014_11.8_P,Field Msr/Obs,WATER,NA,10/14/2010,1:33:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.23,12.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:33,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_11.4_P,Field Msr/Obs,WATER,NA,8/6/2012,8:03:00,EST,NA,NA,NA,11.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.59,18.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:03,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_0.1_P,Field Msr/Obs,WATER,NA,8/4/2010,4:51:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:51,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_1.3_P,Field Msr/Obs,WATER,NA,5/11/2012,9:30:00,EST,NA,NA,NA,1.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:30,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_2.1_P,Field Msr/Obs,WATER,NA,8/4/2010,2:43:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.42,21.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:43,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140528_13_P,Field Msr/Obs,WATER,NA,5/28/2014,2:28:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.25,11.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 7:28,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120509_6.6_P,Field Msr/Obs,WATER,NA,5/9/2012,4:36:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.04,9.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 9:36,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_32.3_P,Field Msr/Obs,WATER,NA,9/24/2013,10:10:00,EST,NA,NA,NA,32.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.91,7.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_13.7_P,Field Msr/Obs,WATER,NA,5/29/2014,2:23:00,EST,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.82,11.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:23,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_45.5_P,Field Msr/Obs,WATER,NA,10/15/2009,4:30:00,EST,NA,NA,NA,45.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.03,7.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:30,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_7.2_P,Field Msr/Obs,WATER,NA,10/14/2009,5:49:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:49,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_7_P,Field Msr/Obs,WATER,NA,6/5/2013,6:26:00,EST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:26,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,11:31:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.04,17.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:31,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_0.9_P,Field Msr/Obs,WATER,NA,5/28/2014,1:41:00,EST,NA,NA,NA,0.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.67,14.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_1_P,Field Msr/Obs,WATER,NA,6/5/2013,6:23:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.39,14.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:23,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20141016_0.1_P,Field Msr/Obs,WATER,NA,10/16/2014,3:18:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.26,13.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 8:18,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20091014_21.7_P,Field Msr/Obs,WATER,NA,10/14/2009,4:31:00,EST,NA,NA,NA,21.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.36,9.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 9:31,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_1.9_P,Field Msr/Obs,WATER,NA,6/5/2013,5:39:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.59,11.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:39,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20101014_1_P,Field Msr/Obs,WATER,NA,10/14/2010,2:18:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.94,13.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 7:18,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_14_P,Field Msr/Obs,WATER,NA,8/6/2012,3:29:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.04,18.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:29,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20080723_10.2_P,Field Msr/Obs,WATER,NA,7/23/2008,1:00:00,EST,NA,NA,NA,10.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 6:00,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20120511_2.7_P,Field Msr/Obs,WATER,NA,5/11/2012,8:29:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.11,8.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 13:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_42.2_P,Field Msr/Obs,WATER,NA,10/16/2014,11:44:00,EST,NA,NA,NA,42.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.77,7.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:44,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_6.4_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.38,10.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_21.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:34:00,EST,NA,NA,NA,21.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:34,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20091014_13.8_P,Field Msr/Obs,WATER,NA,10/14/2009,9:43:00,EST,NA,NA,NA,13.8,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.87,8.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 14:43,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20150616_19_P,Field Msr/Obs,WATER,NA,6/16/2015,11:50:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.39,14.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2015 16:50,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_17.8_P,Field Msr/Obs,WATER,NA,8/4/2010,6:49:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.36,11.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_17.7_P,Field Msr/Obs,WATER,NA,10/15/2014,1:22:00,EST,NA,NA,NA,17.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.03,12.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:22,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_12.7_P,Field Msr/Obs,WATER,NA,8/4/2010,6:48:00,EST,NA,NA,NA,12.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.68,17.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20101014_27.9_P,Field Msr/Obs,WATER,NA,10/14/2010,8:28:00,EST,NA,NA,NA,27.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.42,8.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 13:28,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_15.2_P,Field Msr/Obs,WATER,NA,6/4/2013,8:35:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.36,8.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:35,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_0.2_P,Field Msr/Obs,WATER,NA,8/7/2012,11:53:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.96,20.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_9.8_P,Field Msr/Obs,WATER,NA,5/28/2014,7:45:00,EST,NA,NA,NA,9.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.75,14.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:45,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130604_26_P,Field Msr/Obs,WATER,NA,6/4/2013,2:22:00,EST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.54,8.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 7:22,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_32.1_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,32.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.79,7.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20101014_27.7_P,Field Msr/Obs,WATER,NA,10/14/2010,3:14:00,EST,NA,NA,NA,27.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.07,13.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 8:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_2.7_P,Field Msr/Obs,WATER,NA,6/17/2015,3:35:00,EST,NA,NA,NA,2.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.88,17.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:35,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_0.1_P,Field Msr/Obs,WATER,NA,8/12/2014,1:02:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.61,21.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:02,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_2.5_P,Field Msr/Obs,WATER,NA,5/29/2014,12:39:00,EST,NA,NA,NA,2.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.02,13.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_12.6_P,Field Msr/Obs,WATER,NA,9/24/2013,10:52:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.12,15.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:52,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_6.2_P,Field Msr/Obs,WATER,NA,5/29/2014,11:46:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.44,12.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:46,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_13.5_P,Field Msr/Obs,WATER,NA,6/4/2013,8:33:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.42,8.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:33,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_11.1_P,Field Msr/Obs,WATER,NA,9/23/2013,3:01:00,EST,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.84,15.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 8:01,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_16.6_P,Field Msr/Obs,WATER,NA,10/14/2009,7:38:00,EST,NA,NA,NA,16.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.61,10.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:38,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20080513_13_P,Field Msr/Obs,WATER,NA,5/13/2008,2:10:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 7:10,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_1.1_P,Field Msr/Obs,WATER,NA,6/5/2013,4:30:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.63,13.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:30,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20121010_16.3_P,Field Msr/Obs,WATER,NA,10/10/2012,4:24:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.45,12.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 9:24,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_14.7_P,Field Msr/Obs,WATER,NA,8/12/2014,1:07:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:07,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_22.4_P,Field Msr/Obs,WATER,NA,9/24/2013,9:31:00,EST,NA,NA,NA,22.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.69,8.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_0_P,Field Msr/Obs,WATER,NA,10/14/2010,9:18:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.24,14.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:18,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_25.3_P,Field Msr/Obs,WATER,NA,9/24/2013,9:32:00,EST,NA,NA,NA,25.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.27,8.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20120806_20.7_P,Field Msr/Obs,WATER,NA,8/6/2012,2:59:00,EST,NA,NA,NA,20.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.51,16.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:59,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140528_4.5_P,Field Msr/Obs,WATER,NA,5/28/2014,1:43:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.67,13.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 6:43,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20091014_6.2_P,Field Msr/Obs,WATER,NA,10/14/2009,5:48:00,EST,NA,NA,NA,6.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 10:48,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_1.1_P,Field Msr/Obs,WATER,NA,8/6/2012,2:14:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.59,20.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:14,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_16.3_P,Field Msr/Obs,WATER,NA,10/12/2010,6:09:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.51,10.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:09,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20120806_8.6_P,Field Msr/Obs,WATER,NA,8/6/2012,8:02:00,EST,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 13:02,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_14.2_P,Field Msr/Obs,WATER,NA,10/14/2009,7:37:00,EST,NA,NA,NA,14.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.86,10.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:37,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_3.6_P,Field Msr/Obs,WATER,NA,5/29/2014,2:50:00,EST,NA,NA,NA,3.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.97,13.97,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:50,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20150617_22.1_P,Field Msr/Obs,WATER,NA,6/17/2015,4:12:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.75,7.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:12,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_12.2_P,Field Msr/Obs,WATER,NA,8/4/2010,4:55:00,EST,NA,NA,NA,12.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.24,16.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:55,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_18.5_P,Field Msr/Obs,WATER,NA,5/28/2014,7:49:00,EST,NA,NA,NA,18.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.53,8.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:49,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_0_P,Field Msr/Obs,WATER,NA,6/5/2013,5:00:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.56,13.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:00,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_6.4_P,Field Msr/Obs,WATER,NA,5/11/2012,9:33:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.68,9.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:33,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20121010_10.1_P,Field Msr/Obs,WATER,NA,10/10/2012,3:58:00,EST,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.76,12.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 8:58,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_9.5_P,Field Msr/Obs,WATER,NA,8/12/2014,1:31:00,EST,NA,NA,NA,9.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.85,19.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:31,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20120511_5.6_P,Field Msr/Obs,WATER,NA,5/11/2012,9:32:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.66,9.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 14:32,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-085_20140811_1.6_P,Field Msr/Obs,WATER,NA,8/11/2014,7:21:00,EST,NA,NA,NA,1.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-085,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.59,22.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:21,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_3.4_P,Field Msr/Obs,WATER,NA,9/24/2013,10:01:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.05,17.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:01,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_14_P,Field Msr/Obs,WATER,NA,8/7/2012,12:00:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.32,13.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:00,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130605_13_P,Field Msr/Obs,WATER,NA,6/5/2013,7:16:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.33,8.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 12:16,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_1.9_P,Field Msr/Obs,WATER,NA,5/29/2014,2:20:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.42,13.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:20,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_16.8_P,Field Msr/Obs,WATER,NA,6/5/2013,6:58:00,EST,NA,NA,NA,16.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.84,7.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:58,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130604_10.6_P,Field Msr/Obs,WATER,NA,6/4/2013,3:52:00,EST,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.17,13.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:52,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_31.3_P,Field Msr/Obs,WATER,NA,9/24/2013,10:09:00,EST,NA,NA,NA,31.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:09,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20150617_2.8_P,Field Msr/Obs,WATER,NA,6/17/2015,3:24:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.91,17.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 8:24,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_17_P,Field Msr/Obs,WATER,NA,8/11/2014,2:00:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.56,18.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 7:00,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_7.7_P,Field Msr/Obs,WATER,NA,6/4/2013,8:30:00,EST,NA,NA,NA,7.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.48,9.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:30,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120806_5_P,Field Msr/Obs,WATER,NA,8/6/2012,2:15:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.06,20.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 7:15,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20121010_2.2_P,Field Msr/Obs,WATER,NA,10/10/2012,2:51:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.57,13.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:51,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20100804_23.4_P,Field Msr/Obs,WATER,NA,8/4/2010,2:50:00,EST,NA,NA,NA,23.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.56,8.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 7:50,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_0_P,Field Msr/Obs,WATER,NA,10/12/2010,3:22:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.53,14.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:22,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_3_P,Field Msr/Obs,WATER,NA,10/12/2010,3:26:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.77,13.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:26,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_25.7_P,Field Msr/Obs,WATER,NA,8/4/2010,3:59:00,EST,NA,NA,NA,25.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.09,8.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:59,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_3_P,Field Msr/Obs,WATER,NA,10/14/2009,7:33:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.17,11.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:33,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20130924_4.7_P,Field Msr/Obs,WATER,NA,9/24/2013,11:33:00,EST,NA,NA,NA,4.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.79,16.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:33,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20140528_3.8_P,Field Msr/Obs,WATER,NA,5/28/2014,6:42:00,EST,NA,NA,NA,3.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.53,16.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 11:42,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_39_P,Field Msr/Obs,WATER,NA,9/24/2013,8:59:00,EST,NA,NA,NA,39,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.09,7.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:59,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_34.1_P,Field Msr/Obs,WATER,NA,8/12/2014,1:37:00,EST,NA,NA,NA,34.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.25,7.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:37,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_23.7_P,Field Msr/Obs,WATER,NA,5/29/2014,12:46:00,EST,NA,NA,NA,23.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.71,7.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:46,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_27.3_P,Field Msr/Obs,WATER,NA,5/10/2012,3:45:00,EST,NA,NA,NA,27.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.54,6.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:45,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_13.5_P,Field Msr/Obs,WATER,NA,5/29/2014,2:53:00,EST,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.51,11.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:53,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_15_P,Field Msr/Obs,WATER,NA,8/12/2014,1:07:00,EST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.55,13.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:07,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130604_20_P,Field Msr/Obs,WATER,NA,6/4/2013,3:10:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.29,13.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 8:10,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_17.7_P,Field Msr/Obs,WATER,NA,10/16/2014,1:33:00,EST,NA,NA,NA,17.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.95,12.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_6.4_P,Field Msr/Obs,WATER,NA,6/5/2013,6:51:00,EST,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.31,10.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:51,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_15.2_P,Field Msr/Obs,WATER,NA,10/12/2010,6:07:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.68,13.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:07,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_17_P,Field Msr/Obs,WATER,NA,8/12/2014,1:08:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:08,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140529_15.8_P,Field Msr/Obs,WATER,NA,5/29/2014,2:53:00,EST,NA,NA,NA,15.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.77,9.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:53,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20091014_29_P,Field Msr/Obs,WATER,NA,10/14/2009,7:41:00,EST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.09,9.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 12:41,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_0.2_P,Field Msr/Obs,WATER,NA,10/16/2014,11:34:00,EST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.62,13.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:34,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_14.5_P,Field Msr/Obs,WATER,NA,8/12/2014,1:07:00,EST,NA,NA,NA,14.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.91,13.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:07,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_25.2_P,Field Msr/Obs,WATER,NA,9/24/2013,8:55:00,EST,NA,NA,NA,25.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_14.9_P,Field Msr/Obs,WATER,NA,5/29/2014,11:49:00,EST,NA,NA,NA,14.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.95,8.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:49,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_20_P,Field Msr/Obs,WATER,NA,8/4/2010,5:02:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.24,10.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 10:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20141015_3_P,Field Msr/Obs,WATER,NA,10/15/2014,5:05:00,EST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.24,12.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 10:05,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_14.3_P,Field Msr/Obs,WATER,NA,6/5/2013,6:29:00,EST,NA,NA,NA,14.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:29,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20100805_1_P,Field Msr/Obs,WATER,NA,8/5/2010,3:16:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 8:16,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20141015_2.9_P,Field Msr/Obs,WATER,NA,10/15/2014,1:41:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.57,12.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:41,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100602_9.6_P,Field Msr/Obs,WATER,NA,6/2/2010,2:15:00,EST,NA,NA,NA,9.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.75,8.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 7:15,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_1.1_P,Field Msr/Obs,WATER,NA,8/4/2010,3:43:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.18,21.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:43,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_20.5_P,Field Msr/Obs,WATER,NA,10/15/2014,1:22:00,EST,NA,NA,NA,20.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.78,11.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:22,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20100602_23.3_P,Field Msr/Obs,WATER,NA,6/2/2010,5:15:00,EST,NA,NA,NA,23.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.36,8.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 10:15,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_20.8_P,Field Msr/Obs,WATER,NA,10/16/2014,11:38:00,EST,NA,NA,NA,20.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.32,12.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:38,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_7.2_P,Field Msr/Obs,WATER,NA,6/5/2013,4:32:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.13,12.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:32,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20141015_22_P,Field Msr/Obs,WATER,NA,10/15/2014,12:30:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.34,12.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 17:30,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090519_1.1_P,Field Msr/Obs,WATER,NA,5/19/2009,12:50:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.48,12.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 17:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_14.6_P,Field Msr/Obs,WATER,NA,9/24/2013,10:04:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.55,12.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:04,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_4.2_P,Field Msr/Obs,WATER,NA,6/4/2013,8:27:00,EST,NA,NA,NA,4.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.71,11.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:27,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20091015_46_P,Field Msr/Obs,WATER,NA,10/15/2009,4:30:00,EST,NA,NA,NA,46,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.93,6.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 9:30,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_4_P,Field Msr/Obs,WATER,NA,8/5/2010,11:17:00,EST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.17,21.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:17,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130924_14.1_P,Field Msr/Obs,WATER,NA,9/24/2013,8:50:00,EST,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.05,17.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 13:50,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20121011_2.9_P,Field Msr/Obs,WATER,NA,10/11/2012,8:49:00,EST,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 13:49,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120510_8.3_P,Field Msr/Obs,WATER,NA,5/10/2012,4:38:00,EST,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.81,8.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 9:38,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20101013_3.2_P,Field Msr/Obs,WATER,NA,10/13/2010,12:21:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.65,14.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 17:21,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120807_0.1_P,Field Msr/Obs,WATER,NA,8/7/2012,11:19:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.95,20.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:19,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20141015_3.7_P,Field Msr/Obs,WATER,NA,10/15/2014,2:21:00,EST,NA,NA,NA,3.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 7:21,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20120510_5.8_P,Field Msr/Obs,WATER,NA,5/10/2012,3:39:00,EST,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.19,8.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/10/2012 8:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20140812_13_P,Field Msr/Obs,WATER,NA,8/12/2014,3:33:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.15,15.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:33,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_6.3_P,Field Msr/Obs,WATER,NA,9/24/2013,12:43:00,EST,NA,NA,NA,6.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.94,16.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:43,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_4.5_P,Field Msr/Obs,WATER,NA,10/14/2010,9:20:00,EST,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:20,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_14_P,Field Msr/Obs,WATER,NA,10/9/2012,2:30:00,EST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.55,12.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:30,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20140811_3.3_P,Field Msr/Obs,WATER,NA,8/11/2014,1:36:00,EST,NA,NA,NA,3.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.94,19.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:36,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20140811_4.6_P,Field Msr/Obs,WATER,NA,8/11/2014,1:58:00,EST,NA,NA,NA,4.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.51,19.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 6:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130924_1.9_P,Field Msr/Obs,WATER,NA,9/24/2013,1:24:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.91,14.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:24,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090728_12.5_P,Field Msr/Obs,WATER,NA,7/28/2009,11:54:00,EST,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.24,15.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 16:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20101012_0.5_P,Field Msr/Obs,WATER,NA,10/12/2010,3:23:00,EST,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.21,15.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 8:23,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_31.7_P,Field Msr/Obs,WATER,NA,8/5/2010,2:22:00,EST,NA,NA,NA,31.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:22,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20100804_12.5_P,Field Msr/Obs,WATER,NA,8/4/2010,6:48:00,EST,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.63,18.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 11:48,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_2_P,Field Msr/Obs,WATER,NA,9/24/2013,12:41:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.15,17.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:41,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_1.4_P,Field Msr/Obs,WATER,NA,8/12/2014,3:11:00,EST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.66,20.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:11,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_22.1_P,Field Msr/Obs,WATER,NA,10/16/2014,12:50:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.98,12.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:50,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20141015_1.5_P,Field Msr/Obs,WATER,NA,10/15/2014,1:18:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.96,12.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2014 6:18,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_7.2_P,Field Msr/Obs,WATER,NA,8/12/2014,1:04:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.14,20.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:04,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_38.1_P,Field Msr/Obs,WATER,NA,8/12/2014,1:38:00,EST,NA,NA,NA,38.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.09,7.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:38,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20110912_1_P,Field Msr/Obs,WATER,NA,9/12/2011,7:19:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2011 12:19,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_40.7_P,Field Msr/Obs,WATER,NA,8/7/2012,11:05:00,EST,NA,NA,NA,40.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.71,5.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:05,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_16.1_P,Field Msr/Obs,WATER,NA,6/4/2013,8:36:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.18,8.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:36,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_21.9_P,Field Msr/Obs,WATER,NA,10/16/2014,1:34:00,EST,NA,NA,NA,21.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.45,12.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:34,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_2.6_P,Field Msr/Obs,WATER,NA,10/12/2010,6:01:00,EST,NA,NA,NA,2.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.28,15.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 11:01,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_17_P,Field Msr/Obs,WATER,NA,8/12/2014,1:32:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.82,12.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_26.3_P,Field Msr/Obs,WATER,NA,8/5/2010,2:20:00,EST,NA,NA,NA,26.3,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:20,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130924_0_P,Field Msr/Obs,WATER,NA,9/24/2013,1:22:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.07,17.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 6:22,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_1.9_P,Field Msr/Obs,WATER,NA,5/29/2014,12:38:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.08,13.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:38,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20130923_2_P,Field Msr/Obs,WATER,NA,9/23/2013,2:58:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.51,16.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:58,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20090728_9.4_P,Field Msr/Obs,WATER,NA,7/28/2009,1:56:00,EST,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.91,17.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 6:56,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20101014_1_P,Field Msr/Obs,WATER,NA,10/14/2010,1:12:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.94,7.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 6:12,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_15.2_P,Field Msr/Obs,WATER,NA,9/24/2013,12:47:00,EST,NA,NA,NA,15.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.88,11.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:47,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100602_19.8_P,Field Msr/Obs,WATER,NA,6/2/2010,4:01:00,EST,NA,NA,NA,19.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 9:01,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130924_12.4_P,Field Msr/Obs,WATER,NA,9/24/2013,10:51:00,EST,NA,NA,NA,12.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.91,15.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:51,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130605_34_P,Field Msr/Obs,WATER,NA,6/5/2013,5:53:00,EST,NA,NA,NA,34,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.54,6.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_27.2_P,Field Msr/Obs,WATER,NA,10/16/2014,12:54:00,EST,NA,NA,NA,27.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.71,9.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:54,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_5.1_P,Field Msr/Obs,WATER,NA,10/15/2009,3:20:00,EST,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:20,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20090910_26.9_P,Field Msr/Obs,WATER,NA,9/10/2009,11:16:00,EST,NA,NA,NA,26.9,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.62,16.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/10/2009 16:16,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_5.5_P,Field Msr/Obs,WATER,NA,6/5/2013,6:25:00,EST,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.82,10.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:25,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20100805_16_P,Field Msr/Obs,WATER,NA,8/5/2010,11:23:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.54,11.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 16:23,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_19_P,Field Msr/Obs,WATER,NA,10/16/2014,12:50:00,EST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.09,13.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:50,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20130924_1.9_P,Field Msr/Obs,WATER,NA,9/24/2013,10:00:00,EST,NA,NA,NA,1.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.06,17.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 15:00,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20091015_43_P,Field Msr/Obs,WATER,NA,10/15/2009,3:32:00,EST,NA,NA,NA,43,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.83,7.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 8:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20130604_5_P,Field Msr/Obs,WATER,NA,6/4/2013,7:30:00,EST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.75,16.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 12:30,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_14.4_P,Field Msr/Obs,WATER,NA,6/5/2013,5:07:00,EST,NA,NA,NA,14.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.68,10.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:07,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20141016_19.2_P,Field Msr/Obs,WATER,NA,10/16/2014,12:03:00,EST,NA,NA,NA,19.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.04,13.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:03,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_0_P,Field Msr/Obs,WATER,NA,5/9/2012,2:45:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.63,10.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20130923_13.4_P,Field Msr/Obs,WATER,NA,9/23/2013,2:31:00,EST,NA,NA,NA,13.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.67,16.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 7:31,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20150617_14.6_P,Field Msr/Obs,WATER,NA,6/17/2015,4:32:00,EST,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.72,11.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 9:32,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20121010_6.9_P,Field Msr/Obs,WATER,NA,10/10/2012,2:17:00,EST,NA,NA,NA,6.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.39,13.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 7:17,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140811_3.4_P,Field Msr/Obs,WATER,NA,8/11/2014,7:33:00,EST,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.64,20.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 12:33,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_9_P,Field Msr/Obs,WATER,NA,10/14/2010,9:20:00,EST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.29,14.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:20,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_16.1_P,Field Msr/Obs,WATER,NA,8/12/2014,1:32:00,EST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.42,13.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:32,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_10.9_P,Field Msr/Obs,WATER,NA,8/7/2012,11:58:00,EST,NA,NA,NA,10.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.35,17.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:58,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_30.1_P,Field Msr/Obs,WATER,NA,8/11/2014,12:53:00,EST,NA,NA,NA,30.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.13,14.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:53,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20130923_21.6_P,Field Msr/Obs,WATER,NA,9/23/2013,1:45:00,EST,NA,NA,NA,21.6,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.38,16.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2013 6:45,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR167_20120806_1.1_P,Field Msr/Obs,WATER,NA,8/6/2012,3:26:00,EST,NA,NA,NA,1.1,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR167,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.49,20.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 8:26,NA,Fontenelle Reservoir Caseknife Canyon,Reservoir,NA,14040101,NA,NA,NA,NA,42.109666,-110.124394,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_11_P,Field Msr/Obs,WATER,NA,8/12/2014,3:13:00,EST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.41,17.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:13,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_19.9_P,Field Msr/Obs,WATER,NA,10/14/2010,9:23:00,EST,NA,NA,NA,19.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:23,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20141016_21_P,Field Msr/Obs,WATER,NA,10/16/2014,12:50:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.07,13.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 17:50,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_11.8_P,Field Msr/Obs,WATER,NA,10/16/2014,11:36:00,EST,NA,NA,NA,11.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:36,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_16.3_P,Field Msr/Obs,WATER,NA,10/14/2010,9:21:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.17,14.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:21,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_17_P,Field Msr/Obs,WATER,NA,5/29/2014,1:22:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:22,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_4.7_P,Field Msr/Obs,WATER,NA,6/5/2013,5:03:00,EST,NA,NA,NA,4.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.77,12.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:03,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130604_16_P,Field Msr/Obs,WATER,NA,6/4/2013,8:37:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.31,8.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/4/2013 13:37,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_27.7_P,Field Msr/Obs,WATER,NA,8/11/2014,12:52:00,EST,NA,NA,NA,27.7,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.16,16.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:52,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20101014_22.1_P,Field Msr/Obs,WATER,NA,10/14/2010,9:24:00,EST,NA,NA,NA,22.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.47,9.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 14:24,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20141016_38_P,Field Msr/Obs,WATER,NA,10/16/2014,11:42:00,EST,NA,NA,NA,38,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 16:42,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090728_9.6_P,Field Msr/Obs,WATER,NA,7/28/2009,6:49:00,EST,NA,NA,NA,9.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 11:49,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100804_5.2_P,Field Msr/Obs,WATER,NA,8/4/2010,4:53:00,EST,NA,NA,NA,5.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.32,21.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 9:53,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140529_9.3_P,Field Msr/Obs,WATER,NA,5/29/2014,2:22:00,EST,NA,NA,NA,9.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.92,12.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 7:22,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_4.8_P,Field Msr/Obs,WATER,NA,6/5/2013,6:25:00,EST,NA,NA,NA,4.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:25,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20100601_2.1_P,Field Msr/Obs,WATER,NA,6/1/2010,5:40:00,EST,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.28,14.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2010 10:40,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20140812_13_P,Field Msr/Obs,WATER,NA,8/12/2014,3:13:00,EST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.33,14.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 8:13,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_17.8_P,Field Msr/Obs,WATER,NA,8/12/2014,1:10:00,EST,NA,NA,NA,17.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.43,11.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:10,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20140528_1.5_P,Field Msr/Obs,WATER,NA,5/28/2014,7:43:00,EST,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.91,14.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/28/2014 12:43,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140529_15.6_P,Field Msr/Obs,WATER,NA,5/29/2014,12:44:00,EST,NA,NA,NA,15.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.45,9.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 17:44,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_18_P,Field Msr/Obs,WATER,NA,9/24/2013,11:16:00,EST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:16,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20100602_22_P,Field Msr/Obs,WATER,NA,6/2/2010,3:45:00,EST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.26,8.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 8:45,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_5.9_P,Field Msr/Obs,WATER,NA,10/16/2014,1:31:00,EST,NA,NA,NA,5.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.04,13.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:31,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130924_38.7_P,Field Msr/Obs,WATER,NA,9/24/2013,9:36:00,EST,NA,NA,NA,38.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.52,7.52,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 14:36,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20141016_24.8_P,Field Msr/Obs,WATER,NA,10/16/2014,2:04:00,EST,NA,NA,NA,24.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.42,10.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:04,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTRINF_20120806_2.2_P,Field Msr/Obs,WATER,NA,8/6/2012,4:13:00,EST,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTRINF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.83,19.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2012 9:13,NA,Fontenelle Reservoir Green River Inflow,Reservoir,NA,14040101,NA,NA,NA,NA,42.1581,-110.184,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20091014_8.1_P,Field Msr/Obs,WATER,NA,10/14/2009,3:05:00,EST,NA,NA,NA,8.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 8:05,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090519_3.2_P,Field Msr/Obs,WATER,NA,5/19/2009,9:00:00,EST,NA,NA,NA,3.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.88,11.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 14:00,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20130924_17_P,Field Msr/Obs,WATER,NA,9/24/2013,12:48:00,EST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.53,12.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:48,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_4.4_P,Field Msr/Obs,WATER,NA,8/11/2014,12:43:00,EST,NA,NA,NA,4.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.61,20.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:43,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_8.8_P,Field Msr/Obs,WATER,NA,8/7/2012,11:56:00,EST,NA,NA,NA,8.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.78,19.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 16:56,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20130605_20.2_P,Field Msr/Obs,WATER,NA,6/5/2013,5:15:00,EST,NA,NA,NA,20.2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.79,7.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 10:15,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20101012_0_P,Field Msr/Obs,WATER,NA,10/12/2010,5:59:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.47,15.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 10:59,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20140529_21.7_P,Field Msr/Obs,WATER,NA,5/29/2014,1:23:00,EST,NA,NA,NA,21.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.56,7.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 6:23,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20100805_31.4_P,Field Msr/Obs,WATER,NA,8/5/2010,2:22:00,EST,NA,NA,NA,31.4,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.24,12.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 7:22,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20121009_10_P,Field Msr/Obs,WATER,NA,10/9/2012,2:30:00,EST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.62,12.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2012 7:30,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20120807_16.9_P,Field Msr/Obs,WATER,NA,8/7/2012,12:02:00,EST,NA,NA,NA,16.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.71,11.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 17:02,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_0.1_P,Field Msr/Obs,WATER,NA,8/7/2012,10:51:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.71,20.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:51,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_20.1_P,Field Msr/Obs,WATER,NA,8/12/2014,1:33:00,EST,NA,NA,NA,20.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.08,10.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:33,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_18.1_P,Field Msr/Obs,WATER,NA,6/5/2013,4:37:00,EST,NA,NA,NA,18.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:37,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0743_20140812_42.5_P,Field Msr/Obs,WATER,NA,8/12/2014,1:39:00,EST,NA,NA,NA,42.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0743,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.98,6.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:39,NA,Flaming Gorge-Green River- Nr Middle Marsh,Reservoir,NA,14040106,NA,NA,NA,NA,41.136504,-109.546667,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140529_41.7_P,Field Msr/Obs,WATER,NA,5/29/2014,11:55:00,EST,NA,NA,NA,41.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.24,6.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 16:55,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20140812_16.7_P,Field Msr/Obs,WATER,NA,8/12/2014,1:09:00,EST,NA,NA,NA,16.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.16,12.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2014 6:09,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20120509_7.2_P,Field Msr/Obs,WATER,NA,5/9/2012,2:47:00,EST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/9/2012 7:47,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20120807_4.3_P,Field Msr/Obs,WATER,NA,8/7/2012,10:52:00,EST,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.14,20.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 15:52,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130605_0_P,Field Msr/Obs,WATER,NA,6/5/2013,6:47:00,EST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.55,15.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:47,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1198_20090727_10.5_P,Field Msr/Obs,WATER,NA,7/27/2009,8:15:00,EST,NA,NA,NA,10.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1198,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.17,17.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/27/2009 13:15,NA,Flaming Gorge-Green River off Firehole Canyon Campground,Reservoir,NA,14040106,NA,NA,NA,NA,41.353587,-109.450984,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20130605_9.9_P,Field Msr/Obs,WATER,NA,6/5/2013,6:28:00,EST,NA,NA,NA,9.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.05,9.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 11:28,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20090519_16.3_P,Field Msr/Obs,WATER,NA,5/19/2009,8:10:00,EST,NA,NA,NA,16.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.42,7.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2009 13:10,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-015_20140529_8.9_P,Field Msr/Obs,WATER,NA,5/29/2014,3:10:00,EST,NA,NA,NA,8.9,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-015,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.34,14.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/29/2014 8:10,NA,Blacks Fork Abv Confl w/Green River,Reservoir,NA,14040107,NA,NA,NA,NA,41.2948,-109.553,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20100804_12.6_P,Field Msr/Obs,WATER,NA,8/4/2010,3:51:00,EST,NA,NA,NA,12.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.05,15.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 8:51,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20130924_12.1_P,Field Msr/Obs,WATER,NA,9/24/2013,11:12:00,EST,NA,NA,NA,12.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.07,17.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:12,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FG-Upper_20141016_14.7_P,Field Msr/Obs,WATER,NA,10/16/2014,1:33:00,EST,NA,NA,NA,14.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FG-Upper,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 6:33,NA,Flaming Gorge at Buckboard,Reservoir,NA,14040106,NA,NA,NA,NA,41.2467,-109.587,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR1054_20141016_10.3_P,Field Msr/Obs,WATER,NA,10/16/2014,2:19:00,EST,NA,NA,NA,10.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR1054,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.84,12.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/16/2014 7:19,NA,Flaming Gorge-Green River- below confluence with Blacks Fork,Reservoir,NA,14040106,NA,NA,NA,NA,41.285701,-109.529815,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20140811_2.8_P,Field Msr/Obs,WATER,NA,8/11/2014,5:52:00,EST,NA,NA,NA,2.8,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.98,21.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 10:52,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR-INF_20120511_1_P,Field Msr/Obs,WATER,NA,5/11/2012,11:35:00,EST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.85,13.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/11/2012 16:35,NA,Green River Inflow,Reservoir,NA,14040106,NA,NA,NA,NA,41.4043,-109.417,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20121010_20_P,Field Msr/Obs,WATER,NA,10/10/2012,1:52:00,EST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.32,10.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 6:52,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGBF-INF_20130924_0.1_P,Field Msr/Obs,WATER,NA,9/24/2013,12:06:00,EST,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGBF-INF,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.05,15.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:06,NA,Blacks Fork Inflow,Reservoir,NA,14040107,NA,NA,NA,NA,41.3381,-109.569,24000,NA,NA,GPS-Unspecified,WGS84,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0634_20130605_5.6_P,Field Msr/Obs,WATER,NA,6/5/2013,4:31:00,EST,NA,NA,NA,5.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0634,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.62,12.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 9:31,NA,Flaming Gorge-Green River- At Wildhorse Draw,Reservoir,NA,14040106,NA,NA,NA,NA,41.072934,-109.531044,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20090728_6.6_P,Field Msr/Obs,WATER,NA,7/28/2009,10:01:00,EST,NA,NA,NA,6.6,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.83,20.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2009 15:01,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR003_20140811_21_P,Field Msr/Obs,WATER,NA,8/11/2014,12:48:00,EST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR003,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2014 17:48,NA,Fontenelle Reservoir near Dam,Reservoir,NA,14040101,NA,NA,NA,NA,42.029457,-110.0713,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FRWQM_FONTR067_20091014_2_P,Field Msr/Obs,WATER,NA,10/14/2009,8:58:00,EST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FRWQM,NA,UC_REGION_USBOR_WQX-FONTR067,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2009 13:58,NA,Fontenelle Reservoir Lower-mid,Reservoir,NA,14040101,NA,NA,NA,NA,42.061997,-110.099106,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0985_20120807_16_P,Field Msr/Obs,WATER,NA,8/7/2012,1:06:00,EST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0985,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.92,12.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 6:06,NA,Flaming Gorge-Green River at RKM 98.5,Reservoir,NA,14040106,NA,NA,NA,NA,41.248278,-109.579452,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_41999736,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_41999735,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-19,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-3,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-17,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-8,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-10,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_41999701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999790-6,Field Msr/Obs,WATER,NA,9/11/2002,8:20:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999790-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2002 15:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-2,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999720-6,Field Msr/Obs,WATER,NA,8/1/2002,7:39:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999720-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 14:39,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-18,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4596,Sample-Routine,WATER,NA,8/11/2011,10:21:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:21,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999803,Field Msr/Obs,WATER,NA,9/26/2002,8:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_41999803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/26/2002 15:20,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-12,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-3,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-9,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-11,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-2,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-12,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-5,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5380,Sample-Routine,WATER,NA,7/25/2012,10:41:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:41,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-9,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,55,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-13,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-11,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-1,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,89,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-9,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999790-5,Field Msr/Obs,WATER,NA,9/11/2002,8:20:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999790-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2002 15:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4599,Sample-Routine,WATER,NA,8/11/2011,10:28:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:28,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-8,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999763-3,Field Msr/Obs,WATER,NA,8/28/2002,11:21:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999763-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 18:21,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-5,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-12,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-7,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-6,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999739-2,Field Msr/Obs,WATER,NA,8/13/2002,11:36:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999739-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 18:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-1,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-8,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-12,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-5,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-1,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-7,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-11,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-3,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-1,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,98,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999720-1,Field Msr/Obs,WATER,NA,8/1/2002,7:39:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999720-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 14:39,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999703,Field Msr/Obs,WATER,NA,7/19/2002,12:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_41999703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:06,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-5,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,75,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-1,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,82,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-14,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-10,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-1,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-3,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-11,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-7,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-6,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-12,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-2,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3824,Sample-Routine,WATER,NA,7/28/2013,15:10:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 21:10,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-12,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999739,Field Msr/Obs,WATER,NA,8/13/2002,11:36:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_41999739,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 18:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-2,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_41999760,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-12,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-8,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1918,Sample-Routine,WATER,NA,6/17/2015,11:13:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 17:13,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177157-52152002,Field Msr/Obs,WATER,NA,8/27/2002,13:44:00,MST,NA,NA,NA,20,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 20:44,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-18,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00300286,Sample-Routine,WATER,Surface Water,4/15/2003,14:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430018106300201,NA,NA,Not determined,Routine sample,40,USGS parameter code 82398,Multiple verticals,US DH-81,NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,4/15/2003 20:00,NA,"ILLCO SEEP NEAR OUTLET, NEAR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.0049661,-106.5011471,NA,Unknown,Unknown,Interpolated from MAP.,NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-3,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999739-6,Field Msr/Obs,WATER,NA,8/13/2002,11:36:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999739-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 18:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999681/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/3/2002,12:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Replicate Organization ActivityID=YELL_YL004.0M_41999681/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 19:01,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-3,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-5,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-11,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177158-52182002,Field Msr/Obs,WATER,NA,8/27/2002,11:56:00,MST,NA,NA,NA,10,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 18:56,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_41999762,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-3,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999680/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/3/2002,12:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Split Organization ActivityID=YELL_YL004.0M_41999680/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 19:01,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-2,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-2,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999790-1,Field Msr/Obs,WATER,NA,9/11/2002,8:20:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999790-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2002 15:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-5,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3199,Sample-Routine,WATER,NA,7/9/2013,11:24:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4598,Sample-Routine,WATER,NA,8/11/2011,10:26:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:26,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-3,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-7,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-11,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-27,Field Msr/Obs,WATER,NA,8/26/2003,10:35:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-30,Field Msr/Obs,WATER,NA,8/26/2003,10:40:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:40,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-28,Field Msr/Obs,WATER,NA,7/17/2003,10:15:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-6,Field Msr/Obs,WATER,NA,8/26/2003,10:05:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:05,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000118-4,Field Msr/Obs,WATER,NA,6/5/2003,13:37:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000118-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 20:37,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-11,Field Msr/Obs,WATER,NA,10/20/2003,10:02:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:02,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000253,Field Msr/Obs,WATER,NA,8/11/2003,11:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000253,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3970,Sample-Routine,WATER,NA,8/5/2010,11:19:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:19,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3607,Sample-Routine,WATER,NA,7/12/2001,11:48:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:48,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-21,Field Msr/Obs,WATER,NA,8/26/2003,10:27:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-6,Field Msr/Obs,WATER,NA,7/17/2003,9:43:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:43,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000344,Field Msr/Obs,WATER,NA,9/8/2003,14:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000344,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2003 21:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_16,Field Msr/Obs,WATER,NA,8/11/2003,9:43:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:43,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_13,Field Msr/Obs,WATER,NA,8/11/2003,9:47:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:47,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-12,Field Msr/Obs,WATER,NA,7/17/2003,9:52:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:52,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-8,Field Msr/Obs,WATER,NA,8/26/2003,11:18:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:18,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3825,Sample-Routine,WATER,NA,7/28/2013,15:12:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 21:12,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000116/1,Quality Control Field Replicate Msr/Obs,WATER,NA,6/5/2003,13:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Split Organization ActivityID=YELL_YL007.0M_42000116/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 20:32,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_18,Field Msr/Obs,WATER,NA,8/11/2003,9:40:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000296/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/26/2003,12:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Split Organization ActivityID=YELL_YL003.0M_42000296/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 19:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000226,Field Msr/Obs,WATER,NA,7/29/2003,12:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000226,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2003 19:27,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-9,Field Msr/Obs,WATER,NA,6/20/2003,11:52:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:52,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000403,Field Msr/Obs,WATER,NA,10/20/2003,13:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 20:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3190,Sample-Routine,WATER,NA,7/9/2013,11:22:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-19,Field Msr/Obs,WATER,NA,10/8/2003,9:43:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:43,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:32:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:32,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-5,Field Msr/Obs,WATER,NA,10/8/2003,9:23:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-25,Field Msr/Obs,WATER,NA,8/26/2003,9:28:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:28,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000168,Field Msr/Obs,WATER,NA,7/2/2003,9:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000168,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/2/2003 16:16,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-7,Field Msr/Obs,WATER,NA,6/20/2003,11:50:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-12,Field Msr/Obs,WATER,NA,10/8/2003,9:33:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:33,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4477,Sample-Routine,WATER,NA,8/19/2014,11:25:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:25,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000255,Field Msr/Obs,WATER,NA,8/11/2003,12:36:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000255,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-22,Field Msr/Obs,WATER,NA,8/26/2003,11:38:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:38,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-2,Field Msr/Obs,WATER,NA,7/17/2003,9:37:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:37,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-5,Field Msr/Obs,WATER,NA,8/26/2003,8:59:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 15:59,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-10,Field Msr/Obs,WATER,NA,7/17/2003,9:02:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:02,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-25,Field Msr/Obs,WATER,NA,8/26/2003,10:33:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:33,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000189,Field Msr/Obs,WATER,NA,7/15/2003,9:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000189,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2003 16:33,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000104,Field Msr/Obs,WATER,NA,6/3/2003,9:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000104,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2003 16:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2821,Sample-Routine,WATER,NA,6/25/2013,11:19:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:19,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-17,Field Msr/Obs,WATER,NA,8/26/2003,10:21:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:21,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3230,Sample-Routine,WATER,NA,7/28/2015,10:19:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:19,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-4,Field Msr/Obs,WATER,NA,10/20/2003,9:52:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:52,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-1,Field Msr/Obs,WATER,NA,8/11/2003,11:48:00,MST,NA,NA,NA,37,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:48,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000223/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/29/2003,9:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Split Organization ActivityID=YELL_YL007.0M_42000223/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2003 16:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000349,Field Msr/Obs,WATER,NA,9/24/2003,13:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000349,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2003 20:46,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-13,Field Msr/Obs,WATER,NA,8/26/2003,11:25:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000404,Field Msr/Obs,WATER,NA,10/20/2003,13:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 20:58,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-11,Field Msr/Obs,WATER,NA,10/8/2003,9:31:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:31,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000336,Field Msr/Obs,WATER,NA,9/8/2003,8:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000336,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2003 15:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-24,Field Msr/Obs,WATER,NA,7/17/2003,10:09:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000216,Field Msr/Obs,WATER,NA,7/28/2003,13:02:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000216,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2003 20:02,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-20,Field Msr/Obs,WATER,NA,7/17/2003,10:03:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:03,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-18,Field Msr/Obs,WATER,NA,8/26/2003,9:17:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:17,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_20,Field Msr/Obs,WATER,NA,8/11/2003,9:37:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:37,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-12,Field Msr/Obs,WATER,NA,8/11/2003,12:04:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:04,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-16,Field Msr/Obs,WATER,NA,10/8/2003,9:39:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:39,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000265/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/12/2003,11:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42000265/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2003 18:13,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000350/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/24/2003,13:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Split Organization ActivityID=YELL_YL005.0M_42000350/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2003 20:46,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000202/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/17/2003,8:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Split Organization ActivityID=YELL_YL005.0M_42000202/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:48,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-3,Field Msr/Obs,WATER,NA,6/20/2003,11:44:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:52:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:52,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-1,Field Msr/Obs,WATER,NA,10/20/2003,9:48:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:48,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000299,Field Msr/Obs,WATER,NA,8/26/2003,13:19:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000299,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 20:19,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-26,Field Msr/Obs,WATER,NA,8/26/2003,9:29:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:29,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-9,Field Msr/Obs,WATER,NA,7/17/2003,9:00:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:00,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000343,Field Msr/Obs,WATER,NA,9/8/2003,14:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000343,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2003 21:24,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000218,Field Msr/Obs,WATER,NA,7/28/2003,13:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000218,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2003 20:48,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-20,Field Msr/Obs,WATER,NA,10/8/2003,9:44:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-1,Field Msr/Obs,WATER,NA,8/26/2003,9:58:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:58,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2650,Sample-Routine,WATER,NA,6/25/2014,11:41:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:41,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000357/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/25/2003,15:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Replicate Organization ActivityID=YELL_YL007.0M_42000357/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/25/2003 22:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205,Field Msr/Obs,WATER,NA,7/17/2003,9:35:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000205,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_3,Field Msr/Obs,WATER,NA,8/11/2003,10:02:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 17:02,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-24,Field Msr/Obs,WATER,NA,10/8/2003,9:50:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000192/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/15/2003,9:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Replicate Organization ActivityID=YELL_YL007.0M_42000192/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2003 16:33,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-5,Field Msr/Obs,WATER,NA,8/26/2003,10:04:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-21,Field Msr/Obs,WATER,NA,8/26/2003,11:37:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:37,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-14,Field Msr/Obs,WATER,NA,10/8/2003,9:36:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-9,Field Msr/Obs,WATER,NA,8/26/2003,11:19:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:19,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000402,Field Msr/Obs,WATER,NA,10/20/2003,13:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 20:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000225-5,Field Msr/Obs,WATER,NA,7/29/2003,9:18:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000225-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2003 16:18,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-19,Field Msr/Obs,WATER,NA,8/26/2003,11:34:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:34,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000295,Field Msr/Obs,WATER,NA,8/26/2003,12:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000295,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 19:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000118-2,Field Msr/Obs,WATER,NA,6/5/2003,13:34:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000118-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 20:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-2,Field Msr/Obs,WATER,NA,8/11/2003,11:49:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:49,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_60,Field Msr/Obs,WATER,NA,8/11/2003,9:30:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:30,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-22,Field Msr/Obs,WATER,NA,8/26/2003,9:23:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:23,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_SUR01_082401054G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,8/27/2008,10:47:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_SUR01,Duplicate water column parameters Organization ActivityID=GRTE_SUR01_082401054G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.47,13.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2008 16:47,NA,Surprise Lake,Lake,At Surprise Lake follow the trail down to the lake shore. You will see a spur trail going off to the left side of the lake; follow this trail to the outlet. The site is on the right site of the outlet looking at the lake.,17040101,NA,NA,NA,NA,43.72796726,-110.7773566,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9504.59,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_7,Field Msr/Obs,WATER,NA,8/11/2003,9:56:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3953,Sample-Routine,WATER,NA,7/28/2011,12:48:00,MDT,NA,NA,NA,27.1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:48,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-7,Field Msr/Obs,WATER,NA,10/8/2003,9:26:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:26,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_12,Field Msr/Obs,WATER,NA,8/11/2003,9:49:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:49,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-16,Field Msr/Obs,WATER,NA,8/26/2003,11:30:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:30,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-28,Field Msr/Obs,WATER,NA,8/26/2003,9:32:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:32,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_1,Field Msr/Obs,WATER,NA,8/11/2003,10:04:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 17:04,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-26,Field Msr/Obs,WATER,NA,7/17/2003,10:12:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:12,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-12,Field Msr/Obs,WATER,NA,8/26/2003,10:14:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:14,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-5,Field Msr/Obs,WATER,NA,6/20/2003,11:47:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-1,Field Msr/Obs,WATER,NA,8/26/2003,11:08:00,MST,NA,NA,NA,79.1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4595,Sample-Routine,WATER,NA,6/27/2012,10:04:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 16:04,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-21,Field Msr/Obs,WATER,NA,8/26/2003,9:22:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:22,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2558,Sample-Routine,WATER,NA,6/29/2011,10:42:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:42,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000312,Field Msr/Obs,WATER,NA,8/28/2003,10:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000312,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2003 17:55,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-2,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-13,Field Msr/Obs,WATER,NA,8/26/2003,10:15:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-13,Field Msr/Obs,WATER,NA,7/17/2003,9:53:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:53,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-10,Field Msr/Obs,WATER,NA,8/11/2003,12:01:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:01,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:54:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:54,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000225/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/29/2003,9:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Replicate Organization ActivityID=YELL_YL007.0M_42000225/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2003 16:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-15,Field Msr/Obs,WATER,NA,8/26/2003,10:18:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-11,Field Msr/Obs,WATER,NA,8/11/2003,12:02:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:02,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000339,Field Msr/Obs,WATER,NA,9/8/2003,13:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000339,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2003 20:01,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000177/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/3/2003,9:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Split Organization ActivityID=YELL_YL007.0M_42000177/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2003 16:55,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-27,Field Msr/Obs,WATER,NA,8/26/2003,9:30:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:30,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148,Field Msr/Obs,WATER,NA,6/20/2003,11:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000148,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_25,Field Msr/Obs,WATER,NA,8/11/2003,9:36:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:36,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-17,Field Msr/Obs,WATER,NA,10/8/2003,9:40:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-11,Field Msr/Obs,WATER,NA,8/26/2003,11:22:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:22,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294,Field Msr/Obs,WATER,NA,8/26/2003,11:07:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000294,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:07,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3683,Sample-Routine,WATER,NA,7/29/2009,11:31:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:31,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000169,Field Msr/Obs,WATER,NA,7/2/2003,9:44:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000169,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/2/2003 16:44,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-18,Field Msr/Obs,WATER,NA,8/26/2003,10:22:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:22,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410/2,Quality Control Field Replicate Msr/Obs,WATER,NA,10/20/2003,9:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Replicate Organization ActivityID=YELL_YL007.0M_42000410/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000193,Field Msr/Obs,WATER,NA,7/15/2003,12:10:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000193,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2003 19:10,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-18,Field Msr/Obs,WATER,NA,10/20/2003,10:12:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000222,Field Msr/Obs,WATER,NA,7/29/2003,9:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000222,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2003 16:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000207,Field Msr/Obs,WATER,NA,7/17/2003,11:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000207,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 18:47,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000347,Field Msr/Obs,WATER,NA,9/24/2003,14:37:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000347,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2003 21:37,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3229,Sample-Routine,WATER,NA,7/28/2015,10:18:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:18,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-3,Field Msr/Obs,WATER,NA,10/20/2003,9:51:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:51,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-17,Field Msr/Obs,WATER,NA,8/26/2003,9:16:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:16,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_DEL01_082401145G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,8/27/2008,11:45:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_DEL01,Collected field parameter and water column parameters Organization ActivityID=GRTE_DEL01_082401145G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.48,4.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2008 17:45,NA,Delta Lake,Lake,At the creek that the flows from Delta Lake follow this to the outlet of the lake. The site is within the boulders of the outlet where you can sample flowing water just at the edge of the lake.,17040101,NA,NA,NA,NA,43.7318538,-110.7709599,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,8990.72,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3233,Sample-Routine,WATER,NA,7/28/2015,10:24:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000106,Field Msr/Obs,WATER,NA,6/3/2003,12:45:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000106,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2003 19:45,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-6,Field Msr/Obs,WATER,NA,10/20/2003,9:55:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:55,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1877,Sample-Routine,WATER,NA,6/23/2004,11:26:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:26,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254,Field Msr/Obs,WATER,NA,8/11/2003,11:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000254,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:47,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-15,Field Msr/Obs,WATER,NA,8/11/2003,12:08:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:08,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000215,Field Msr/Obs,WATER,NA,7/28/2003,12:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000215,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2003 19:42,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-22,Field Msr/Obs,WATER,NA,7/17/2003,10:06:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:06,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-5,Field Msr/Obs,WATER,NA,10/20/2003,9:54:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-8,Field Msr/Obs,WATER,NA,8/11/2003,11:58:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:58,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-17,Field Msr/Obs,WATER,NA,7/17/2003,9:59:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:59,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3684,Sample-Routine,WATER,NA,7/29/2009,11:33:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:33,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000105,Field Msr/Obs,WATER,NA,6/3/2003,11:45:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000105,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2003 18:45,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1903,Sample-Routine,WATER,NA,6/23/2004,11:30:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000346,Field Msr/Obs,WATER,NA,9/24/2003,14:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000346,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2003 21:53,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000190/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/15/2003,9:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Split Organization ActivityID=YELL_YL007.0M_42000190/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2003 16:33,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_30,Field Msr/Obs,WATER,NA,8/11/2003,9:34:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:34,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-2,Field Msr/Obs,WATER,NA,8/26/2003,9:59:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:59,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-2,Field Msr/Obs,WATER,NA,10/20/2003,9:49:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-1,Field Msr/Obs,WATER,NA,7/17/2003,8:49:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:49,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000390,Field Msr/Obs,WATER,NA,10/8/2003,13:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000390,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 20:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-12,Field Msr/Obs,WATER,NA,7/17/2003,9:05:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-11,Field Msr/Obs,WATER,NA,7/17/2003,9:50:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:50,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3682,Sample-Routine,WATER,NA,7/29/2009,11:29:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:29,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000408/1,Quality Control Field Replicate Msr/Obs,WATER,NA,10/20/2003,9:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Split Organization ActivityID=YELL_YL007.0M_42000408/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-10,Field Msr/Obs,WATER,NA,6/20/2003,11:54:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000118-3,Field Msr/Obs,WATER,NA,6/5/2003,13:36:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000118-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 20:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293,Field Msr/Obs,WATER,NA,8/26/2003,9:57:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000293,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:57,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-14,Field Msr/Obs,WATER,NA,8/26/2003,10:17:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:17,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-23,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_19,Field Msr/Obs,WATER,NA,8/11/2003,9:38:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3602,Sample-Routine,WATER,NA,7/12/2001,11:39:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:39,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000355/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/25/2003,15:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Split Organization ActivityID=YELL_YL007.0M_42000355/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/25/2003 22:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-3,Field Msr/Obs,WATER,NA,10/8/2003,9:20:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-12,Field Msr/Obs,WATER,NA,8/26/2003,9:09:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-19,Field Msr/Obs,WATER,NA,7/17/2003,10:02:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-11,Field Msr/Obs,WATER,NA,6/20/2003,11:55:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:55,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000345,Field Msr/Obs,WATER,NA,9/24/2003,14:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000345,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2003 21:09,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/17/2003,8:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Replicate Organization ActivityID=YELL_YL005.0M_42000204/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:48,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-5,Field Msr/Obs,WATER,NA,8/11/2003,11:54:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:54,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-1,Field Msr/Obs,WATER,NA,10/8/2003,9:17:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000225-4,Field Msr/Obs,WATER,NA,7/29/2003,9:16:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000225-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2003 16:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000337,Field Msr/Obs,WATER,NA,9/8/2003,9:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000337,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2003 16:29,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-5,Field Msr/Obs,WATER,NA,8/26/2003,11:14:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:14,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000214,Field Msr/Obs,WATER,NA,7/28/2003,11:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000214,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2003 18:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-26,Field Msr/Obs,WATER,NA,8/26/2003,10:34:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:34,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000338,Field Msr/Obs,WATER,NA,9/8/2003,11:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000338,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2003 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000313/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/28/2003,10:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42000313/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2003 17:55,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000405,Field Msr/Obs,WATER,NA,10/20/2003,14:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 21:13,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:35:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:35,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-19,Field Msr/Obs,WATER,NA,8/26/2003,10:24:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:24,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-19,Field Msr/Obs,WATER,NA,8/11/2003,12:14:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:14,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:46:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:46,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:39:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:39,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-25,Field Msr/Obs,WATER,NA,8/26/2003,11:43:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:43,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-23,Field Msr/Obs,WATER,NA,8/26/2003,11:40:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:40,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-2,Field Msr/Obs,WATER,NA,8/26/2003,11:09:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:09,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000175,Field Msr/Obs,WATER,NA,7/2/2003,12:12:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000175,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/2/2003 19:12,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3823,Sample-Routine,WATER,NA,7/28/2013,15:06:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 21:06,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000118-5,Field Msr/Obs,WATER,NA,6/5/2003,13:39:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000118-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 20:39,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-17,Field Msr/Obs,WATER,NA,8/26/2003,11:31:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:31,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-9,Field Msr/Obs,WATER,NA,10/20/2003,9:59:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:59,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-24,Field Msr/Obs,WATER,NA,8/26/2003,11:41:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:41,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-21,Field Msr/Obs,WATER,NA,7/17/2003,10:05:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:05,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000171/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/2/2003,10:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Split Organization ActivityID=YELL_YL003.0M_42000171/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/2/2003 17:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-11,Field Msr/Obs,WATER,NA,8/26/2003,10:12:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:12,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-20,Field Msr/Obs,WATER,NA,8/26/2003,10:25:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:25,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-11,Field Msr/Obs,WATER,NA,8/26/2003,9:07:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:07,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3984,Sample-Routine,WATER,NA,7/28/2011,12:28:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:28,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000401,Field Msr/Obs,WATER,NA,10/20/2003,8:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 15:32,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-13,Field Msr/Obs,WATER,NA,8/11/2003,12:05:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000170,Field Msr/Obs,WATER,NA,7/2/2003,10:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000170,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/2/2003 17:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-8,Field Msr/Obs,WATER,NA,7/17/2003,8:59:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:59,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_8,Field Msr/Obs,WATER,NA,8/11/2003,9:54:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-23,Field Msr/Obs,WATER,NA,7/17/2003,10:08:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:08,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000249,Field Msr/Obs,WATER,NA,8/11/2003,10:49:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000249,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-6,Field Msr/Obs,WATER,NA,8/26/2003,9:00:00,MST,NA,NA,NA,35,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:00,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000225-1,Field Msr/Obs,WATER,NA,7/29/2003,9:12:00,MST,NA,NA,NA,48.8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000225-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2003 16:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-31,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-17,Field Msr/Obs,WATER,NA,8/11/2003,12:11:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:11,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000389,Field Msr/Obs,WATER,NA,10/8/2003,12:43:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000389,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 19:43,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00300597,Sample-Routine,WATER,Surface Water,9/10/2003,10:40:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430018106300201,NA,NA,"Stable, normal stage",Routine sample,70,USGS parameter code 82398,Grab sample (dip),Grab sample,NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,9/10/2003 16:40,NA,"ILLCO SEEP NEAR OUTLET, NEAR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.0049661,-106.5011471,NA,Unknown,Unknown,Interpolated from MAP.,NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_50,Field Msr/Obs,WATER,NA,8/11/2003,9:31:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:31,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:33:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:33,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-6,Field Msr/Obs,WATER,NA,8/26/2003,11:15:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:15,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:30:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:30,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-18,Field Msr/Obs,WATER,NA,8/11/2003,12:12:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:12,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-8,Field Msr/Obs,WATER,NA,10/20/2003,9:58:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-6,Field Msr/Obs,WATER,NA,10/8/2003,9:24:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-4,Field Msr/Obs,WATER,NA,8/11/2003,11:52:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:52,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000225-2,Field Msr/Obs,WATER,NA,7/29/2003,9:13:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000225-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2003 16:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000115,Field Msr/Obs,WATER,NA,6/5/2003,13:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000115,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 20:32,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-10,Field Msr/Obs,WATER,NA,10/8/2003,9:30:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000107,Field Msr/Obs,WATER,NA,6/3/2003,13:10:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000107,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2003 20:10,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-4,Field Msr/Obs,WATER,NA,10/8/2003,9:21:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000221/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/28/2003,13:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Replicate Organization ActivityID=YELL_YL002.0M_42000221/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2003 20:48,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_6,Field Msr/Obs,WATER,NA,8/11/2003,9:57:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:57,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3648,Sample-Routine,WATER,NA,8/11/2015,11:32:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000252/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/11/2003,10:49:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Replicate Organization ActivityID=YELL_YL001.0M_42000252/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-10,Field Msr/Obs,WATER,NA,7/17/2003,9:49:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:49,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-14,Field Msr/Obs,WATER,NA,8/26/2003,11:27:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:27,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-16,Field Msr/Obs,WATER,NA,7/17/2003,9:58:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:58,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-27,Field Msr/Obs,WATER,NA,7/17/2003,10:13:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:13,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-23,Field Msr/Obs,WATER,NA,8/26/2003,9:25:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:25,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-9,Field Msr/Obs,WATER,NA,8/26/2003,10:09:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-15,Field Msr/Obs,WATER,NA,8/26/2003,11:28:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:28,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000201,Field Msr/Obs,WATER,NA,7/17/2003,8:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:48,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000118-6,Field Msr/Obs,WATER,NA,6/5/2003,13:40:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000118-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 20:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-8,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000250/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/11/2003,10:49:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Split Organization ActivityID=YELL_YL001.0M_42000250/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-18,Field Msr/Obs,WATER,NA,8/26/2003,11:32:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:32,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000354,Field Msr/Obs,WATER,NA,9/25/2003,15:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000354,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/25/2003 22:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-18,Field Msr/Obs,WATER,NA,10/8/2003,9:41:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:41,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-20,Field Msr/Obs,WATER,NA,8/26/2003,9:20:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-8,Field Msr/Obs,WATER,NA,8/26/2003,9:03:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:03,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000353,Field Msr/Obs,WATER,NA,9/25/2003,13:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000353,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/25/2003 20:24,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-4,Field Msr/Obs,WATER,NA,6/20/2003,11:45:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:45,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000103,Field Msr/Obs,WATER,NA,6/3/2003,8:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000103,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2003 15:50,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-8,Field Msr/Obs,WATER,NA,10/8/2003,9:27:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-7,Field Msr/Obs,WATER,NA,8/11/2003,11:57:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:57,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3973,Sample-Routine,WATER,NA,8/5/2010,11:22:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-5,Field Msr/Obs,WATER,NA,7/17/2003,8:55:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:55,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-28,Field Msr/Obs,WATER,NA,8/26/2003,10:37:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:37,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-22,Field Msr/Obs,WATER,NA,10/8/2003,9:47:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_14,Field Msr/Obs,WATER,NA,8/11/2003,9:46:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:46,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1904,Sample-Routine,WATER,NA,6/23/2004,11:31:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:31,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000391,Field Msr/Obs,WATER,NA,10/8/2003,14:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000391,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 21:03,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000387/2,Quality Control Field Replicate Msr/Obs,WATER,NA,10/8/2003,11:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42000387/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 18:23,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000406,Field Msr/Obs,WATER,NA,10/20/2003,11:59:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 18:59,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000208,Field Msr/Obs,WATER,NA,7/17/2003,12:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000208,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 19:20,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-7,Field Msr/Obs,WATER,NA,10/20/2003,9:57:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:57,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-18,Field Msr/Obs,WATER,NA,7/17/2003,10:00:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:00,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-3,Field Msr/Obs,WATER,NA,8/11/2003,11:51:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:51,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-19,Field Msr/Obs,WATER,NA,8/26/2003,9:19:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:19,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-15,Field Msr/Obs,WATER,NA,10/8/2003,9:37:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:37,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-13,Field Msr/Obs,WATER,NA,10/20/2003,10:05:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_023_20170802113906^01,Field Msr/Obs,WATER,NA,8/2/2017,11:39:00,MDT,NA,NA,NA,39.8,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_023,Orig ID=0802171139 Organization ActivityID=YELL_YSL_023_20170802113906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/2/2017 17:39,NA,Yellowstone Lake Shoreline KM 23,Lake,This site is located within the West Thumb portion of Yellowstone Lake; within Region 1 and near Carrington Island.,10070001,NA,NA,NA,NA,44.449383,-110.5622957,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_10,Field Msr/Obs,WATER,NA,8/11/2003,9:51:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:51,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-8,Field Msr/Obs,WATER,NA,6/20/2003,11:51:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:51,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-4,Field Msr/Obs,WATER,NA,7/17/2003,9:40:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:40,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000174,Field Msr/Obs,WATER,NA,7/2/2003,11:41:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000174,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/2/2003 18:41,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-24,Field Msr/Obs,WATER,NA,8/26/2003,10:31:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:31,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292,Field Msr/Obs,WATER,NA,8/26/2003,8:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000292,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 15:52,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-7,Field Msr/Obs,WATER,NA,8/26/2003,9:02:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:02,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-7,Field Msr/Obs,WATER,NA,8/26/2003,10:07:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-21,Field Msr/Obs,WATER,NA,10/8/2003,9:46:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-22,Field Msr/Obs,WATER,NA,8/26/2003,10:28:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:28,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-9,Field Msr/Obs,WATER,NA,8/26/2003,9:04:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:04,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-11,Field Msr/Obs,WATER,NA,7/17/2003,9:03:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:03,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.55,12.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.538,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-6,Field Msr/Obs,WATER,NA,7/17/2003,8:56:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:56,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3638,Sample-Routine,WATER,NA,7/29/2009,11:44:00,MDT,NA,NA,NA,26.1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:44,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000342/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/8/2003,13:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42000342/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2003 20:01,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-3,Field Msr/Obs,WATER,NA,8/26/2003,8:56:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-16,Field Msr/Obs,WATER,NA,10/20/2003,10:10:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:10,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3327,Sample-Routine,WATER,NA,6/26/2007,11:49:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:49,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_70,Field Msr/Obs,WATER,NA,8/11/2003,9:28:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:28,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-9,Field Msr/Obs,WATER,NA,8/11/2003,11:59:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:59,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-1,Field Msr/Obs,WATER,NA,8/26/2003,8:53:00,MST,NA,NA,NA,81.7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 15:53,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000176,Field Msr/Obs,WATER,NA,7/3/2003,9:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000176,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2003 16:55,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_4,Field Msr/Obs,WATER,NA,8/11/2003,10:00:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 17:00,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000262,Field Msr/Obs,WATER,NA,8/12/2003,11:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000262,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2003 18:13,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000173/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/2/2003,10:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Replicate Organization ActivityID=YELL_YL003.0M_42000173/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/2/2003 17:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000114,Field Msr/Obs,WATER,NA,6/5/2003,11:57:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000114,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 18:57,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:37:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:37,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_2,Field Msr/Obs,WATER,NA,8/11/2003,10:03:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 17:03,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-1,Field Msr/Obs,WATER,NA,6/20/2003,11:41:00,MST,NA,NA,NA,47.5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:41,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000407,Field Msr/Obs,WATER,NA,10/20/2003,9:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000407,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 16:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000225-3,Field Msr/Obs,WATER,NA,7/29/2003,9:15:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000225-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2003 16:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_5,Field Msr/Obs,WATER,NA,8/11/2003,9:59:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:59,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-10,Field Msr/Obs,WATER,NA,8/26/2003,11:21:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:21,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4534,Sample-Routine,WATER,NA,8/20/2013,11:20:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-9,Field Msr/Obs,WATER,NA,7/17/2003,9:47:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-8,Field Msr/Obs,WATER,NA,8/26/2003,10:08:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:08,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-24,Field Msr/Obs,WATER,NA,8/26/2003,9:26:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:26,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-7,Field Msr/Obs,WATER,NA,7/17/2003,9:45:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:45,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_11,Field Msr/Obs,WATER,NA,8/11/2003,9:50:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:50,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000118-1,Field Msr/Obs,WATER,NA,6/5/2003,13:33:00,MST,NA,NA,NA,48.5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000118-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 20:33,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-4,Field Msr/Obs,WATER,NA,8/26/2003,10:02:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-13,Field Msr/Obs,WATER,NA,8/26/2003,9:10:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:10,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000118/2,Quality Control Field Replicate Msr/Obs,WATER,NA,6/5/2003,13:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Replicate Organization ActivityID=YELL_YL007.0M_42000118/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2003 20:32,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000340/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/8/2003,13:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42000340/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2003 20:01,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1907,Sample-Routine,WATER,NA,6/23/2004,11:35:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:35,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-16,Field Msr/Obs,WATER,NA,8/11/2003,12:10:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:10,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00000492,Sample-Routine,WATER,Surface Water,8/10/2000,11:15:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-424521106363801,NA,NA,"Stable, normal stage",Routine sample,70,USGS parameter code 82398,Grab sample (dip),US DH-81,NA,"TEMPERATURE, WATER",NA,23,23,Numeric,DEG C,NA,Historical,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,8/10/2000 17:15,NA,"GOOSE LAKE NEAR WEST END, NEAR GOOSE EGG, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,42.75579706,-106.6111496,NA,1,seconds,Interpolated from MAP.,NAD83,5400,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-4,Field Msr/Obs,WATER,NA,7/17/2003,8:53:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3206,Sample-Routine,WATER,NA,7/9/2013,11:38:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:38,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000217,Field Msr/Obs,WATER,NA,7/28/2003,13:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000217,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2003 20:30,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00100445,Sample-Routine,WATER,Surface Water,6/21/2001,15:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430016106295901,NA,NA,"Stable, normal stage",Routine sample,50,USGS parameter code 82398,Point sample,US DH-81,NA,"TEMPERATURE, WATER",NA,23,23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,6/21/2001 21:00,NA,"UNNAMED POND ON E SIDE OF ILLCO SEEP, NR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.00444444,-106.4997222,24000,1,seconds,Mapping grade GPS unit (handheld accuracy range 12 to 40 ft),NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-8,Field Msr/Obs,WATER,NA,7/17/2003,9:46:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:46,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-32,Field Msr/Obs,WATER,NA,8/26/2003,10:43:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:43,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-17,Field Msr/Obs,WATER,NA,10/20/2003,10:11:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-3,Field Msr/Obs,WATER,NA,8/26/2003,10:01:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:01,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2824,Sample-Routine,WATER,NA,6/25/2013,11:27:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:27,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-2,Field Msr/Obs,WATER,NA,8/26/2003,8:54:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 15:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-3,Field Msr/Obs,WATER,NA,7/17/2003,8:52:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:52,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-13,Field Msr/Obs,WATER,NA,6/20/2003,11:58:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-10,Field Msr/Obs,WATER,NA,8/26/2003,10:11:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:11,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000179/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/3/2003,9:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Replicate Organization ActivityID=YELL_YL007.0M_42000179/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2003 16:55,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:56:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:56,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:44:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:44,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-6,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-31,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-9,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-38,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-3,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-18,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-8,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3605,Sample-Routine,WATER,NA,7/12/2001,11:45:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:45,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3685,Sample-Routine,WATER,NA,7/29/2009,11:35:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:35,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-16,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-2,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-26,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-26,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-38,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000676-1,Field Msr/Obs,WATER,NA,6/15/2004,9:53:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000676-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-16,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-8,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-37,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-6,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000651/2,Quality Control Field Replicate Msr/Obs,WATER,NA,6/1/2004,16:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Replicate Organization ActivityID=YELL_YL003.0M_42000651/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 23:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-22,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-10,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-28,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-4,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3688,Sample-Routine,WATER,NA,7/29/2009,11:42:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:42,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3681,Sample-Routine,WATER,NA,7/29/2009,11:26:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:26,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-1,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,78,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-30,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-20,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-28,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-11,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-14,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-12,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-9,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-14,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-15,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000646-6,Field Msr/Obs,WATER,NA,6/1/2004,14:40:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000646-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 21:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-11,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000646-5,Field Msr/Obs,WATER,NA,6/1/2004,14:40:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000646-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 21:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-10,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-2,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-7,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-28,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-5,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-17,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-26,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-25,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-1,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-28,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-33,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-24,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-21,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-11,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-12,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-9,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-19,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-8,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-5,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-5,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-12,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-14,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-1,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3952,Sample-Routine,WATER,NA,7/28/2011,12:20:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-3,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-12,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2554,Sample-Routine,WATER,NA,6/29/2011,10:30:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000895/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/22/2004,13:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Replicate Organization ActivityID=YELL_YL001.0M_42000895/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 20:24,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-14,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000678/1,Quality Control Field Replicate Msr/Obs,WATER,NA,6/15/2004,12:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42000678/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 19:08,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-7,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-9,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000790,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000790,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2642,Sample-Routine,WATER,NA,6/25/2014,11:22:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-8,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4599,Sample-Routine,WATER,NA,6/27/2012,10:15:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 16:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-19,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-21,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-18,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-24,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-10,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-36,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-33,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3235,Sample-Routine,WATER,NA,7/28/2015,10:30:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-27,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-33,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-37,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-7,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2805,Sample-Routine,WATER,NA,6/25/2013,11:32:00,MDT,NA,NA,NA,26.1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-29,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-14,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-34,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-31,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-6,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000836/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/26/2004,10:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Replicate Organization ActivityID=YELL_YL005.0M_42000836/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:55,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-30,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000676-2,Field Msr/Obs,WATER,NA,6/15/2004,9:53:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000676-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-21,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-13,Sample-Routine,WATER,NA,6/24/2020,13:23:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:23,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-37,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-25,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-29,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-19,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3967,Sample-Routine,WATER,NA,8/5/2010,11:13:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:13,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-11,Field Msr/Obs,WATER,NA,8/18/2020,11:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-16,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-29,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-4,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-17,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-19,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-22,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-4,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1914,Sample-Routine,WATER,NA,6/17/2015,11:03:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 17:03,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-11,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-26,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4533,Sample-Routine,WATER,NA,8/20/2013,11:17:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:17,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-21,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-18,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-23,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-38,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-30,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-31,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-26,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-18,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-5,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-9,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-13,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-6,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-34,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3328,Sample-Routine,WATER,NA,6/26/2007,11:52:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:52,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-4,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2562,Sample-Routine,WATER,NA,6/29/2011,10:50:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:50,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_DEL01_072381425G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,8/26/2007,14:07:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_DEL01,Duplicate water column parameters Organization ActivityID=GRTE_DEL01_072381425G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.36,7.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2007 20:07,NA,Delta Lake,Lake,At the creek that the flows from Delta Lake follow this to the outlet of the lake. The site is within the boulders of the outlet where you can sample flowing water just at the edge of the lake.,17040101,NA,NA,NA,NA,43.7318538,-110.7709599,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,8990.72,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-32,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3985,Sample-Routine,WATER,NA,7/28/2011,12:30:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-26,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3965,Sample-Routine,WATER,NA,8/5/2010,11:11:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:11,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-4,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-36,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-1,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3826,Sample-Routine,WATER,NA,7/31/2014,12:04:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 18:04,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Replicate Organization ActivityID=YELL_YL007.0M_42000842/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-7,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4469,Sample-Routine,WATER,NA,8/19/2014,11:08:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:08,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-18,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-27,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-2,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4575,Sample-Routine,WATER,NA,6/27/2012,10:18:00,MDT,NA,NA,NA,28.8,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 16:18,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-39,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5797,Sample-Routine,WATER,NA,8/8/2012,10:12:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:12,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-14,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3292,Sample-Routine,WATER,NA,6/26/2007,11:58:00,MDT,NA,NA,NA,29.6,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:58,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-4,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-6,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-13,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-2,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-20,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-44232007,Field Msr/Obs,WATER,NA,8/28/2007,12:54:00,MST,NA,NA,NA,18.7,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2007 19:54,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-15,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3639,Sample-Routine,WATER,NA,8/11/2015,11:15:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-27,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-22,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-22,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3329,Sample-Routine,WATER,NA,6/26/2007,11:54:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:54,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-14,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3678,Sample-Routine,WATER,NA,7/29/2009,11:20:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1909,Sample-Routine,WATER,NA,6/17/2015,10:50:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 16:50,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-30,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-25,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3643,Sample-Routine,WATER,NA,8/11/2015,11:22:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-34,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1909,Sample-Routine,WATER,NA,6/23/2004,11:39:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:39,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-10,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-5,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2647,Sample-Routine,WATER,NA,6/25/2014,11:34:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:34,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-25,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4591,Sample-Routine,WATER,NA,6/27/2012,9:57:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 15:57,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1917,Sample-Routine,WATER,NA,6/17/2015,11:11:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 17:11,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-2,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-24,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-9,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-5,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-21,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3470,Sample-Routine,WATER,NA,7/22/2010,10:19:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:19,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_SUR01_072381230G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,8/26/2007,12:30:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_SUR01,Field observations and water column parameters Organization ActivityID=GRTE_SUR01_072381230G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.61,15.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2007 18:30,NA,Surprise Lake,Lake,At Surprise Lake follow the trail down to the lake shore. You will see a spur trail going off to the left side of the lake; follow this trail to the outlet. The site is on the right site of the outlet looking at the lake.,17040101,NA,NA,NA,NA,43.72796726,-110.7773566,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9504.59,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-20,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-21,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-29,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-14,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1910,Sample-Routine,WATER,NA,6/23/2004,11:41:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:41,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-8,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-24,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-34,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-11,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-19,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-25,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000637-1,Field Msr/Obs,WATER,NA,5/21/2004,12:29:00,MST,NA,NA,NA,47,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000637-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 19:29,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3679,Sample-Routine,WATER,NA,7/29/2009,11:22:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.9,18.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-34,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-26,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_DEL01_082401151G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,8/27/2008,11:45:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_DEL01,Duplicate water column parameters Organization ActivityID=GRTE_DEL01_082401151G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.48,4.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2008 17:45,NA,Delta Lake,Lake,At the creek that the flows from Delta Lake follow this to the outlet of the lake. The site is within the boulders of the outlet where you can sample flowing water just at the edge of the lake.,17040101,NA,NA,NA,NA,43.7318538,-110.7709599,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,8990.72,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-6,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-19,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:43:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:43,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-2,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-9,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2553,Sample-Routine,WATER,NA,6/29/2011,10:28:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:28,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-7,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-24,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-35,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-35,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-14,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-4,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-7,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-16,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-10,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-12,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-17,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-4,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-7,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00100438,Sample-Routine,WATER,Surface Water,6/21/2001,10:15:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-425818106302701,NA,NA,"Stable, normal stage",Routine sample,50,USGS parameter code 82398,Point sample,US DH-81,NA,"TEMPERATURE, WATER",NA,21,21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,6/21/2001 16:15,NA,"THIRTYTHREE MI RESERVOIR NEAR OUTLET, NR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,42.97163245,-106.5080916,24000,1,seconds,Interpolated from MAP.,NAD83,5318,feet,1,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000674,Field Msr/Obs,WATER,NA,6/15/2004,7:44:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000674,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 14:44,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-27,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-13,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-15,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-11,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00100677,Sample-Routine,WATER,Surface Water,8/29/2001,12:35:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430016106295901,NA,NA,"Stable, normal stage",Routine sample,40,USGS parameter code 82398,Multiple verticals,US DH-81,NA,"TEMPERATURE, WATER",NA,20,20,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,8/29/2001 18:35,NA,"UNNAMED POND ON E SIDE OF ILLCO SEEP, NR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.00444444,-106.4997222,24000,1,seconds,Mapping grade GPS unit (handheld accuracy range 12 to 40 ft),NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4473,Sample-Routine,WATER,NA,8/19/2014,11:18:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:18,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-8,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-3,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-25,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-2,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-9,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-4,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-28,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-8,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-27,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-32,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-1,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-50,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-24,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000759/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/26/2004,12:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Split Organization ActivityID=YELL_YL005.0M_42000759/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:54,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-16,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-19,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-3,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-35,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_SUR01_082051029G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,7/23/2008,10:23:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_SUR01,Duplicate water column parameters Organization ActivityID=GRTE_SUR01_082051029G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.45,8.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:23,NA,Surprise Lake,Lake,At Surprise Lake follow the trail down to the lake shore. You will see a spur trail going off to the left side of the lake; follow this trail to the outlet. The site is on the right site of the outlet looking at the lake.,17040101,NA,NA,NA,NA,43.72796726,-110.7773566,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9504.59,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-18,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-25,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-4,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-8,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000916/1,Quality Control Field Replicate Msr/Obs,WATER,NA,10/6/2004,10:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Split Organization ActivityID=YELL_YL001.0M_42000916/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 17:47,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-12,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-32,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2561,Sample-Routine,WATER,NA,6/29/2011,10:48:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:48,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_DEL01_082061140G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,7/24/2008,11:40:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_DEL01,Collected field parameter and water column parameters Organization ActivityID=GRTE_DEL01_082061140G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/24/2008 17:40,NA,Delta Lake,Lake,At the creek that the flows from Delta Lake follow this to the outlet of the lake. The site is within the boulders of the outlet where you can sample flowing water just at the edge of the lake.,17040101,NA,NA,NA,NA,43.7318538,-110.7709599,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,8990.72,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-38,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-14,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-32,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000853,Field Msr/Obs,WATER,NA,9/9/2004,13:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000853,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 20:40,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-23,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-22,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-34,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-38,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000721,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000721,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-12,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-16,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-33,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-26,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-22,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-27,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-13,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3989,Sample-Routine,WATER,NA,7/28/2011,12:39:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:39,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-10,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4471,Sample-Routine,WATER,NA,8/19/2014,11:13:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:13,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-13,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000896,Field Msr/Obs,WATER,NA,9/22/2004,13:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000896,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 20:50,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-3,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-25,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-32,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5793,Sample-Routine,WATER,NA,8/8/2012,10:04:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:04,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-28,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2547,Sample-Routine,WATER,NA,6/29/2011,10:25:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:25,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-31,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-12,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000638-8,Field Msr/Obs,WATER,NA,5/21/2004,14:28:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000638-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 21:28,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-36,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-16,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-3,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-40,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_SUR01_072381246G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,8/26/2007,12:30:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_SUR01,Duplicate water column parameters Organization ActivityID=GRTE_SUR01_072381246G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.65,15.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2007 18:30,NA,Surprise Lake,Lake,At Surprise Lake follow the trail down to the lake shore. You will see a spur trail going off to the left side of the lake; follow this trail to the outlet. The site is on the right site of the outlet looking at the lake.,17040101,NA,NA,NA,NA,43.72796726,-110.7773566,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9504.59,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-10,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-1,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-18,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-30,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-6,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-14,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-4,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-23,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-26,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-12,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-17,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-16,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-28,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-12,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-22,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-16,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-14,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-8,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-2,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-11,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-10,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-32,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-10,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-9,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-30,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2557,Sample-Routine,WATER,NA,6/29/2011,10:40:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:40,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-11,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-24,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-35,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-11,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-3,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000834/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/26/2004,10:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Split Organization ActivityID=YELL_YL005.0M_42000834/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:55,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-26,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-40,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-14,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000643-1,Field Msr/Obs,WATER,NA,6/1/2004,10:37:00,MST,NA,NA,NA,37,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000643-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 17:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-21,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-28,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-4,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-16,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2643,Sample-Routine,WATER,NA,6/25/2014,11:24:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-15,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-3,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-33,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-39,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-38,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-20,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-6,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-39,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-29,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000638,Field Msr/Obs,WATER,NA,5/21/2004,14:28:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000638,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 21:28,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-15,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-26,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000638-3,Field Msr/Obs,WATER,NA,5/21/2004,14:28:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000638-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 21:28,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-30,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-22,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-24,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-4,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-27,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000637-5,Field Msr/Obs,WATER,NA,5/21/2004,12:29:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000637-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 19:29,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-28,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-13,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3468,Sample-Routine,WATER,NA,7/22/2010,10:15:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-1,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,82,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-2,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-37,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:49:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:49,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-18,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1878,Sample-Routine,WATER,NA,6/23/2004,11:46:00,MDT,NA,NA,NA,23.1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:46,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-21,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3603,Sample-Routine,WATER,NA,7/12/2001,11:41:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:41,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-12,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-6,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-6,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-3,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-5,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3649,Sample-Routine,WATER,NA,8/11/2015,11:33:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:33,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-9,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-19,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-16,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-21,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-5,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-17,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5375,Sample-Routine,WATER,NA,7/25/2012,10:29:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:29,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-21,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-38,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-19,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-3,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-23,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000638-7,Field Msr/Obs,WATER,NA,5/21/2004,14:28:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000638-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 21:28,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3600,Sample-Routine,WATER,NA,7/12/2001,11:35:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:35,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-8,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-35,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-16,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-11,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-2,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-3,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-26,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-34,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000680/2,Quality Control Field Replicate Msr/Obs,WATER,NA,6/15/2004,12:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42000680/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 19:08,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-15,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-2,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-31,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-14,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-3,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-9,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-4,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-8,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-11,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-28,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-12,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3319,Sample-Routine,WATER,NA,7/12/2001,11:49:00,MDT,NA,NA,NA,21.8,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:49,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-10,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-29,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-36,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-11,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-9,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-14,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-24,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-4,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-30,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3987,Sample-Routine,WATER,NA,7/28/2011,12:34:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:34,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-5,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-11,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-33,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3680,Sample-Routine,WATER,NA,7/29/2009,11:24:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-6,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-26,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-5,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-10,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-38,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3644,Sample-Routine,WATER,NA,8/11/2015,11:24:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-21,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-2,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3637,Sample-Routine,WATER,NA,7/29/2009,11:18:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:18,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-38,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-32,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-90,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-23,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-23,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-11,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3208,Sample-Routine,WATER,NA,7/9/2013,11:42:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:42,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_AMP01_082051127G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,7/23/2008,11:25:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_AMP01,Collected field parameter and water column parameters Organization ActivityID=GRTE_AMP01_082051127G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.56,5.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,.22 degrees diff from 2nd test,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 17:25,NA,Amphitheater Lake,Lake,The hiking trial will lead you right up to the outlet of the lake. Our site is located on the right side of the outlet when you are looking at the lake. The site is at the first sign of running water in the outlet.,17040101,NA,NA,NA,NA,43.72922327,-110.7798475,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9663.09,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-18,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-21,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-4,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3238,Sample-Routine,WATER,NA,7/28/2015,10:38:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:38,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-7,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-6,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-17,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-6,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-19,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-5,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-3,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001352/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/26/2005,10:43:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42001352/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 17:43,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3475,Sample-Routine,WATER,NA,7/22/2010,10:27:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:27,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-21,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-26,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3651,Sample-Routine,WATER,NA,8/11/2015,11:40:00,MDT,NA,NA,NA,27.8,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:40,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-15,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-21,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-37,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3647,Sample-Routine,WATER,NA,8/11/2015,11:30:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-1,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-38,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4601,Sample-Routine,WATER,NA,8/11/2011,10:32:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3472,Sample-Routine,WATER,NA,7/22/2010,10:22:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-18,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-8,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-23,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-26,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-11,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-5,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-7,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-25,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-23,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:46:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:46,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-16,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-34,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-9,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-13,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-10,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-22,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-36,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-31,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-16,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-18,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-27,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-15,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-6,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-9,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000643-2,Field Msr/Obs,WATER,NA,6/1/2004,10:37:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000643-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 17:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-3,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-32,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000890,Field Msr/Obs,WATER,NA,9/22/2004,11:18:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000890,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 18:18,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-3,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-7,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-19,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-20,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-28,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5374,Sample-Routine,WATER,NA,7/25/2012,10:27:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:27,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-34,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-29,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-12,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-16,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-13,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-23,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-31,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-17,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-20,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-22,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-1,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,78,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-17,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-7,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_DEL01_082061146G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,7/24/2008,11:40:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_DEL01,Duplicate water column parameters Organization ActivityID=GRTE_DEL01_082061146G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.99,3.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/24/2008 17:40,NA,Delta Lake,Lake,At the creek that the flows from Delta Lake follow this to the outlet of the lake. The site is within the boulders of the outlet where you can sample flowing water just at the edge of the lake.,17040101,NA,NA,NA,NA,43.7318538,-110.7709599,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,8990.72,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-20,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-37,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3204,Sample-Routine,WATER,NA,7/9/2013,11:34:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:34,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-6,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-9,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000848/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/9/2004,9:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Split Organization ActivityID=YELL_YL001.0M_42000848/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 16:20,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-17,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-3,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-26,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-34,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-1,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4527,Sample-Routine,WATER,NA,8/20/2013,11:05:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:05,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-26,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-22,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-14,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000788/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/10/2004,14:14:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Replicate Organization ActivityID=YELL_YL002.0M_42000788/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 21:14,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-10,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-26,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-18,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-19,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-18,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-10,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-4,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-3,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-17,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-8,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-3,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-26,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238/2,Quality Control Field Replicate Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42001238/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_SUR01_071761509G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,6/25/2007,14:40:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_SUR01,Duplicate water column parameters Organization ActivityID=GRTE_SUR01_071761509G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.12,14.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/25/2007 20:40,NA,Surprise Lake,Lake,At Surprise Lake follow the trail down to the lake shore. You will see a spur trail going off to the left side of the lake; follow this trail to the outlet. The site is on the right site of the outlet looking at the lake.,17040101,NA,NA,NA,NA,43.72796726,-110.7773566,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9504.59,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4592,Sample-Routine,WATER,NA,6/27/2012,9:58:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 15:58,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-2,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-8,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-2,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-19,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-17,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-37,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-10,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-25,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-2,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-5,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-35,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-20,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-11,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-8,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-24,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-8,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-1,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,82,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-8,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4598,Sample-Routine,WATER,NA,6/27/2012,10:11:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 16:11,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-24,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-34,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-40,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00100441,Sample-Routine,WATER,Surface Water,6/21/2001,14:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430018106300201,NA,NA,"Stable, normal stage",Routine sample,50,USGS parameter code 82398,Point sample,US DH-81,NA,"TEMPERATURE, WATER",NA,25,25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,6/21/2001 20:00,NA,"ILLCO SEEP NEAR OUTLET, NEAR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.0049661,-106.5011471,NA,Unknown,Unknown,Interpolated from MAP.,NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3232,Sample-Routine,WATER,NA,7/28/2015,10:20:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00100543,Quality Control Sample-Field Replicate,WATER,Surface Water,8/29/2001,9:10:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-425818106302701,NA,NA,"Stable, normal stage",Routine sample,40,USGS parameter code 82398,Multiple verticals,US DH-81,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,8/29/2001 15:10,NA,"THIRTYTHREE MI RESERVOIR NEAR OUTLET, NR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,42.97163245,-106.5080916,24000,1,seconds,Interpolated from MAP.,NAD83,5318,feet,1,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-13,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00100547,Quality Control Sample-Field Replicate,WATER,Surface Water,8/29/2001,12:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430018106300201,NA,NA,"Stable, normal stage",Routine sample,70,USGS parameter code 82398,Grab sample (dip),Other,NA,"TEMPERATURE, WATER",NA,22,22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,8/29/2001 18:00,NA,"ILLCO SEEP NEAR OUTLET, NEAR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.0049661,-106.5011471,NA,Unknown,Unknown,Interpolated from MAP.,NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-12,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-12,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-19,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2825,Sample-Routine,WATER,NA,6/25/2013,11:29:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:29,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-5,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-29,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-4,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3467,Sample-Routine,WATER,NA,7/22/2010,10:14:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:14,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-30,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-13,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-14,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2804,Sample-Routine,WATER,NA,6/25/2013,11:05:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:05,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-4,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-13,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-8,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-22,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3821,Sample-Routine,WATER,NA,7/31/2014,11:55:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 17:55,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-4,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-21,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-6,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-12,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-7,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_AMP01_082401000G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,8/27/2008,10:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_AMP01,Collected field parameter and water column parameters Organization ActivityID=GRTE_AMP01_082401000G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.15,11.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2008 16:00,NA,Amphitheater Lake,Lake,The hiking trial will lead you right up to the outlet of the lake. Our site is located on the right side of the outlet when you are looking at the lake. The site is at the first sign of running water in the outlet.,17040101,NA,NA,NA,NA,43.72922327,-110.7798475,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9663.09,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-3,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-21,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-17,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-3,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5802,Sample-Routine,WATER,NA,8/8/2012,10:21:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:21,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-31,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-23,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-10,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-21,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-17,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-13,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-12,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_DEL01_072381407G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,8/26/2007,14:07:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_DEL01,Field observations and water column parameters Organization ActivityID=GRTE_DEL01_072381407G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.37,7.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2007 20:07,NA,Delta Lake,Lake,At the creek that the flows from Delta Lake follow this to the outlet of the lake. The site is within the boulders of the outlet where you can sample flowing water just at the edge of the lake.,17040101,NA,NA,NA,NA,43.7318538,-110.7709599,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,8990.72,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-5,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-30,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-10,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-11,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3320,Sample-Routine,WATER,NA,6/26/2007,11:33:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:33,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-13,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-21,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-21,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-14,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-28,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-10,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-23,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-5,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4476,Sample-Routine,WATER,NA,8/19/2014,11:23:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:23,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-36,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-9,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-15,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-1,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,71,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-25,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-32,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-14,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-20,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-3,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-29,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-28,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-1,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,71,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3209,Sample-Routine,WATER,NA,7/9/2013,11:43:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-5,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3234,Sample-Routine,WATER,NA,7/28/2015,10:28:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:28,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-18,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-17,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-2,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-7,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-15,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-34,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-8,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-16,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-17,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_15,Field Msr/Obs,WATER,NA,7/27/2005,8:31:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:31,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-20,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-28,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-4,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-19,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-13,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-3,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-20,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-36,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-7,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-18,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-1,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-2,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-20,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-35,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-31,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000643-3,Field Msr/Obs,WATER,NA,6/1/2004,10:37:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000643-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 17:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-2,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-22,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-18,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-14,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5372,Sample-Routine,WATER,NA,7/25/2012,10:22:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.8,20.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-14,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-2,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-1,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-7,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-3,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-13,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-7,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-13,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4452,Sample-Routine,WATER,NA,8/19/2014,11:30:00,MDT,NA,NA,NA,27.9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-31,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3471,Sample-Routine,WATER,NA,7/22/2010,10:20:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3227,Sample-Routine,WATER,NA,7/28/2015,10:15:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-9,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3645,Sample-Routine,WATER,NA,8/11/2015,11:26:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:26,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-30,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-39,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-31,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-13,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-22,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-31,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-1,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-11,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-10,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-33,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-5,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4597,Sample-Routine,WATER,NA,8/11/2011,10:23:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:23,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-12,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-9,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A5071,Sample-Routine,WATER,NA,9/21/2010,11:13:00,MDT,NA,NA,NA,17.1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/21/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/21/2010 17:13,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-10,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-31,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-7,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-37,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5377,Sample-Routine,WATER,NA,7/25/2012,10:34:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:34,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-5,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-7,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3604,Sample-Routine,WATER,NA,7/12/2001,11:43:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:35:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:35,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-11,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.75,6.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.572,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1916,Sample-Routine,WATER,NA,6/17/2015,11:09:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 17:09,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-19,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-9,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_SUR01_082401047G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,8/27/2008,10:47:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_SUR01,Collected field parameter and water column parameters Organization ActivityID=GRTE_SUR01_082401047G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.43,13.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2008 16:47,NA,Surprise Lake,Lake,At Surprise Lake follow the trail down to the lake shore. You will see a spur trail going off to the left side of the lake; follow this trail to the outlet. The site is on the right site of the outlet looking at the lake.,17040101,NA,NA,NA,NA,43.72796726,-110.7773566,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9504.59,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3599,Sample-Routine,WATER,NA,7/12/2001,11:34:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:34,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-1,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-29,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000648,Field Msr/Obs,WATER,NA,6/1/2004,16:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000648,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 23:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-3,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-13,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Replicate Organization ActivityID=YELL_YL002.0M_42000724/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-23,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5382,Sample-Routine,WATER,NA,7/25/2012,10:45:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:45,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-3,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-7,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-26,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-10,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-16,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1919,Sample-Routine,WATER,NA,6/17/2015,11:15:00,MDT,NA,NA,NA,29.1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 17:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-36,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000722/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Split Organization ActivityID=YELL_YL002.0M_42000722/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-27,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4529,Sample-Routine,WATER,NA,8/20/2013,11:09:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:09,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-10,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-15,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-33,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3598,Sample-Routine,WATER,NA,7/12/2001,11:32:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-19,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-27,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-3,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-19,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-4,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000643-6,Field Msr/Obs,WATER,NA,6/1/2004,10:37:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000643-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 17:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3826,Sample-Routine,WATER,NA,7/28/2013,15:13:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 21:13,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3601,Sample-Routine,WATER,NA,7/12/2001,11:37:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:37,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2560,Sample-Routine,WATER,NA,6/29/2011,10:46:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:46,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-9,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3961,Sample-Routine,WATER,NA,8/5/2010,11:24:00,MDT,NA,NA,NA,22.9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-34,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-19,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-7,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-26,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-7,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-20,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-8,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-10,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-15,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-6,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-3,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-1,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,73,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-13,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-16,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-25,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3820,Sample-Routine,WATER,NA,7/28/2013,15:03:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 21:03,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-21,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-22,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-5,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3228,Sample-Routine,WATER,NA,7/28/2015,10:16:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:16,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-9,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3982,Sample-Routine,WATER,NA,7/28/2011,12:23:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:23,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000670,Field Msr/Obs,WATER,NA,6/14/2004,10:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000670,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2004 17:05,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-19,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-10,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-31,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-16,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-16,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-37,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-10,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-11,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-13,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2648,Sample-Routine,WATER,NA,6/25/2014,11:37:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:37,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-1,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,99,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:30:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:30,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2817,Sample-Routine,WATER,NA,6/25/2013,11:09:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:09,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4588,Sample-Routine,WATER,NA,8/11/2011,10:10:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000919,Field Msr/Obs,WATER,NA,10/6/2004,13:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000919,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 20:13,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000637-4,Field Msr/Obs,WATER,NA,5/21/2004,12:29:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000637-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 19:29,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-17,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-20,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-35,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-3,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-32,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4600,Sample-Routine,WATER,NA,8/11/2011,10:30:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5795,Sample-Routine,WATER,NA,8/8/2012,10:08:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:08,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-23,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-25,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-14,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.44,16.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.795,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-20,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-9,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5753,Sample-Routine,WATER,NA,8/8/2012,10:23:00,MDT,NA,NA,NA,27.2,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:23,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-15,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-9,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3458,Sample-Routine,WATER,NA,7/22/2010,10:29:00,MDT,NA,NA,NA,26.5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:29,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-16,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-36,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-21,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-17,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-32,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-38,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3205,Sample-Routine,WATER,NA,7/9/2013,11:36:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:36,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5379,Sample-Routine,WATER,NA,7/25/2012,10:39:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:39,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-25,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3202,Sample-Routine,WATER,NA,7/9/2013,11:30:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-12,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-35,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_31,Field Msr/Obs,WATER,NA,7/27/2005,8:08:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-4,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-21,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-11,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-2,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.07,7.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.116,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-39,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-5,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_158_20170804122506^01,Field Msr/Obs,WATER,NA,8/4/2017,12:25:00,MDT,NA,NA,NA,39.7,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_158,no fish Orig ID=0804171225 Organization ActivityID=YELL_YSL_158_20170804122506,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2017 18:25,NA,Yellowstone Lake Shoreline KM 158,Lake,This site is located on the west shoreline of the main basin of Yellowstone Lake and within region 2. It is directly west of Frank Island.,10070001,NA,NA,NA,NA,44.4168001,-110.414761,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-8,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3641,Sample-Routine,WATER,NA,8/11/2015,11:19:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:19,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3971,Sample-Routine,WATER,NA,8/5/2010,11:20:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1908,Sample-Routine,WATER,NA,6/23/2004,11:37:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:37,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000893/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/22/2004,13:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Split Organization ActivityID=YELL_YL001.0M_42000893/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 20:24,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-4,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-19,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3687,Sample-Routine,WATER,NA,7/29/2009,11:40:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:40,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-30,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-29,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.68,9.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.471,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000643-4,Field Msr/Obs,WATER,NA,6/1/2004,10:37:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000643-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 17:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-1,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000643-5,Field Msr/Obs,WATER,NA,6/1/2004,10:37:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000643-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 17:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-13,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-11,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000643,Field Msr/Obs,WATER,NA,6/1/2004,10:37:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000643,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 17:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000785,Field Msr/Obs,WATER,NA,8/10/2004,14:14:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000785,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 21:14,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-15,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-27,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-25,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-8,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-1,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4472,Sample-Routine,WATER,NA,8/19/2014,11:15:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-13,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-5,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-4,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-31,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-6,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-14,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-9,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-14,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-27,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-2,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4593,Sample-Routine,WATER,NA,8/11/2011,10:14:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:14,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-24,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-17,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-16,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-20,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-21,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-18,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-5,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-23,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-24,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-6,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-6,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-13,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-24,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-1,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,82,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000892,Field Msr/Obs,WATER,NA,9/22/2004,13:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000892,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 20:24,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-26,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-19,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-1,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,79,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-10,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-5,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3640,Sample-Routine,WATER,NA,8/11/2015,11:17:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:17,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-20,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-15,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-11,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-24,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-18,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-2,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000646-2,Field Msr/Obs,WATER,NA,6/1/2004,14:40:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000646-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 21:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-27,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-8,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-8,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000915,Field Msr/Obs,WATER,NA,10/6/2004,10:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000915,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 17:47,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3330,Sample-Routine,WATER,NA,6/26/2007,11:56:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:56,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-4,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-33,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-30,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-7,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000758,Field Msr/Obs,WATER,NA,7/26/2004,12:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000758,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:54,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-5,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-5,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-9,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-7,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-24,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-1,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-7,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-37,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000782,Field Msr/Obs,WATER,NA,8/10/2004,10:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000782,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 17:09,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-7,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-35,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3650,Sample-Routine,WATER,NA,8/11/2015,11:36:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:36,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-13,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-28,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-5,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-30,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-25,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_089_20170806102004^01,Field Msr/Obs,WATER,NA,8/6/2017,10:20:00,MDT,NA,NA,NA,8.6,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_089,Orig ID=0806171020 Organization ActivityID=YELL_YSL_089_20170806102004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 16:20,NA,Yellowstone Lake Shoreline KM 89,Lake,This station is located along the east shore of Yellowstone Lake within the Southeast Arm. It lies within Region 4.,10070001,NA,NA,NA,NA,44.387009,-110.2424828,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2563,Sample-Routine,WATER,NA,6/29/2011,10:52:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:52,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-36,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-16,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-4,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-4,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-16,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-19,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-10,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.06,10.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.447,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-6,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-21,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-12,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-23,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1905,Sample-Routine,WATER,NA,6/23/2004,11:32:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-23,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-19,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-9,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-30,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3960,Sample-Routine,WATER,NA,8/5/2010,11:08:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.9,19.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:08,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-29,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-8,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-38,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-29,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-28,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-27,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-4,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-48,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-48,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-6,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-21,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-20,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-93,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-16,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-11,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000944,Field Msr/Obs,WATER,NA,10/20/2004,11:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000944,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 18:25,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-12,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-24,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-22,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-28,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4589,Sample-Routine,WATER,NA,6/27/2012,9:52:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 15:52,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3822,Sample-Routine,WATER,NA,7/31/2014,11:56:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 17:56,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-6,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-2,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4467,Sample-Routine,WATER,NA,8/19/2014,11:04:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:04,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-14,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-29,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3815,Sample-Routine,WATER,NA,7/28/2013,14:57:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 20:57,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-29,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-19,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-20,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-11,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-25,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-22,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-22,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-25,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000676-3,Field Msr/Obs,WATER,NA,6/15/2004,9:53:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000676-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-32,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-13,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-17,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-10,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-9,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-17,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-27,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-1,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-2,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-30,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-10,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-27,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-24,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-16,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-16,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-8,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-5,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-24,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4592,Sample-Routine,WATER,NA,8/11/2011,10:12:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:12,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5752,Sample-Routine,WATER,NA,8/8/2012,9:59:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 15:59,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3239,Sample-Routine,WATER,NA,7/28/2015,10:40:00,MDT,NA,NA,NA,29.7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:40,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-5,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-5,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-35,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-10,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4602,Sample-Routine,WATER,NA,8/11/2011,10:33:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:33,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-1,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,73,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-30,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2819,Sample-Routine,WATER,NA,6/25/2013,11:14:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:14,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-7,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-4,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-3,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-17,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-10,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-15,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-32,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5792,Sample-Routine,WATER,NA,8/8/2012,10:02:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:02,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000649/1,Quality Control Field Replicate Msr/Obs,WATER,NA,6/1/2004,16:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Split Organization ActivityID=YELL_YL003.0M_42000649/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 23:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5801,Sample-Routine,WATER,NA,8/8/2012,10:19:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:19,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-30,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-17,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-10,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-15,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000638-5,Field Msr/Obs,WATER,NA,5/21/2004,14:28:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000638-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 21:28,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-12,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3201,Sample-Routine,WATER,NA,7/9/2013,11:28:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:28,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3323,Sample-Routine,WATER,NA,6/26/2007,11:39:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:39,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3988,Sample-Routine,WATER,NA,7/28/2011,12:36:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:36,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1911,Sample-Routine,WATER,NA,6/17/2015,10:56:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 16:56,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-13,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-31,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3991,Sample-Routine,WATER,NA,7/28/2011,12:43:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-10,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3231,Sample-Routine,WATER,NA,7/28/2015,10:18:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:18,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-50,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-34,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-6,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-7,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-29,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-6,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-11,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-6,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2556,Sample-Routine,WATER,NA,6/29/2011,10:34:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:34,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-23,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-5,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-8,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-22,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-25,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-20,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-27,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000637-3,Field Msr/Obs,WATER,NA,5/21/2004,12:29:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000637-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 19:29,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-22,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2617,Sample-Routine,WATER,NA,6/25/2014,11:15:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-7,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-37,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-9,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:38:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:38,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4596,Sample-Routine,WATER,NA,6/27/2012,10:07:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 16:07,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-31,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-20,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_SUR01_071761440G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,6/25/2007,14:40:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_SUR01,Field observations and water column parameters Organization ActivityID=GRTE_SUR01_071761440G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.16,14.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/25/2007 20:40,NA,Surprise Lake,Lake,At Surprise Lake follow the trail down to the lake shore. You will see a spur trail going off to the left side of the lake; follow this trail to the outlet. The site is on the right site of the outlet looking at the lake.,17040101,NA,NA,NA,NA,43.72796726,-110.7773566,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9504.59,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-18,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-13,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-11,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2559,Sample-Routine,WATER,NA,6/29/2011,10:44:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:44,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-37,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-12,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000646,Field Msr/Obs,WATER,NA,6/1/2004,14:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000646,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 21:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000738/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42000738/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-17,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000637,Field Msr/Obs,WATER,NA,5/21/2004,12:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000637,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 19:29,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4594,Sample-Routine,WATER,NA,8/11/2011,10:17:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:17,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-28,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-27,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-10,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2646,Sample-Routine,WATER,NA,6/25/2014,11:32:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-1,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-4,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-9,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-31,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-11,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-18,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.56,19.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.634,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.51,16.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.473,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-3,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000847,Field Msr/Obs,WATER,NA,9/9/2004,9:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000847,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 16:20,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1908,Sample-Routine,WATER,NA,6/17/2015,10:48:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 16:48,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-33,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-18,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-24,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-8,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-4,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-18,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-10,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-30,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-2,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-10,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-6,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-4,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-2,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-12,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-14,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-23,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-25,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2197,Sample-Routine,WATER,NA,7/17/2018,11:12:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.5,20.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:12,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-39,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-7,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-30,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-40,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-13,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-28,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-3,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000646-1,Field Msr/Obs,WATER,NA,6/1/2004,14:40:00,MST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000646-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 21:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000641,Field Msr/Obs,WATER,NA,5/21/2004,16:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000641,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 23:27,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000677,Field Msr/Obs,WATER,NA,6/15/2004,12:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000677,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 19:08,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-4,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5378,Sample-Routine,WATER,NA,7/25/2012,10:37:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:37,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-1,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,81,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-19,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3825,Sample-Routine,WATER,NA,7/31/2014,12:02:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 18:02,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002878_02,Field Msr/Obs,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002878,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000918/2,Quality Control Field Replicate Msr/Obs,WATER,NA,10/6/2004,10:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Replicate Organization ActivityID=YELL_YL001.0M_42000918/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 17:47,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-21,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-22,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-3,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-10,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-24,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-12,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1907,Sample-Routine,WATER,NA,6/17/2015,10:45:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 16:45,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000837,Field Msr/Obs,WATER,NA,8/26/2004,12:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000837,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 19:09,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42000740/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-8,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:31:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:31,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-16,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:26:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:26,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-23,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-14,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-22,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-23,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-20,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-24,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3646,Sample-Routine,WATER,NA,8/11/2015,11:28:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:28,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-16,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-29,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000638-4,Field Msr/Obs,WATER,NA,5/21/2004,14:28:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000638-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 21:28,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-32,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-11,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-22,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3968,Sample-Routine,WATER,NA,8/5/2010,11:15:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-18,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-18,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-8,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-31,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4528,Sample-Routine,WATER,NA,8/20/2013,11:07:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:07,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-21,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-27,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-10,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-8,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1902,Sample-Routine,WATER,NA,6/23/2004,11:28:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:28,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-6,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-1,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-1,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,72.4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-23,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-22,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-7,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-15,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-32,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-25,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-2,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-15,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274040,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274040,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-29,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-21,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-1,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000676-6,Field Msr/Obs,WATER,NA,6/15/2004,9:53:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000676-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_AMP01_072381203G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,8/26/2007,11:44:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_AMP01,Duplicate water column parameters Organization ActivityID=GRTE_AMP01_072381203G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.64,13.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2007 17:44,NA,Amphitheater Lake,Lake,The hiking trial will lead you right up to the outlet of the lake. Our site is located on the right side of the outlet when you are looking at the lake. The site is at the first sign of running water in the outlet.,17040101,NA,NA,NA,NA,43.72922327,-110.7798475,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9663.09,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000737,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000737,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-35,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-18,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-34,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-13,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-28,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-33,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-39,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2816,Sample-Routine,WATER,NA,6/25/2013,11:05:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:05,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-6,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-1,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-27,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-28,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-31,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_120_20170806120306^01,Field Msr/Obs,WATER,NA,8/6/2017,12:03:00,MDT,NA,NA,NA,40.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_120,no fish Orig ID=0806171203 Organization ActivityID=YELL_YSL_120_20170806120306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/6/2017 18:03,NA,Yellowstone Lake Shoreline KM 120,Lake,This site is located along the west shoreline of the South Arm of Yellowstone Lake,10070001,NA,NA,NA,NA,44.3327034,-110.3563607,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-16,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-11,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3457,Sample-Routine,WATER,NA,7/22/2010,10:10:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-14,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-4,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-3,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-8,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-24,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-18,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-33,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-60,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-60,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-2,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287605,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-09-A3686,Sample-Routine,WATER,NA,7/29/2009,11:38:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/29/2009,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/29/2009 17:38,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-15,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-13,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-19,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-24,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3207,Sample-Routine,WATER,NA,7/9/2013,11:40:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:40,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-16,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2640,Sample-Routine,WATER,NA,6/25/2014,11:18:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:18,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4597,Sample-Routine,WATER,NA,6/27/2012,10:09:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 16:09,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3318,Sample-Routine,WATER,NA,7/12/2001,11:30:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3819,Sample-Routine,WATER,NA,7/31/2014,11:50:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 17:50,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3237,Sample-Routine,WATER,NA,7/28/2015,10:36:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:36,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-28,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-31,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-2,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-35,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-36,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-2,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-7,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-21,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-19,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-3,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4474,Sample-Routine,WATER,NA,8/19/2014,11:20:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-18,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-32,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-24,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-11,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-7,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000640,Field Msr/Obs,WATER,NA,5/21/2004,15:56:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000640,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 22:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-2,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2641,Sample-Routine,WATER,NA,6/25/2014,11:20:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-14,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-32,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-30,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-28,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4574,Sample-Routine,WATER,NA,6/27/2012,9:50:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 15:50,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-26,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-13,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-10,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_AMP01_082401007G02/1,Quality Control Field Replicate Portable Data Logger,WATER,NA,8/27/2008,10:00:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_AMP01,Duplicate water column parameters Organization ActivityID=GRTE_AMP01_082401007G02/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2008 16:00,NA,Amphitheater Lake,Lake,The hiking trial will lead you right up to the outlet of the lake. Our site is located on the right side of the outlet when you are looking at the lake. The site is at the first sign of running water in the outlet.,17040101,NA,NA,NA,NA,43.72922327,-110.7798475,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9663.09,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-1,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-23,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-28,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-23,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-11,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-10,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-1,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-26,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-21,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-19,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2649,Sample-Routine,WATER,NA,6/25/2014,11:39:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:39,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-70,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000786/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/10/2004,14:14:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Split Organization ActivityID=YELL_YL002.0M_42000786/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 21:14,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-10,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-12,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000922,Field Msr/Obs,WATER,NA,10/6/2004,13:45:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000922,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 20:45,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-5,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-25,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3990,Sample-Routine,WATER,NA,7/28/2011,12:41:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:41,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000921,Field Msr/Obs,WATER,NA,10/6/2004,13:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000921,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 20:30,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-2,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000647,Field Msr/Obs,WATER,NA,6/1/2004,16:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000647,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 23:11,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-12,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-21,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000791,Field Msr/Obs,WATER,NA,8/10/2004,15:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000791,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:48,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-20,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-13,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-11,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-14,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-1,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,98,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000891,Field Msr/Obs,WATER,NA,9/22/2004,11:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000891,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 18:46,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-5,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3291,Sample-Routine,WATER,NA,6/26/2007,11:30:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-27,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-28,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-15,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-39,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-29,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-14,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_70,Field Msr/Obs,WATER,NA,7/20/2005,7:19:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:19,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-20,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3992,Sample-Routine,WATER,NA,7/28/2011,12:45:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:45,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-15,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-16,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-4,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4470,Sample-Routine,WATER,NA,8/19/2014,11:10:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-10,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-5,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3820,Sample-Routine,WATER,NA,7/31/2014,11:53:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 17:53,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-13,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-18,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.1,7.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.243,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3824,Sample-Routine,WATER,NA,7/31/2014,12:00:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 18:00,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-9,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-22,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-3,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-18,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-5,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-6,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-37,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000937,Field Msr/Obs,WATER,NA,10/19/2004,12:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000937,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 19:03,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-22,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-12,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-35,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000676-4,Field Msr/Obs,WATER,NA,6/15/2004,9:53:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000676-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-25,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-4,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-11,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-8,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A5070,Sample-Routine,WATER,NA,9/21/2010,11:00:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/21/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/21/2010 17:00,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3819,Sample-Routine,WATER,NA,7/28/2013,15:01:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 21:01,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-19,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-11,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-1,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-17,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3322,Sample-Routine,WATER,NA,6/26/2007,11:38:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:38,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-36,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000938,Field Msr/Obs,WATER,NA,10/19/2004,12:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000938,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 19:20,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-15,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-27,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-22,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-30,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-5,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1906,Sample-Routine,WATER,NA,6/23/2004,11:33:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:33,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-11,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-12,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-14,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2818,Sample-Routine,WATER,NA,6/25/2013,11:11:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:11,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-20,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-5,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-27,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-25,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-7,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-26,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.49,18.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.541,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000646-3,Field Msr/Obs,WATER,NA,6/1/2004,14:40:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000646-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 21:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-17,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-4,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-12,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-23,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-20,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-15,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-32,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3466,Sample-Routine,WATER,NA,7/22/2010,10:12:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:12,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2240,Sample-Routine,WATER,NA,7/11/2017,12:05:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 19:05,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-31,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-33,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-9,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-2,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-33,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5799,Sample-Routine,WATER,NA,8/8/2012,10:16:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:16,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-3,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-31,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-11,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-20,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-17,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-3,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-14,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-29,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-2,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-20,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3326,Sample-Routine,WATER,NA,6/26/2007,11:46:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:46,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-13,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-25,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-4,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-2,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-3,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-1,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,71,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3191,Sample-Routine,WATER,NA,7/9/2013,11:46:00,MDT,NA,NA,NA,27.3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:46,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-11,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-33,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3972,Sample-Routine,WATER,NA,8/5/2010,11:21:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:21,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-31,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5359,Sample-Routine,WATER,NA,7/25/2012,10:20:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.9,20.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-100,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,100,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-100,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-15,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-19,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5794,Sample-Routine,WATER,NA,8/8/2012,10:06:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:06,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-5,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-6,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-11,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000638-6,Field Msr/Obs,WATER,NA,5/21/2004,14:28:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000638-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 21:28,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-1,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-9,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-9,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-32,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3821,Sample-Routine,WATER,NA,7/28/2013,15:05:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.3,18.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 21:05,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-24,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-22,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-33,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-21,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2236,Sample-Routine,WATER,NA,7/11/2017,11:55:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 18:55,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-26,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-22,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-2,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-7,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-16,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-27,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3474,Sample-Routine,WATER,NA,7/22/2010,10:25:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:25,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281750,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281750,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-8,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001844/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/8/2006,10:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Replicate Organization ActivityID=YELL_YL007.0M_42001844/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/8/2006 17:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:58:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:58,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:33:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:33,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-11,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-36,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-17,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287816,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287816,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-32,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-29,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-29,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-12,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001762,Field Msr/Obs,WATER,NA,7/10/2006,13:51:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001762,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/10/2006 20:51,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-28,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-34,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-21,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-3,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-2,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-18,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-35,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1910,Sample-Routine,WATER,NA,6/17/2015,10:53:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 16:53,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3697,Sample-Routine,WATER,NA,7/31/2014,12:10:00,MDT,NA,NA,NA,26.9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 18:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000840/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Split Organization ActivityID=YELL_YL007.0M_42000840/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-21,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-25,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-19,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000638-1,Field Msr/Obs,WATER,NA,5/21/2004,14:28:00,MST,NA,NA,NA,78,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000638-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 21:28,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-1,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,82,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000941/2,Quality Control Field Replicate Msr/Obs,WATER,NA,10/19/2004,12:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Replicate Organization ActivityID=YELL_YL004.0M_42000941/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 19:20,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-2,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-12,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-35,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-11,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-23,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-1,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-33,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-1,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-6,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-12,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.4,21.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.305,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-9,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-28,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4532,Sample-Routine,WATER,NA,8/20/2013,11:15:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.94,7.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.882,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4595,Sample-Routine,WATER,NA,8/11/2011,10:19:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:19,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-18,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283470,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283470,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.37,6.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.845,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001882_01,Field Msr/Obs,WATER,NA,10/6/2006,13:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001882,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39218,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/6/2006 20:29,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2820,Sample-Routine,WATER,NA,6/25/2013,11:16:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:16,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001804_01,Field Msr/Obs,WATER,NA,8/9/2006,15:43:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/9/2006 22:43,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42003176_02,Field Msr/Obs,WATER,NA,9/12/2012,8:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42003176,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2012 15:27,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.38,10.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.729,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.66,16.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.085,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_11,Field Msr/Obs,WATER,NA,7/20/2005,7:57:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:57,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3606,Sample-Routine,WATER,NA,8/10/2017,11:22:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_10,Field Msr/Obs,WATER,NA,8/8/2005,10:37:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:37,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_93,Field Msr/Obs,WATER,NA,7/27/2005,7:55:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 14:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_22,Field Msr/Obs,WATER,NA,10/5/2005,10:49:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-29,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_25,Field Msr/Obs,WATER,NA,7/27/2005,8:17:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-28,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-27,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_9,Field Msr/Obs,WATER,NA,9/19/2005,8:42:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5360,Sample-Routine,WATER,NA,7/25/2012,10:48:00,MDT,NA,NA,NA,27.8,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:48,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-20,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_14,Field Msr/Obs,WATER,NA,9/19/2005,8:34:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_21,Field Msr/Obs,WATER,NA,8/8/2005,8:34:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_27,Field Msr/Obs,WATER,NA,10/18/2005,11:05:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_7,Field Msr/Obs,WATER,NA,9/7/2005,8:53:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:53,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1912,Sample-Routine,WATER,NA,6/17/2015,10:58:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 16:58,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_32,Field Msr/Obs,WATER,NA,10/18/2005,10:58:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-50,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_48.8,Field Msr/Obs,WATER,NA,7/26/2005,13:33:00,MST,NA,NA,NA,48.8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_48.8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:33,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_7,Field Msr/Obs,WATER,NA,10/5/2005,11:10:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:10,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_40,Field Msr/Obs,WATER,NA,9/19/2005,8:06:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3642,Sample-Routine,WATER,NA,8/11/2015,11:20:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2015 17:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:41:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:41,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_50,Field Msr/Obs,WATER,NA,10/5/2005,10:34:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1913,Sample-Routine,WATER,NA,6/17/2015,11:00:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 17:00,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_24,Field Msr/Obs,WATER,NA,10/7/2005,9:15:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3817,Sample-Routine,WATER,NA,7/31/2014,11:45:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 17:45,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_8,Field Msr/Obs,WATER,NA,9/7/2005,8:52:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-12,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3696,Sample-Routine,WATER,NA,7/31/2014,11:42:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 17:42,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_13,Field Msr/Obs,WATER,NA,7/26/2005,14:05:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_11,Field Msr/Obs,WATER,NA,10/5/2005,11:04:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:04,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:41:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:41,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_9,Field Msr/Obs,WATER,NA,9/7/2005,8:51:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_25,Field Msr/Obs,WATER,NA,8/8/2005,8:29:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4475,Sample-Routine,WATER,NA,8/19/2014,11:21:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:21,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-5,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_16,Field Msr/Obs,WATER,NA,9/7/2005,8:41:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_1,Field Msr/Obs,WATER,NA,8/3/2005,8:22:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-30,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3469,Sample-Routine,WATER,NA,7/22/2010,10:17:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:17,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003254_02,Field Msr/Obs,WATER,NA,6/11/2013,10:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Zebidiah Buck assisting. Too rough for secchi. Organization ActivityID=YELL_YL002.0M_42003254,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A3236,Sample-Routine,WATER,NA,7/28/2015,10:34:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2015 16:34,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3822,Sample-Routine,WATER,NA,7/28/2013,15:06:00,MDT,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 21:06,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_5,Field Msr/Obs,WATER,NA,10/5/2005,11:13:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:13,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.2,22.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.293,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-03,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-03,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_32,Field Msr/Obs,WATER,NA,8/3/2005,7:37:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:37,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238-70,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Depth Profile Organization ActivityID=YELL_YL006.0M_42001238-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_3,Field Msr/Obs,WATER,NA,9/7/2005,8:59:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:59,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_33,Field Msr/Obs,WATER,NA,8/8/2005,8:17:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_20,Field Msr/Obs,WATER,NA,10/7/2005,9:21:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_17,Field Msr/Obs,WATER,NA,9/7/2005,13:02:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:02,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3823,Sample-Routine,WATER,NA,7/31/2014,11:58:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 17:58,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_28,Field Msr/Obs,WATER,NA,10/18/2005,9:47:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-27,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_33,Field Msr/Obs,WATER,NA,7/27/2005,8:05:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:05,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_18,Field Msr/Obs,WATER,NA,9/7/2005,8:38:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:38,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_50,Field Msr/Obs,WATER,NA,9/7/2005,8:13:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:13,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_18,Field Msr/Obs,WATER,NA,7/26/2005,13:57:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:57,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_8,Field Msr/Obs,WATER,NA,8/8/2005,8:53:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:53,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_9,Field Msr/Obs,WATER,NA,8/3/2005,8:11:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_16,Field Msr/Obs,WATER,NA,10/18/2005,11:21:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938640-0605-29-F,Field Msr/Obs,WATER,NA,6/5/2013,18:40:00,MST,NA,NA,NA,34,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,No associated lake profile due to equipment issue. No secchi reading due to broken equipment.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.5,6.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2013 1:40,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-19,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001327,Field Msr/Obs,WATER,NA,7/12/2005,13:07:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001327,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/12/2005 20:07,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3473,Sample-Routine,WATER,NA,7/22/2010,10:24:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_18,Field Msr/Obs,WATER,NA,9/7/2005,13:00:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:00,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_40,Field Msr/Obs,WATER,NA,10/18/2005,9:39:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3172,Sample-Routine,WATER,NA,8/15/2017,12:46:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:46,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-31,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_21,Field Msr/Obs,WATER,NA,7/20/2005,7:42:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_50,Field Msr/Obs,WATER,NA,8/8/2005,8:14:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_AMP01_072381144G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,8/26/2007,11:44:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_AMP01,Field observations and water column parameters Organization ActivityID=GRTE_AMP01_072381144G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.69,13.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2007 17:44,NA,Amphitheater Lake,Lake,The hiking trial will lead you right up to the outlet of the lake. Our site is located on the right side of the outlet when you are looking at the lake. The site is at the first sign of running water in the outlet.,17040101,NA,NA,NA,NA,43.72922327,-110.7798475,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9663.09,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-29,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_13,Field Msr/Obs,WATER,NA,8/8/2005,10:33:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:33,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001286/2,Quality Control Field Replicate Msr/Obs,WATER,NA,6/27/2005,11:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Replicate Organization ActivityID=YELL_YL004.0M_42001286/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/27/2005 18:48,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-20,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_27,Field Msr/Obs,WATER,NA,9/7/2005,8:25:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_13,Field Msr/Obs,WATER,NA,8/26/2005,11:26:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:26,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001470,Field Msr/Obs,WATER,NA,9/19/2005,11:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001470,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 18:01,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3983,Sample-Routine,WATER,NA,7/28/2011,12:25:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:25,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3964,Sample-Routine,WATER,NA,8/5/2010,11:10:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_92,Field Msr/Obs,WATER,NA,8/8/2005,8:07:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_92,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_4,Field Msr/Obs,WATER,NA,9/19/2005,8:49:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.59,17.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.475,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001528_15,Field Msr/Obs,WATER,NA,10/7/2005,10:39:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001528_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 17:39,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-4,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238-10,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Depth Profile Organization ActivityID=YELL_YL006.0M_42001238-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_23,Field Msr/Obs,WATER,NA,7/27/2005,10:17:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:17,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_60,Field Msr/Obs,WATER,NA,7/20/2005,7:21:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:21,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_8,Field Msr/Obs,WATER,NA,8/3/2005,8:12:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:12,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2548,Sample-Routine,WATER,NA,6/29/2011,10:55:00,MDT,NA,NA,NA,27.5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:55,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_16,Field Msr/Obs,WATER,NA,9/7/2005,13:03:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_17,Field Msr/Obs,WATER,NA,7/27/2005,8:28:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_90,Field Msr/Obs,WATER,NA,10/18/2005,9:31:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:31,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_14,Field Msr/Obs,WATER,NA,7/27/2005,8:32:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001385/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/8/2005,12:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42001385/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 19:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2242,Sample-Routine,WATER,NA,7/11/2017,12:10:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 19:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_8,Field Msr/Obs,WATER,NA,7/20/2005,8:01:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001383,Field Msr/Obs,WATER,NA,8/8/2005,11:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001383,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 18:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-32772005,Field Msr/Obs,WATER,NA,6/22/2005,10:27:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 17:27,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001268-10,Field Msr/Obs,WATER,NA,6/16/2005,12:40:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001268-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2005 19:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3200,Sample-Routine,WATER,NA,7/9/2013,11:26:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:26,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-32,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_14,Field Msr/Obs,WATER,NA,8/8/2005,8:44:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:44,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001303,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A2555,Sample-Routine,WATER,NA,6/29/2011,10:32:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/29/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/29/2011 16:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-3,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_8,Field Msr/Obs,WATER,NA,8/8/2005,10:40:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4468,Sample-Routine,WATER,NA,8/19/2014,11:06:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:06,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_5,Field Msr/Obs,WATER,NA,7/26/2005,14:16:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_25,Field Msr/Obs,WATER,NA,8/8/2005,10:15:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-3,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-30,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_21,Field Msr/Obs,WATER,NA,9/19/2005,8:24:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-16,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_11,Field Msr/Obs,WATER,NA,9/7/2005,13:11:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3324,Sample-Routine,WATER,NA,6/26/2007,11:41:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:41,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_5,Field Msr/Obs,WATER,NA,10/18/2005,11:37:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:37,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_50,Field Msr/Obs,WATER,NA,7/27/2005,8:02:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:02,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_26,Field Msr/Obs,WATER,NA,8/26/2005,11:07:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:07,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_80,Field Msr/Obs,WATER,NA,8/3/2005,7:29:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238-40,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Depth Profile Organization ActivityID=YELL_YL006.0M_42001238-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-15-A1915,Sample-Routine,WATER,NA,6/17/2015,11:05:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/17/2015,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/17/2015 17:05,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_27,Field Msr/Obs,WATER,NA,10/18/2005,9:49:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_26,Field Msr/Obs,WATER,NA,10/18/2005,11:07:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:07,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_24,Field Msr/Obs,WATER,NA,10/18/2005,9:53:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:53,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_14,Field Msr/Obs,WATER,NA,10/5/2005,11:00:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:00,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242_01,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001242,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_11,Field Msr/Obs,WATER,NA,7/26/2005,14:08:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:08,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_12,Field Msr/Obs,WATER,NA,10/7/2005,9:32:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:32,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-5,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5796,Sample-Routine,WATER,NA,8/8/2012,10:10:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001542,Field Msr/Obs,WATER,NA,10/18/2005,11:59:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001542,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:59,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001281,Field Msr/Obs,WATER,NA,6/27/2005,9:37:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001281,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/27/2005 16:37,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_80,Field Msr/Obs,WATER,NA,9/7/2005,8:09:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-25,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20160801090101^01,Field Msr/Obs,WATER,NA,8/1/2016,9:01:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Not set because of nearby loons Orig ID=0801160901 Organization ActivityID=YELL_YSL_218_20160801090101,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:01,NA,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_8,Field Msr/Obs,WATER,NA,10/7/2005,9:38:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:38,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001443,Field Msr/Obs,WATER,NA,9/7/2005,10:18:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001443,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 17:18,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4594,Sample-Routine,WATER,NA,6/27/2012,10:01:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 16:01,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_32,Field Msr/Obs,WATER,NA,8/26/2005,10:58:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 17:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_23,Field Msr/Obs,WATER,NA,10/5/2005,10:47:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_16,Field Msr/Obs,WATER,NA,8/26/2005,11:21:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_17,Field Msr/Obs,WATER,NA,8/8/2005,10:27:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_60,Field Msr/Obs,WATER,NA,7/27/2005,8:01:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_10,Field Msr/Obs,WATER,NA,9/7/2005,8:49:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_9,Field Msr/Obs,WATER,NA,10/18/2005,10:15:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.81,18.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.419,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001387/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/8/2005,12:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42001387/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 19:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_17,Field Msr/Obs,WATER,NA,8/3/2005,7:59:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:59,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_40,Field Msr/Obs,WATER,NA,10/18/2005,10:55:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:55,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_5,Field Msr/Obs,WATER,NA,8/26/2005,11:37:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:37,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_90,Field Msr/Obs,WATER,NA,8/8/2005,8:08:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_33,Field Msr/Obs,WATER,NA,8/8/2005,10:04:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-04-A1911,Sample-Routine,WATER,NA,6/23/2004,11:43:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2004,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2004 17:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_16,Field Msr/Obs,WATER,NA,10/5/2005,10:57:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:57,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_29,Field Msr/Obs,WATER,NA,7/27/2005,8:11:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_30,Field Msr/Obs,WATER,NA,10/18/2005,9:44:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:44,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_17,Field Msr/Obs,WATER,NA,10/7/2005,9:25:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-4,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_4,Field Msr/Obs,WATER,NA,7/20/2005,8:07:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001528_10,Field Msr/Obs,WATER,NA,10/7/2005,10:40:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001528_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 17:40,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_6,Field Msr/Obs,WATER,NA,10/5/2005,11:12:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:12,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_11,Field Msr/Obs,WATER,NA,8/8/2005,8:49:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_25,Field Msr/Obs,WATER,NA,7/20/2005,7:37:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:37,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_32,Field Msr/Obs,WATER,NA,7/26/2005,13:37:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:37,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_28,Field Msr/Obs,WATER,NA,10/18/2005,11:04:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-91,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,91.7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-91,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_22,Field Msr/Obs,WATER,NA,10/7/2005,9:18:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:18,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-2,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_21,Field Msr/Obs,WATER,NA,8/3/2005,7:53:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:53,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_30,Field Msr/Obs,WATER,NA,10/7/2005,9:06:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_15,Field Msr/Obs,WATER,NA,9/7/2005,13:05:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_31,Field Msr/Obs,WATER,NA,8/8/2005,10:07:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:07,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001448,Field Msr/Obs,WATER,NA,9/7/2005,14:21:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001448,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 21:21,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_24,Field Msr/Obs,WATER,NA,9/7/2005,8:29:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_17,Field Msr/Obs,WATER,NA,7/26/2005,13:59:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:59,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_20,Field Msr/Obs,WATER,NA,7/20/2005,7:44:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:44,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_3,Field Msr/Obs,WATER,NA,8/3/2005,8:19:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:19,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00300469,Quality Control Sample-Field Replicate,WATER,Surface Water,7/22/2003,9:15:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430018106300201,NA,NA,"Stable, normal stage",Routine sample,40,USGS parameter code 82398,Multiple verticals,US DH-81,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,7/22/2003 15:15,NA,"ILLCO SEEP NEAR OUTLET, NEAR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.0049661,-106.5011471,NA,Unknown,Unknown,Interpolated from MAP.,NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_33,Field Msr/Obs,WATER,NA,9/7/2005,8:16:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-1,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_19,Field Msr/Obs,WATER,NA,7/27/2005,10:23:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.08,12.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.974,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5798,Sample-Routine,WATER,NA,8/8/2012,10:14:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:14,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_8,Field Msr/Obs,WATER,NA,7/26/2005,14:12:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_23,Field Msr/Obs,WATER,NA,8/8/2005,10:18:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:18,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_17,Field Msr/Obs,WATER,NA,10/18/2005,10:03:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_0.2,Field Msr/Obs,WATER,NA,8/26/2005,10:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 17:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_25,Field Msr/Obs,WATER,NA,9/7/2005,8:28:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_23,Field Msr/Obs,WATER,NA,7/20/2005,7:39:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-80,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001417,Field Msr/Obs,WATER,NA,8/23/2005,13:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001417,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/23/2005 20:55,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_20,Field Msr/Obs,WATER,NA,8/8/2005,10:23:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281930,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281930,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4526,Sample-Routine,WATER,NA,8/20/2013,11:02:00,MDT,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:02,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_24,Field Msr/Obs,WATER,NA,10/5/2005,10:46:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-25,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3203,Sample-Routine,WATER,NA,7/9/2013,11:32:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/9/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/9/2013 17:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_31,Field Msr/Obs,WATER,NA,10/18/2005,9:43:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_218_20160801090302^01,Field Msr/Obs,WATER,NA,8/1/2016,9:03:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_218,Not set because of nearby loons Orig ID=0801160903 Organization ActivityID=YELL_YSL_218_20160801090302,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 15:03,NA,Yellowstone Lake Shoreline KM 218,Lake,This station is located within the non-motorized zone of the South Arm of Yellowstone Lake. It begins on the east shoreline of Grouse Creek and extends outward on the east side of Peale Island.,10070001,NA,NA,NA,NA,44.28426,-110.30757,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_33,Field Msr/Obs,WATER,NA,10/18/2005,10:57:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:57,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_94,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,94,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_94,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001329,Field Msr/Obs,WATER,NA,7/12/2005,13:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001329,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/12/2005 20:52,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4590,Sample-Routine,WATER,NA,6/27/2012,9:55:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 15:55,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_9,Field Msr/Obs,WATER,NA,10/18/2005,11:31:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:31,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4519,Sample-Routine,WATER,NA,8/20/2013,11:25:00,MDT,NA,NA,NA,23.7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:25,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-28,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_18,Field Msr/Obs,WATER,NA,8/8/2005,8:39:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_19,Field Msr/Obs,WATER,NA,7/26/2005,13:56:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:56,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-97,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,97.5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-97,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_9,Field Msr/Obs,WATER,NA,7/20/2005,8:00:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 15:00,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_19,Field Msr/Obs,WATER,NA,10/7/2005,9:22:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:22,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-70,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.08,17.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.277,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5381,Sample-Routine,WATER,NA,7/25/2012,10:43:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-80,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3827,Sample-Routine,WATER,NA,7/31/2014,12:05:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 18:05,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_70,Field Msr/Obs,WATER,NA,8/8/2005,8:11:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283427,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283427,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-23,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-20,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-32792005,Field Msr/Obs,WATER,NA,6/22/2005,10:27:00,MST,NA,NA,NA,18.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.82,7.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 17:27,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_0.2,Field Msr/Obs,WATER,NA,10/18/2005,9:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_13,Field Msr/Obs,WATER,NA,7/27/2005,8:34:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4531,Sample-Routine,WATER,NA,8/20/2013,11:13:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:13,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-21,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-90,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_24,Field Msr/Obs,WATER,NA,8/26/2005,11:10:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:10,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001280,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A3816,Sample-Routine,WATER,NA,7/28/2013,15:15:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2013 21:15,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_15,Field Msr/Obs,WATER,NA,9/7/2005,8:42:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_1,Field Msr/Obs,WATER,NA,7/20/2005,8:11:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_28,Field Msr/Obs,WATER,NA,8/8/2005,10:11:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-6,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5373,Sample-Routine,WATER,NA,7/25/2012,10:24:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.7,20.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_0.2,Field Msr/Obs,WATER,NA,10/7/2005,8:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 15:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.28,6.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.444,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_22,Field Msr/Obs,WATER,NA,9/7/2005,8:32:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_33,Field Msr/Obs,WATER,NA,9/7/2005,12:39:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:39,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A3818,Sample-Routine,WATER,NA,7/31/2014,11:47:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/31/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/31/2014 17:47,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002063_02,Field Msr/Obs,WATER,NA,8/8/2007,10:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002063,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2007 17:09,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-10,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_26,Field Msr/Obs,WATER,NA,10/18/2005,9:50:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:50,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2644,Sample-Routine,WATER,NA,6/25/2014,11:27:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:27,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001288,Field Msr/Obs,WATER,NA,6/27/2005,13:31:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001288,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/27/2005 20:31,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_8,Field Msr/Obs,WATER,NA,9/19/2005,8:43:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-15,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5800,Sample-Routine,WATER,NA,8/8/2012,10:18:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/8/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/8/2012 16:18,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001416,Field Msr/Obs,WATER,NA,8/23/2005,10:57:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001416,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/23/2005 17:57,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_2,Field Msr/Obs,WATER,NA,7/27/2005,8:50:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:50,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-14,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A4593,Sample-Routine,WATER,NA,6/27/2012,9:59:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/27/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/27/2012 15:59,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_40,Field Msr/Obs,WATER,NA,9/7/2005,8:15:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_10,Field Msr/Obs,WATER,NA,7/27/2005,10:36:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:36,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A4589,Sample-Routine,WATER,NA,8/11/2011,10:36:00,MDT,NA,NA,NA,28.8,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/11/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/11/2011 16:36,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_15,Field Msr/Obs,WATER,NA,9/19/2005,8:33:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:33,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_15,Field Msr/Obs,WATER,NA,10/18/2005,10:06:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_32,Field Msr/Obs,WATER,NA,9/7/2005,8:17:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_80,Field Msr/Obs,WATER,NA,9/19/2005,8:00:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:00,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.92,15.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.165,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_2,Field Msr/Obs,WATER,NA,10/5/2005,11:17:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.93,21.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.432,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-33,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-1,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_29,Field Msr/Obs,WATER,NA,8/3/2005,7:42:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_23,Field Msr/Obs,WATER,NA,9/7/2005,8:30:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_27,Field Msr/Obs,WATER,NA,8/3/2005,7:45:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:45,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-70,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-20,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-40,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4530,Sample-Routine,WATER,NA,8/20/2013,11:11:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:11,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_31,Field Msr/Obs,WATER,NA,9/7/2005,8:19:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:19,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_2,Field Msr/Obs,WATER,NA,10/18/2005,10:25:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_19,Field Msr/Obs,WATER,NA,9/19/2005,8:27:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-25,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_0.2,Field Msr/Obs,WATER,NA,7/27/2005,9:56:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,46.72,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-33,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_29,Field Msr/Obs,WATER,NA,7/20/2005,7:31:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:31,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-14,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_24,Field Msr/Obs,WATER,NA,7/20/2005,7:38:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:38,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_21,Field Msr/Obs,WATER,NA,8/8/2005,10:21:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_80,Field Msr/Obs,WATER,NA,8/8/2005,8:10:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:10,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_29,Field Msr/Obs,WATER,NA,9/7/2005,12:45:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:45,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4535,Sample-Routine,WATER,NA,8/20/2013,11:22:00,MDT,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_3,Field Msr/Obs,WATER,NA,7/20/2005,8:08:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_40,Field Msr/Obs,WATER,NA,8/8/2005,8:16:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_8,Field Msr/Obs,WATER,NA,10/18/2005,10:16:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3969,Sample-Routine,WATER,NA,8/5/2010,11:17:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:17,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_14,Field Msr/Obs,WATER,NA,7/26/2005,14:03:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2823,Sample-Routine,WATER,NA,6/25/2013,11:25:00,MDT,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:25,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_25,Field Msr/Obs,WATER,NA,8/3/2005,7:48:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:48,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238-5,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Depth Profile Organization ActivityID=YELL_YL006.0M_42001238-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-01-A3606,Sample-Routine,WATER,NA,7/12/2001,11:47:00,MDT,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/12/2001,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/12/2001 17:47,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-18,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_11,Field Msr/Obs,WATER,NA,9/7/2005,8:48:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:48,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2004-0,Sample,WATER,NA,6/23/2004,11:28:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2004 17:28,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-23,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_23,Field Msr/Obs,WATER,NA,9/7/2005,12:53:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-05,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256/2,Quality Control Field Replicate Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Replicate Organization ActivityID=YELL_YL004.0M_42001256/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001473,Field Msr/Obs,WATER,NA,9/19/2005,13:22:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001473,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 20:22,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-10,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-15,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_7,Field Msr/Obs,WATER,NA,7/27/2005,10:40:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:40,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_31,Field Msr/Obs,WATER,NA,10/7/2005,9:05:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-GRTE_SUR01_082051023G01_01,Field Msr/Obs-Portable Data Logger,WATER,NA,7/23/2008,10:23:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,GRTEWQ01,NA,11NPSWRD_WQX-GRTE_SUR01,Collected field parameter and water column parameters Organization ActivityID=GRTE_SUR01_082051023G01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.44,8.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_INTROLL9000,11NPSWRD_WQX,In-Situ TROLL 9000 Multi-Parameter Water Quality Monitor,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/23/2008 16:23,NA,Surprise Lake,Lake,At Surprise Lake follow the trail down to the lake shore. You will see a spur trail going off to the left side of the lake; follow this trail to the outlet. The site is on the right site of the outlet looking at the lake.,17040101,NA,NA,NA,NA,43.72796726,-110.7773566,NA,NA,NA,GPS Code (Pseudo Range) Differential,NAD83,9504.59,ft,NA,NA,GPS Code (Pseudo Range) Differential,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001236/1,Quality Control Field Replicate Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42001236/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_28,Field Msr/Obs,WATER,NA,7/27/2005,10:10:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:10,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001515,Field Msr/Obs,WATER,NA,10/5/2005,13:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001515,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 20:32,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238-50,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Depth Profile Organization ActivityID=YELL_YL006.0M_42001238-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-50,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_30,Field Msr/Obs,WATER,NA,8/8/2005,8:21:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:21,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_4,Field Msr/Obs,WATER,NA,10/5/2005,11:14:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-90,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,90.6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_8,Field Msr/Obs,WATER,NA,9/7/2005,13:15:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-50,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001389,Field Msr/Obs,WATER,NA,8/8/2005,14:39:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001389,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 21:39,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_22,Field Msr/Obs,WATER,NA,8/8/2005,10:20:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_18,Field Msr/Obs,WATER,NA,8/26/2005,11:18:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:18,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_12,Field Msr/Obs,WATER,NA,8/26/2005,11:27:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_32,Field Msr/Obs,WATER,NA,7/20/2005,7:26:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_16,Field Msr/Obs,WATER,NA,7/27/2005,10:27:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_23,Field Msr/Obs,WATER,NA,7/26/2005,13:50:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_13,Field Msr/Obs,WATER,NA,8/8/2005,8:46:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_8,Field Msr/Obs,WATER,NA,10/18/2005,11:33:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:33,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-32,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_21,Field Msr/Obs,WATER,NA,10/5/2005,10:50:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:50,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2618,Sample-Routine,WATER,NA,6/25/2014,11:45:00,MDT,NA,NA,NA,28,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:45,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_90,Field Msr/Obs,WATER,NA,7/27/2005,9:58:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 16:58,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001514,Field Msr/Obs,WATER,NA,10/5/2005,11:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001514,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:48,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001326,Field Msr/Obs,WATER,NA,7/12/2005,12:10:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001326,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/12/2005 19:10,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_26,Field Msr/Obs,WATER,NA,7/27/2005,10:13:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:13,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_93,Field Msr/Obs,WATER,NA,7/20/2005,7:15:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3325,Sample-Routine,WATER,NA,6/26/2007,11:44:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:44,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_22,Field Msr/Obs,WATER,NA,8/8/2005,8:33:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:33,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_29,Field Msr/Obs,WATER,NA,10/18/2005,9:46:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-50,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_6,Field Msr/Obs,WATER,NA,10/18/2005,10:19:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:19,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_60,Field Msr/Obs,WATER,NA,9/7/2005,8:12:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:12,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_0.2,Field Msr/Obs,WATER,NA,7/26/2005,13:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:32,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_15,Field Msr/Obs,WATER,NA,10/5/2005,10:59:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:59,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001465,Field Msr/Obs,WATER,NA,9/19/2005,8:37:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001465,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:37,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-08,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-08,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-COMPOSITE-2007-0,Sample,WATER,NA,6/26/2007,11:39:00,MDT,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2007 17:39,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3966,Sample-Routine,WATER,NA,8/5/2010,11:12:00,MDT,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2010 17:12,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001234_01,Field Msr/Obs,WATER,NA,6/3/2005,10:19:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001234,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 17:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_31,Field Msr/Obs,WATER,NA,8/26/2005,11:00:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:00,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_5,Field Msr/Obs,WATER,NA,7/27/2005,8:45:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:45,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_31,Field Msr/Obs,WATER,NA,8/3/2005,7:39:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A2822,Sample-Routine,WATER,NA,6/25/2013,11:22:00,MDT,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2013 17:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_4,Field Msr/Obs,WATER,NA,9/7/2005,8:58:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:58,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-12-A5376,Sample-Routine,WATER,NA,7/25/2012,10:32:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/25/2012,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/25/2012 16:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-13-A4518,Sample-Routine,WATER,NA,8/20/2013,11:00:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.9,18.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/20/2013,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/20/2013 17:00,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-16,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249_01,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001249,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.238,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-29-F,Field Msr/Obs,WATER,NA,10/11/2012,9:23:32,MST,NA,NA,NA,17.554,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.74,9.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:23,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-90,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_19,Field Msr/Obs,WATER,NA,8/8/2005,8:37:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:37,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-13,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-70,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_31,Field Msr/Obs,WATER,NA,7/26/2005,13:39:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:39,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_25,Field Msr/Obs,WATER,NA,7/27/2005,10:14:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:14,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_33,Field Msr/Obs,WATER,NA,9/19/2005,8:07:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_28,Field Msr/Obs,WATER,NA,10/7/2005,9:09:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:09,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A2645,Sample-Routine,WATER,NA,6/25/2014,11:30:00,MDT,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/25/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/25/2014 17:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-7,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-07-A3321,Sample-Routine,WATER,NA,6/26/2007,11:35:00,MDT,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/26/2007,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/26/2007 17:35,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_27,Field Msr/Obs,WATER,NA,10/5/2005,10:41:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001235,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001235,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_17,Field Msr/Obs,WATER,NA,9/7/2005,8:39:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_92,Field Msr/Obs,WATER,NA,10/18/2005,9:30:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_92,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_18,Field Msr/Obs,WATER,NA,7/20/2005,7:47:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_27,Field Msr/Obs,WATER,NA,8/8/2005,8:26:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-19,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_40,Field Msr/Obs,WATER,NA,7/20/2005,7:24:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_12,Field Msr/Obs,WATER,NA,9/7/2005,8:46:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.23,20.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-16,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_40,Field Msr/Obs,WATER,NA,8/3/2005,7:35:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_2,Field Msr/Obs,WATER,NA,9/19/2005,8:52:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-11-A3986,Sample-Routine,WATER,NA,7/28/2011,12:32:00,MDT,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/28/2011,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/28/2011 18:32,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-10-A3476,Sample-Routine,WATER,NA,7/22/2010,10:28:00,MDT,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/22/2010,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/22/2010 16:28,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_70,Field Msr/Obs,WATER,NA,10/5/2005,10:31:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:31,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001283,Field Msr/Obs,WATER,NA,6/27/2005,11:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001283,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/27/2005 18:48,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_10,Field Msr/Obs,WATER,NA,10/18/2005,10:13:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:13,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_33,Field Msr/Obs,WATER,NA,7/20/2005,7:25:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_5,Field Msr/Obs,WATER,NA,7/20/2005,8:05:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 15:05,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_9,Field Msr/Obs,WATER,NA,8/26/2005,11:31:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:31,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_27,Field Msr/Obs,WATER,NA,8/8/2005,10:12:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_23,Field Msr/Obs,WATER,NA,7/27/2005,8:19:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:19,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_46,Field Msr/Obs,WATER,NA,9/7/2005,12:36:00,MST,NA,NA,NA,46,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_46,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-80,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-14-A4451,Sample-Routine,WATER,NA,8/19/2014,11:00:00,MDT,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/19/2014,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/19/2014 17:00,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_33,Field Msr/Obs,WATER,NA,7/26/2005,13:36:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_25,Field Msr/Obs,WATER,NA,10/18/2005,9:52:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_23,Field Msr/Obs,WATER,NA,10/18/2005,11:11:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_40,Field Msr/Obs,WATER,NA,8/8/2005,10:02:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:02,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.59,21.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.064,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_19,Field Msr/Obs,WATER,NA,9/7/2005,8:36:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_21,Field Msr/Obs,WATER,NA,10/7/2005,9:19:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_31,Field Msr/Obs,WATER,NA,8/8/2005,8:20:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.04,20.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.862,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_21,Field Msr/Obs,WATER,NA,8/26/2005,11:14:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:14,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_33,Field Msr/Obs,WATER,NA,8/26/2005,10:57:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 17:57,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-29-F,Field Msr/Obs,WATER,NA,10/22/2019,15:54:12,MST,NA,NA,NA,20.94,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.08,9.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:54,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001268-30,Field Msr/Obs,WATER,NA,6/16/2005,12:40:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001268-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2005 19:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-90,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_40,Field Msr/Obs,WATER,NA,10/7/2005,9:00:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:00,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_8,Field Msr/Obs,WATER,NA,8/26/2005,11:33:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:33,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-15,Field Msr/Obs,WATER,NA,8/26/2003,9:13:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:13,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_6,Field Msr/Obs,WATER,NA,7/26/2005,14:15:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_3,Field Msr/Obs,WATER,NA,8/26/2005,11:40:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_28,Field Msr/Obs,WATER,NA,10/5/2005,10:40:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:40,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001545,Field Msr/Obs,WATER,NA,10/18/2005,12:39:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001545,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 19:39,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_23,Field Msr/Obs,WATER,NA,10/18/2005,9:54:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:54,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-13,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-10,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_16,Field Msr/Obs,WATER,NA,7/20/2005,7:50:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:50,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-4,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_28,Field Msr/Obs,WATER,NA,9/7/2005,12:46:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_11,Field Msr/Obs,WATER,NA,8/8/2005,10:36:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-90,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-2,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_32,Field Msr/Obs,WATER,NA,7/27/2005,8:06:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001469/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/19/2005,9:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Replicate Organization ActivityID=YELL_YL007.0M_42001469/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-13,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_7,Field Msr/Obs,WATER,NA,7/27/2005,8:42:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_28,Field Msr/Obs,WATER,NA,7/20/2005,7:32:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_6,Field Msr/Obs,WATER,NA,8/3/2005,8:15:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_17,Field Msr/Obs,WATER,NA,9/19/2005,8:30:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001358,Field Msr/Obs,WATER,NA,7/27/2005,11:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001358,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 18:08,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001264,Field Msr/Obs,WATER,NA,6/16/2005,10:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001264,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2005 17:25,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-30,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_12,Field Msr/Obs,WATER,NA,7/26/2005,14:06:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-90,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_90,Field Msr/Obs,WATER,NA,10/5/2005,10:28:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_1,Field Msr/Obs,WATER,NA,9/19/2005,8:53:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:53,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_2,Field Msr/Obs,WATER,NA,8/8/2005,9:02:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 16:02,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001287,Field Msr/Obs,WATER,NA,6/27/2005,12:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001287,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/27/2005 19:20,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_24,Field Msr/Obs,WATER,NA,9/19/2005,8:20:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_18,Field Msr/Obs,WATER,NA,10/18/2005,11:18:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:18,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_6,Field Msr/Obs,WATER,NA,7/20/2005,8:04:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 15:04,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-90,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-28,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_26,Field Msr/Obs,WATER,NA,7/26/2005,13:46:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_22,Field Msr/Obs,WATER,NA,9/7/2005,12:55:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:55,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001241,Field Msr/Obs,WATER,NA,6/3/2005,14:43:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001241,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/3/2005 21:43,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-1,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_21,Field Msr/Obs,WATER,NA,9/7/2005,8:33:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:33,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-60,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001324/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/12/2005,9:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Replicate Organization ActivityID=YELL_YL002.0M_42001324/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/12/2005 16:05,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000298/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/26/2003,12:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Replicate Organization ActivityID=YELL_YL003.0M_42000298/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 19:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_7,Field Msr/Obs,WATER,NA,7/26/2005,14:13:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_12,Field Msr/Obs,WATER,NA,8/8/2005,10:34:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_4,Field Msr/Obs,WATER,NA,7/26/2005,14:18:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:18,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_80,Field Msr/Obs,WATER,NA,7/27/2005,10:00:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:00,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_0.2,Field Msr/Obs,WATER,NA,7/20/2005,7:14:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_20,Field Msr/Obs,WATER,NA,7/27/2005,8:24:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_0.2,Field Msr/Obs,WATER,NA,8/8/2005,8:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_40,Field Msr/Obs,WATER,NA,7/27/2005,10:06:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:06,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00200070,Quality Control Sample-Field Replicate,WATER,Surface Water,11/7/2001,9:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-425818106302701,recvd 11-09-01,NA,"Stable, normal stage",Routine sample,40,USGS parameter code 82398,Multiple verticals,US DH-81,NA,"TEMPERATURE, WATER",NA,6,6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,11/7/2001 16:20,NA,"THIRTYTHREE MI RESERVOIR NEAR OUTLET, NR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,42.97163245,-106.5080916,24000,1,seconds,Interpolated from MAP.,NAD83,5318,feet,1,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00200063,Quality Control Sample-Field Replicate,WATER,Surface Water,11/7/2001,13:40:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430016106295901,recvd 11-09-01,NA,"Stable, normal stage",Routine sample,40,USGS parameter code 82398,Multiple verticals,US DH-81,NA,"TEMPERATURE, WATER",NA,5.5,5.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,11/7/2001 20:40,NA,"UNNAMED POND ON E SIDE OF ILLCO SEEP, NR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.00444444,-106.4997222,24000,1,seconds,Mapping grade GPS unit (handheld accuracy range 12 to 40 ft),NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_4,Field Msr/Obs,WATER,NA,8/8/2005,10:46:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00200068,Sample-Routine,WATER,Surface Water,11/7/2001,13:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430018106300201,recvd 11-09-01,NA,"Stable, normal stage",Routine sample,40,USGS parameter code 82398,Multiple verticals,US DH-81,NA,"TEMPERATURE, WATER",NA,5,5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,11/7/2001 20:00,NA,"ILLCO SEEP NEAR OUTLET, NEAR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.0049661,-106.5011471,NA,Unknown,Unknown,Interpolated from MAP.,NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_90,Field Msr/Obs,WATER,NA,7/27/2005,7:56:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 14:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00200257,Sample-Routine,WATER,Surface Water,3/20/2002,13:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430016106295901,NA,NA,"Stable, normal stage",Routine sample,USGS,USGS,USGS,Unknown,NA,"TEMPERATURE, WATER",NA,0,0,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,3/20/2002 20:00,NA,"UNNAMED POND ON E SIDE OF ILLCO SEEP, NR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.00444444,-106.4997222,24000,1,seconds,Mapping grade GPS unit (handheld accuracy range 12 to 40 ft),NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00200261,Sample-Routine,WATER,Surface Water,3/20/2002,10:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-425818106302701,NA,NA,"Stable, normal stage",Routine sample,USGS,USGS,USGS,Unknown,NA,"TEMPERATURE, WATER",NA,2.5,2.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,3/20/2002 17:00,NA,"THIRTYTHREE MI RESERVOIR NEAR OUTLET, NR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,42.97163245,-106.5080916,24000,1,seconds,Interpolated from MAP.,NAD83,5318,feet,1,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +USGS-WY,USGS Wyoming Water Science Center,nwiswy.01.00200258,Quality Control Sample-Field Replicate,WATER,Surface Water,3/20/2002,12:40:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,U.S. Geological Survey-Water Resources Discipline,USGS-430018106300201,NA,NA,"Stable, normal stage",Routine sample,USGS,USGS,USGS,Unknown,NA,"TEMPERATURE, WATER",NA,0.5,0.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,10,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NWIS,3/20/2002 19:40,NA,"ILLCO SEEP NEAR OUTLET, NEAR ILLCO, WY","Lake, Reservoir, Impoundment",NA,10180007,NA,NA,NA,NA,43.0049661,-106.5011471,NA,Unknown,Unknown,Interpolated from MAP.,NAD83,5330,feet,10,feet,Interpolated from topographic map.,NGVD29,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_27,Field Msr/Obs,WATER,NA,7/26/2005,13:44:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-5,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_6,Field Msr/Obs,WATER,NA,9/7/2005,13:18:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:18,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001250_01,Field Msr/Obs,WATER,NA,6/14/2005,9:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42001250,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 16:09,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_9,Field Msr/Obs,WATER,NA,8/8/2005,10:38:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:38,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_2,Field Msr/Obs,WATER,NA,9/7/2005,13:23:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-19,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_24,Field Msr/Obs,WATER,NA,8/8/2005,8:30:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-32,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_3,Field Msr/Obs,WATER,NA,10/5/2005,11:16:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_11,Field Msr/Obs,WATER,NA,9/19/2005,8:39:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_9,Field Msr/Obs,WATER,NA,7/26/2005,14:10:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:10,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001362/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/27/2005,12:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Replicate Organization ActivityID=YELL_YL001.0M_42001362/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 19:42,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-4,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001528_5,Field Msr/Obs,WATER,NA,10/7/2005,10:41:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001528_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 17:41,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_20,Field Msr/Obs,WATER,NA,8/26/2005,11:16:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_4,Field Msr/Obs,WATER,NA,8/26/2005,11:39:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:39,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-24,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_18,Field Msr/Obs,WATER,NA,7/27/2005,8:27:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_25,Field Msr/Obs,WATER,NA,9/7/2005,12:50:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_26,Field Msr/Obs,WATER,NA,7/20/2005,7:35:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-5,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_10,Field Msr/Obs,WATER,NA,7/20/2005,7:58:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:58,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238-60,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Depth Profile Organization ActivityID=YELL_YL006.0M_42001238-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-24,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_21,Field Msr/Obs,WATER,NA,10/18/2005,9:57:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:57,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_40,Field Msr/Obs,WATER,NA,10/5/2005,10:36:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_22,Field Msr/Obs,WATER,NA,10/18/2005,9:56:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_3,Field Msr/Obs,WATER,NA,10/7/2005,9:45:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:45,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_4,Field Msr/Obs,WATER,NA,7/27/2005,8:47:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000206,Field Msr/Obs,WATER,NA,7/17/2003,11:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000206,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 18:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_30,Field Msr/Obs,WATER,NA,7/27/2005,10:07:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-22,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001265/1,Quality Control Field Replicate Msr/Obs,WATER,NA,6/16/2005,10:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42001265/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2005 17:25,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_17,Field Msr/Obs,WATER,NA,10/5/2005,10:56:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-13,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-15,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_10,Field Msr/Obs,WATER,NA,8/8/2005,8:50:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:50,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2237,Sample-Routine,WATER,NA,7/11/2017,11:58:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 18:58,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_9,Field Msr/Obs,WATER,NA,10/7/2005,9:36:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_11,Field Msr/Obs,WATER,NA,8/26/2005,11:29:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:29,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_29,Field Msr/Obs,WATER,NA,8/8/2005,10:10:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:10,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-70,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_7,Field Msr/Obs,WATER,NA,7/20/2005,8:02:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 15:02,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_50,Field Msr/Obs,WATER,NA,9/19/2005,8:04:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:04,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001268-49,Field Msr/Obs,WATER,NA,6/16/2005,12:40:00,MST,NA,NA,NA,49.4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001268-49,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2005 19:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-15,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-25,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-32,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-21,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-8,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-23,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_12,Field Msr/Obs,WATER,NA,8/3/2005,8:06:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_12,Field Msr/Obs,WATER,NA,7/27/2005,8:35:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_9,Field Msr/Obs,WATER,NA,10/5/2005,11:07:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_30,Field Msr/Obs,WATER,NA,7/27/2005,8:09:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_2,Field Msr/Obs,WATER,NA,7/20/2005,8:10:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 15:10,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_22,Field Msr/Obs,WATER,NA,7/27/2005,10:19:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:19,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_10,Field Msr/Obs,WATER,NA,8/3/2005,8:09:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_29,Field Msr/Obs,WATER,NA,9/7/2005,8:22:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-6,Field Msr/Obs,WATER,NA,8/11/2003,11:55:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 18:55,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_15,Field Msr/Obs,WATER,NA,10/18/2005,11:23:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_13,Field Msr/Obs,WATER,NA,10/18/2005,11:26:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:26,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_13,Field Msr/Obs,WATER,NA,9/19/2005,8:36:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.669,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_5,Field Msr/Obs,WATER,NA,8/8/2005,8:57:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:57,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-11,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_0.2,Field Msr/Obs,WATER,NA,9/19/2005,7:56:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 14:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_14,Field Msr/Obs,WATER,NA,8/3/2005,8:03:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_3,Field Msr/Obs,WATER,NA,10/18/2005,10:23:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:23,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_22,Field Msr/Obs,WATER,NA,7/26/2005,13:52:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:52,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_0.2,Field Msr/Obs,WATER,NA,8/3/2005,7:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-70,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-18,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-70,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_18,Field Msr/Obs,WATER,NA,10/5/2005,10:54:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:54,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-31,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-93,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,93.6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001234-10,Field Msr/Obs,WATER,NA,6/3/2005,10:19:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001234-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 17:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_1,Field Msr/Obs,WATER,NA,10/18/2005,11:43:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:43,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001328,Field Msr/Obs,WATER,NA,7/12/2005,13:36:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001328,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/12/2005 20:36,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-2,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_92,Field Msr/Obs,WATER,NA,9/19/2005,7:57:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_92,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 14:57,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-3,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_21,Field Msr/Obs,WATER,NA,7/26/2005,13:53:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_10,Field Msr/Obs,WATER,NA,9/19/2005,8:40:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:40,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_7,Field Msr/Obs,WATER,NA,10/7/2005,9:39:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:39,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_50,Field Msr/Obs,WATER,NA,8/3/2005,7:33:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:33,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_19,Field Msr/Obs,WATER,NA,8/3/2005,7:56:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-94,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,94,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-94,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001240,Field Msr/Obs,WATER,NA,6/3/2005,14:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001240,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.3,3.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/3/2005 21:30,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_1,Field Msr/Obs,WATER,NA,7/26/2005,14:22:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:22,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001442,Field Msr/Obs,WATER,NA,9/7/2005,9:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001442,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 16:15,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_10,Field Msr/Obs,WATER,NA,10/5/2005,11:06:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-30,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-16,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-12,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_6,Field Msr/Obs,WATER,NA,9/19/2005,8:46:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_90,Field Msr/Obs,WATER,NA,9/7/2005,8:07:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_14,Field Msr/Obs,WATER,NA,8/8/2005,10:31:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:31,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_50,Field Msr/Obs,WATER,NA,10/18/2005,9:37:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:37,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001513_5,Field Msr/Obs,WATER,NA,10/5/2005,12:35:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001513_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 19:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_0.2,Field Msr/Obs,WATER,NA,7/27/2005,7:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 14:54,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_13,Field Msr/Obs,WATER,NA,10/18/2005,10:09:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_80,Field Msr/Obs,WATER,NA,10/5/2005,10:30:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-2,Field Msr/Obs,WATER,NA,10/8/2003,9:18:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:18,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_48.3,Field Msr/Obs,WATER,NA,8/26/2005,10:54:00,MST,NA,NA,NA,48.3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_48.3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 17:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-20,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_1,Field Msr/Obs,WATER,NA,7/27/2005,8:51:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-21,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-31,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_27,Field Msr/Obs,WATER,NA,7/27/2005,10:11:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:11,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_32,Field Msr/Obs,WATER,NA,9/19/2005,8:08:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_18,Field Msr/Obs,WATER,NA,8/8/2005,10:25:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-60,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.4,3.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001284/1,Quality Control Field Replicate Msr/Obs,WATER,NA,6/27/2005,11:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Split Organization ActivityID=YELL_YL004.0M_42001284/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/27/2005 18:48,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_1,Field Msr/Obs,WATER,NA,10/18/2005,10:26:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_40,Field Msr/Obs,WATER,NA,7/27/2005,8:04:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:04,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001250-20,Field Msr/Obs,WATER,NA,6/14/2005,9:09:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42001250-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 16:09,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_1,Field Msr/Obs,WATER,NA,7/27/2005,10:49:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:49,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001234-20,Field Msr/Obs,WATER,NA,6/3/2005,10:19:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001234-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 17:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_16,Field Msr/Obs,WATER,NA,7/26/2005,14:00:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:00,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-22,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_7,Field Msr/Obs,WATER,NA,10/18/2005,11:34:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_24,Field Msr/Obs,WATER,NA,7/27/2005,10:16:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:16,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-2,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-10,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-12,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-10,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_1,Field Msr/Obs,WATER,NA,10/7/2005,9:48:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:48,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-5,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.2,3.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_30,Field Msr/Obs,WATER,NA,9/19/2005,8:11:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-19,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_28,Field Msr/Obs,WATER,NA,8/26/2005,11:04:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_7,Field Msr/Obs,WATER,NA,10/18/2005,10:17:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-26,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_30,Field Msr/Obs,WATER,NA,9/7/2005,8:20:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-8,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002629-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_16,Field Msr/Obs,WATER,NA,10/7/2005,9:26:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:26,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_3,Field Msr/Obs,WATER,NA,7/27/2005,10:46:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:46,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001548/2,Quality Control Field Replicate Msr/Obs,WATER,NA,10/18/2005,11:59:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42001548/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:59,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001268-20,Field Msr/Obs,WATER,NA,6/16/2005,12:40:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001268-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2005 19:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-5,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001388,Field Msr/Obs,WATER,NA,8/8/2005,14:22:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001388,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 21:22,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_12,Field Msr/Obs,WATER,NA,7/27/2005,10:33:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:33,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_20,Field Msr/Obs,WATER,NA,9/7/2005,8:35:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1712,Sample-Routine,WATER,NA,6/19/2018,13:52:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:52,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_20,Field Msr/Obs,WATER,NA,8/3/2005,7:55:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_23,Field Msr/Obs,WATER,NA,8/8/2005,8:31:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:31,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.24,7.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.997,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_60,Field Msr/Obs,WATER,NA,10/18/2005,9:36:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-25,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_13,Field Msr/Obs,WATER,NA,7/20/2005,7:54:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:54,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_19,Field Msr/Obs,WATER,NA,8/8/2005,10:24:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_3,Field Msr/Obs,WATER,NA,8/8/2005,9:00:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 16:00,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_17,Field Msr/Obs,WATER,NA,8/8/2005,8:40:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:40,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_30,Field Msr/Obs,WATER,NA,10/18/2005,11:01:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_15,Field Msr/Obs,WATER,NA,7/20/2005,7:51:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_4,Field Msr/Obs,WATER,NA,10/18/2005,10:22:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_70,Field Msr/Obs,WATER,NA,7/27/2005,10:01:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:01,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_12,Field Msr/Obs,WATER,NA,10/5/2005,11:03:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-15,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001354/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/26/2005,10:43:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42001354/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 17:43,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_16,Field Msr/Obs,WATER,NA,7/27/2005,8:30:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_90,Field Msr/Obs,WATER,NA,8/3/2005,7:27:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001250-5,Field Msr/Obs,WATER,NA,6/14/2005,9:09:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42001250-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 16:09,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-1,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_18,Field Msr/Obs,WATER,NA,7/27/2005,10:24:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:24,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_14,Field Msr/Obs,WATER,NA,8/26/2005,11:24:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_26,Field Msr/Obs,WATER,NA,10/7/2005,9:12:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.13,15.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.694,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_19,Field Msr/Obs,WATER,NA,10/5/2005,10:53:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:53,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-17,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-60,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_28,Field Msr/Obs,WATER,NA,7/27/2005,8:12:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:12,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_14,Field Msr/Obs,WATER,NA,7/27/2005,10:30:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:30,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001239,Field Msr/Obs,WATER,NA,6/3/2005,14:10:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001239,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/3/2005 21:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_70,Field Msr/Obs,WATER,NA,8/3/2005,7:30:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_15,Field Msr/Obs,WATER,NA,8/3/2005,8:02:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:02,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001253,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001253,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_19,Field Msr/Obs,WATER,NA,7/27/2005,8:25:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_8,Field Msr/Obs,WATER,NA,10/5/2005,11:09:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_7,Field Msr/Obs,WATER,NA,9/19/2005,8:44:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:44,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_15,Field Msr/Obs,WATER,NA,8/8/2005,8:43:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_30,Field Msr/Obs,WATER,NA,7/20/2005,7:29:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_92,Field Msr/Obs,WATER,NA,9/7/2005,8:06:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_92,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-14,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_13,Field Msr/Obs,WATER,NA,9/7/2005,13:08:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:08,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_12,Field Msr/Obs,WATER,NA,10/18/2005,10:10:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:10,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_48,Field Msr/Obs,WATER,NA,10/18/2005,10:54:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_48,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_20,Field Msr/Obs,WATER,NA,10/5/2005,10:51:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_20,Field Msr/Obs,WATER,NA,9/7/2005,12:58:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-13,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-33,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001282,Field Msr/Obs,WATER,NA,6/27/2005,11:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001282,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/27/2005 18:25,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001472,Field Msr/Obs,WATER,NA,9/19/2005,13:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001472,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 20:05,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-60,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_29,Field Msr/Obs,WATER,NA,7/26/2005,13:42:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_15,Field Msr/Obs,WATER,NA,8/26/2005,11:23:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_10,Field Msr/Obs,WATER,NA,8/26/2005,11:30:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_24,Field Msr/Obs,WATER,NA,9/7/2005,12:52:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:52,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_20,Field Msr/Obs,WATER,NA,10/18/2005,11:16:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_0.2,Field Msr/Obs,WATER,NA,10/5/2005,10:26:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_4,Field Msr/Obs,WATER,NA,10/18/2005,11:39:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:39,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_28,Field Msr/Obs,WATER,NA,8/3/2005,7:43:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_10,Field Msr/Obs,WATER,NA,10/18/2005,11:30:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_90.6,Field Msr/Obs,WATER,NA,7/27/2005,9:57:00,MST,NA,NA,NA,90.6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_90.6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 16:57,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.81,13.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.416,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_24,Field Msr/Obs,WATER,NA,7/27/2005,8:18:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-93,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,93.8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-70,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-14,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001250-15,Field Msr/Obs,WATER,NA,6/14/2005,9:09:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42001250-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 16:09,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_3,Field Msr/Obs,WATER,NA,7/27/2005,8:48:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:48,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_25,Field Msr/Obs,WATER,NA,9/19/2005,8:19:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:19,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_19,Field Msr/Obs,WATER,NA,10/18/2005,10:00:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:00,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_3,Field Msr/Obs,WATER,NA,8/8/2005,10:47:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001254/1,Quality Control Field Replicate Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Split Organization ActivityID=YELL_YL004.0M_42001254/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-9,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_24,Field Msr/Obs,WATER,NA,8/3/2005,7:49:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-34,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_22,Field Msr/Obs,WATER,NA,10/18/2005,11:13:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-9,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_11,Field Msr/Obs,WATER,NA,7/27/2005,10:34:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:34,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_30,Field Msr/Obs,WATER,NA,8/3/2005,7:40:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:40,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_13,Field Msr/Obs,WATER,NA,10/5/2005,11:02:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:02,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001471,Field Msr/Obs,WATER,NA,9/19/2005,11:57:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001471,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 18:57,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-33,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238-72.3,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,72.3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Depth Profile Organization ActivityID=YELL_YL006.0M_42001238-72.3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2943,Sample-Routine,WATER,NA,8/14/2018,11:15:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_31,Field Msr/Obs,WATER,NA,7/20/2005,7:28:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-1,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_13,Field Msr/Obs,WATER,NA,9/7/2005,8:45:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:45,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_80,Field Msr/Obs,WATER,NA,7/27/2005,7:58:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 14:58,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_31,Field Msr/Obs,WATER,NA,10/18/2005,11:00:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:00,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_31,Field Msr/Obs,WATER,NA,9/7/2005,12:42:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001322/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/12/2005,9:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Split Organization ActivityID=YELL_YL002.0M_42001322/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/12/2005 16:05,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_0.2,Field Msr/Obs,WATER,NA,8/8/2005,10:00:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:00,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_28,Field Msr/Obs,WATER,NA,9/7/2005,8:23:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:23,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-21,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273810,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273810,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_18,Field Msr/Obs,WATER,NA,10/7/2005,9:23:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-22,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-40,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-7,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287602,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_7,Field Msr/Obs,WATER,NA,8/8/2005,8:54:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:54,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283606,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-50,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001234-30,Field Msr/Obs,WATER,NA,6/3/2005,10:19:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001234-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 17:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_15,Field Msr/Obs,WATER,NA,7/27/2005,10:29:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:29,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_0.2,Field Msr/Obs,WATER,NA,9/7/2005,8:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:05,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_6,Field Msr/Obs,WATER,NA,7/27/2005,8:44:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:44,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-60,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_29,Field Msr/Obs,WATER,NA,7/27/2005,10:08:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:08,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_28,Field Msr/Obs,WATER,NA,7/26/2005,13:43:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:43,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_26,Field Msr/Obs,WATER,NA,10/5/2005,10:43:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_23,Field Msr/Obs,WATER,NA,8/3/2005,7:50:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:50,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_29,Field Msr/Obs,WATER,NA,8/26/2005,11:03:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.8,6.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.817,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001250-25,Field Msr/Obs,WATER,NA,6/14/2005,9:09:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42001250-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 16:09,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_13,Field Msr/Obs,WATER,NA,7/27/2005,10:32:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:32,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_14,Field Msr/Obs,WATER,NA,10/18/2005,11:24:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_22,Field Msr/Obs,WATER,NA,7/27/2005,8:21:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:21,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_24,Field Msr/Obs,WATER,NA,10/18/2005,11:10:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:10,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001234-5,Field Msr/Obs,WATER,NA,6/3/2005,10:19:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001234-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 17:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_6,Field Msr/Obs,WATER,NA,10/7/2005,9:41:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:41,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_12,Field Msr/Obs,WATER,NA,8/8/2005,8:47:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-93,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-11,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_11,Field Msr/Obs,WATER,NA,7/27/2005,8:37:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:37,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-18,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_9,Field Msr/Obs,WATER,NA,7/27/2005,8:40:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:40,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-20,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.3,3.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001430,Field Msr/Obs,WATER,NA,8/26/2005,9:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001430,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 16:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_1,Field Msr/Obs,WATER,NA,10/5/2005,11:19:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 18:19,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-12,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_10,Field Msr/Obs,WATER,NA,9/7/2005,13:12:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_32,Field Msr/Obs,WATER,NA,9/7/2005,12:40:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001267/2,Quality Control Field Replicate Msr/Obs,WATER,NA,6/16/2005,10:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42001267/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2005 17:25,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.4,19.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.208,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_27,Field Msr/Obs,WATER,NA,10/7/2005,9:10:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:10,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001351,Field Msr/Obs,WATER,NA,7/26/2005,10:43:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001351,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 17:43,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.31,5.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38.675,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.71,18.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.712,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_30,Field Msr/Obs,WATER,NA,10/5/2005,10:37:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:37,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_21,Field Msr/Obs,WATER,NA,7/27/2005,8:22:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001541,Field Msr/Obs,WATER,NA,10/18/2005,11:31:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001541,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:31,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-93,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,93.4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_25,Field Msr/Obs,WATER,NA,7/26/2005,13:47:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_90,Field Msr/Obs,WATER,NA,9/19/2005,7:58:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 14:58,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_1,Field Msr/Obs,WATER,NA,9/7/2005,9:02:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 16:02,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_60,Field Msr/Obs,WATER,NA,8/8/2005,8:13:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:13,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_2,Field Msr/Obs,WATER,NA,9/7/2005,9:01:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 16:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0500-161754-8922000,Field Msr/Obs,WATER,NA,5/18/2000,9:15:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2000 16:15,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0500-161754-8952000,Field Msr/Obs,WATER,NA,5/18/2000,9:15:00,MST,NA,NA,NA,24,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2000 16:15,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0900-164513-27862000,Field Msr/Obs,WATER,NA,9/13/2000,9:15:00,MST,NA,NA,NA,13,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2000 16:15,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163278-20552000,Field Msr/Obs,WATER,NA,8/14/2000,12:45:00,MST,NA,NA,NA,9,m,SURFACE,NA,NA,NA,NA,350;351,NA,UTAHDWQ_WQX-4938620,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 19:45,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0600-162185-11392000,Field Msr/Obs,WATER,NA,6/20/2000,9:15:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2000 16:15,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0900-164513-27882000,Field Msr/Obs,WATER,NA,9/13/2000,9:25:00,MST,NA,NA,NA,20,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2000 16:25,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0500-161754-8932000,Field Msr/Obs,WATER,NA,5/18/2000,9:15:00,MST,NA,NA,NA,8,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2000 16:15,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163278-20562000,Field Msr/Obs,WATER,NA,8/14/2000,12:50:00,MST,NA,NA,NA,11,m,SURFACE,NA,NA,NA,NA,350;351,NA,UTAHDWQ_WQX-4938620,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 19:50,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163281-20662000,Field Msr/Obs,WATER,NA,8/14/2000,9:40:00,MST,NA,NA,NA,12,m,SURFACE,NA,NA,NA,NA,350;351;358,NA,UTAHDWQ_WQX-4938680,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 16:40,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0600-162185-11402000,Field Msr/Obs,WATER,NA,6/20/2000,9:50:00,MST,NA,NA,NA,17,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2000 16:50,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163281-20672000,Field Msr/Obs,WATER,NA,8/14/2000,9:45:00,MST,NA,NA,NA,14,m,SURFACE,NA,NA,NA,NA,350;351;358,NA,UTAHDWQ_WQX-4938680,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 16:45,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163280-20642000,Field Msr/Obs,WATER,NA,8/14/2000,10:25:00,MST,NA,NA,NA,8,m,SURFACE,NA,NA,NA,NA,350;351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,20.7,20.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 17:25,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0600-162185-11412000,Field Msr/Obs,WATER,NA,6/20/2000,9:53:00,MST,NA,NA,NA,20,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2000 16:53,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0900-164513-27872000,Field Msr/Obs,WATER,NA,9/13/2000,9:20:00,MST,NA,NA,NA,15,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2000 16:20,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0700-162953-15292000,Field Msr/Obs,WATER,NA,7/17/2000,10:00:00,MST,NA,NA,NA,24,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2000 17:00,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163278-20542000,Field Msr/Obs,WATER,NA,8/14/2000,12:05:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,350;351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21.2,21.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 19:05,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0500-161754-8942000,Field Msr/Obs,WATER,NA,5/18/2000,9:15:00,MST,NA,NA,NA,15,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2000 16:15,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163279-20592000,Field Msr/Obs,WATER,NA,8/14/2000,11:00:00,MST,NA,NA,NA,11,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 18:00,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP1000-165708-41372000,Field Msr/Obs,WATER,NA,10/23/2000,10:05:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2000 17:05,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0700-162953-15272000,Field Msr/Obs,WATER,NA,7/17/2000,9:25:00,MST,NA,NA,NA,7,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2000 16:25,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163279-20582000,Field Msr/Obs,WATER,NA,8/14/2000,10:45:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21,21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 17:45,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0700-162953-15262000,Field Msr/Obs,WATER,NA,7/17/2000,9:05:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2000 16:05,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP1000-165708-41392000,Field Msr/Obs,WATER,NA,10/23/2000,10:20:00,MST,NA,NA,NA,16,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2000 17:20,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0700-162953-15282000,Field Msr/Obs,WATER,NA,7/17/2000,9:40:00,MST,NA,NA,NA,19,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2000 16:40,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163279-20612000,Field Msr/Obs,WATER,NA,8/14/2000,11:10:00,MST,NA,NA,NA,23,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 18:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163280-20622000,Field Msr/Obs,WATER,NA,8/14/2000,10:10:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,350;351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21.2,21.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 17:10,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP1000-165708-41402000,Field Msr/Obs,WATER,NA,10/23/2000,10:25:00,MST,NA,NA,NA,23,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2000 17:25,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0900-164513-27852000,Field Msr/Obs,WATER,NA,9/13/2000,9:00:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2000 16:00,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163281-20682000,Field Msr/Obs,WATER,NA,8/14/2000,9:50:00,MST,NA,NA,NA,20,m,SURFACE,NA,NA,NA,NA,350;351;358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 16:50,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163281-20652000,Field Msr/Obs,WATER,NA,8/14/2000,9:15:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,350;351;358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21,21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 16:15,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP1000-165708-41382000,Field Msr/Obs,WATER,NA,10/23/2000,10:15:00,MST,NA,NA,NA,8,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2000 17:15,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0600-162185-11422000,Field Msr/Obs,WATER,NA,6/20/2000,9:56:00,MST,NA,NA,NA,24,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2000 16:56,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163280-20632000,Field Msr/Obs,WATER,NA,8/14/2000,10:20:00,MST,NA,NA,NA,4,m,SURFACE,NA,NA,NA,NA,350;351,NA,UTAHDWQ_WQX-4938660,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21,21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 17:20,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0800-163279-20602000,Field Msr/Obs,WATER,NA,8/14/2000,11:05:00,MST,NA,NA,NA,13,m,SURFACE,NA,NA,NA,NA,350;351;358;359,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2000 18:05,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172028-64462001,Field Msr/Obs,WATER,NA,8/13/2001,12:20:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,22.1,22.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 19:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_10,Field Msr/Obs,WATER,NA,7/27/2005,8:38:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:38,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0701-171872-63672001,Field Msr/Obs,WATER,NA,7/17/2001,8:50:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.4,19.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2001 15:50,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-33,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_18,Field Msr/Obs,WATER,NA,9/19/2005,8:29:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0601-168021-21822001,Field Msr/Obs,WATER,NA,6/21/2001,10:20:00,MST,NA,NA,NA,8,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/21/2001 17:20,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-22,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-23,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42003289_02,Field Msr/Obs,WATER,NA,7/17/2013,14:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42003289,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 21:55,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287808,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287808,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-5,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0701-171872-63692001,Field Msr/Obs,WATER,NA,7/17/2001,9:15:00,MST,NA,NA,NA,18,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2001 16:15,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0601-168021-21842001,Field Msr/Obs,WATER,NA,6/21/2001,10:30:00,MST,NA,NA,NA,23,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/21/2001 17:30,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002600_02,Field Msr/Obs,WATER,NA,8/12/2009,NA,NA,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002600,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172031-64452001,Field Msr/Obs,WATER,NA,8/13/2001,10:05:00,MST,NA,NA,NA,13,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 17:05,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-26052001,Field Msr/Obs,WATER,NA,7/17/2001,17:18:00,MST,NA,NA,NA,27.5,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/18/2001 0:18,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0701-171872-63682001,Field Msr/Obs,WATER,NA,7/17/2001,9:10:00,MST,NA,NA,NA,13,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2001 16:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172031-64442001,Field Msr/Obs,WATER,NA,8/13/2001,10:08:00,MST,NA,NA,NA,9,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,20,20,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 17:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305_02,Field Msr/Obs,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA092501-170634-48462001,Field Msr/Obs,WATER,NA,10/3/2001,17:51:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.22,10.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2001 0:51,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001838_01,Field Msr/Obs,WATER,NA,9/8/2006,9:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001838,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/8/2006 16:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.49,13.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.049,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172030-64302001,Field Msr/Obs,WATER,NA,8/13/2001,9:10:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21.7,21.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 16:10,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001883_01,Field Msr/Obs,WATER,NA,10/10/2006,7:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001883,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39218,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/10/2006 14:47,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0701-171872-63702001,Field Msr/Obs,WATER,NA,7/17/2001,9:00:00,MST,NA,NA,NA,23,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2001 16:00,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA092501-170634-48492001,Field Msr/Obs,WATER,NA,10/3/2001,17:51:00,MST,NA,NA,NA,7.4,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.02,9.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2001 0:51,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001842/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/8/2006,10:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Split Organization ActivityID=YELL_YL007.0M_42001842/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/8/2006 17:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172031-64432001,Field Msr/Obs,WATER,NA,8/13/2001,10:00:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,22,22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 17:00,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172030-64322001,Field Msr/Obs,WATER,NA,8/13/2001,9:22:00,MST,NA,NA,NA,15,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 16:22,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001880_01,Field Msr/Obs,WATER,NA,10/6/2006,12:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001880,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39218,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/6/2006 19:52,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001768/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/11/2006,10:22:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42001768/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/11/2006 17:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001802_01,Field Msr/Obs,WATER,NA,8/9/2006,12:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/9/2006 19:48,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172030-64312001,Field Msr/Obs,WATER,NA,8/13/2001,9:15:00,MST,NA,NA,NA,10,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 16:15,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001751_01,Field Msr/Obs,WATER,NA,6/16/2006,8:39:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001751,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2006 15:39,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001800/2_01,Quality Control Field Replicate Msr/Obs,WATER,NA,8/9/2006,10:59:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Replicate Organization ActivityID=YELL_YL004.0M_42001800/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/9/2006 17:59,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273840,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273840,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172029-64372001,Field Msr/Obs,WATER,NA,8/13/2001,10:48:00,MST,NA,NA,NA,22,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 17:48,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172028-64482001,Field Msr/Obs,WATER,NA,8/13/2001,12:35:00,MST,NA,NA,NA,14,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 19:35,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-27,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172028-64492001,Field Msr/Obs,WATER,NA,8/13/2001,12:28:00,MST,NA,NA,NA,43,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 19:28,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000761/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/26/2004,12:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Replicate Organization ActivityID=YELL_YL005.0M_42000761/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:54,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172029-64342001,Field Msr/Obs,WATER,NA,8/13/2001,10:33:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21.9,21.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 17:33,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-27,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001803_01,Field Msr/Obs,WATER,NA,8/9/2006,14:31:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/9/2006 21:31,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.09,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001797_01,Field Msr/Obs,WATER,NA,8/9/2006,10:59:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001797,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/9/2006 17:59,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0601-168021-21812001,Field Msr/Obs,WATER,NA,6/21/2001,9:50:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/21/2001 16:50,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-28,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.52,8.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.175,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-26022001,Field Msr/Obs,WATER,NA,7/17/2001,17:18:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.33,15.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/18/2001 0:18,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001754_01,Field Msr/Obs,WATER,NA,6/16/2006,12:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001754,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2006 19:40,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-26042001,Field Msr/Obs,WATER,NA,7/17/2001,17:18:00,MST,NA,NA,NA,23.2,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.76,6.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/18/2001 0:18,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172028-64472001,Field Msr/Obs,WATER,NA,8/13/2001,12:32:00,MST,NA,NA,NA,7,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21.4,21.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 19:32,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001753_01,Field Msr/Obs,WATER,NA,6/16/2006,11:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001753,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2006 18:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001769_01,Field Msr/Obs,WATER,NA,7/11/2006,12:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001769,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/11/2006 19:52,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.03,10.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.51,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172030-64332001,Field Msr/Obs,WATER,NA,8/13/2001,9:10:00,MST,NA,NA,NA,18,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 16:10,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.26,10.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.91,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA092501-170634-48472001,Field Msr/Obs,WATER,NA,10/3/2001,17:51:00,MST,NA,NA,NA,2.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.69,9.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2001 0:51,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001757,Field Msr/Obs,WATER,NA,7/10/2006,12:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001757,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/10/2006 19:23,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0601-168021-21832001,Field Msr/Obs,WATER,NA,6/21/2001,10:25:00,MST,NA,NA,NA,16,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/21/2001 17:25,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172029-64352001,Field Msr/Obs,WATER,NA,8/13/2001,10:52:00,MST,NA,NA,NA,8,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,20.5,20.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 17:52,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0801-172029-64362001,Field Msr/Obs,WATER,NA,8/13/2001,10:55:00,MST,NA,NA,NA,15,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2001 17:55,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001749_01,Field Msr/Obs,WATER,NA,6/16/2006,7:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001749,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2006 14:48,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA092501-170634-48482001,Field Msr/Obs,WATER,NA,10/3/2001,17:51:00,MST,NA,NA,NA,3.9,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.57,9.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/4/2001 0:51,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-26032001,Field Msr/Obs,WATER,NA,7/17/2001,17:18:00,MST,NA,NA,NA,19.3,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.12,12.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/18/2001 0:18,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001881_01,Field Msr/Obs,WATER,NA,10/6/2006,13:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001881,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39218,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/6/2006 20:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.7,20.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.157,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001840_01,Field Msr/Obs,WATER,NA,9/8/2006,9:51:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001840,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/8/2006 16:51,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273894,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,94,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273894,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001876_01,Field Msr/Obs,WATER,NA,10/6/2006,12:12:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001876,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39218,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/6/2006 19:12,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001750_01,Field Msr/Obs,WATER,NA,6/16/2006,8:10:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001750,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2006 15:10,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001755_01,Field Msr/Obs,WATER,NA,6/16/2006,13:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001755,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2006 20:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001763,Field Msr/Obs,WATER,NA,7/10/2006,14:14:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001763,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/10/2006 21:14,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001884_01,Field Msr/Obs,WATER,NA,10/10/2006,8:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001884,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39218,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/10/2006 15:27,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.97,20.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.374,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.34,8.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.863,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001846_01,Field Msr/Obs,WATER,NA,9/8/2006,14:21:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001846,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/8/2006 21:21,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001761/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/10/2006,13:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Replicate Organization ActivityID=YELL_YL002.0M_42001761/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/10/2006 20:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001841_01,Field Msr/Obs,WATER,NA,9/8/2006,10:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001841,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/8/2006 17:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001806_01,Field Msr/Obs,WATER,NA,8/9/2006,17:00:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/10/2006 0:00,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-5,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-5,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177158-52192002,Field Msr/Obs,WATER,NA,8/27/2002,12:01:00,MST,NA,NA,NA,15,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 19:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999643,Field Msr/Obs,WATER,NA,6/19/2002,10:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_41999643,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/19/2002 17:33,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-7,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-6,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_41999676,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-12,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-7,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-2,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-6,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-12,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-5,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-16,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-7,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-7,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-8,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-4,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-5,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-2,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-2,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-1,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-10,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999720,Field Msr/Obs,WATER,NA,8/1/2002,7:39:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_41999720,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 14:39,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999646,Field Msr/Obs,WATER,NA,6/19/2002,13:00:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_41999646,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/19/2002 20:00,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-5,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-6,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-15,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-6,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-8,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-1,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-9,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_41999737,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177157-52132002,Field Msr/Obs,WATER,NA,8/27/2002,13:32:00,MST,NA,NA,NA,12,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 20:32,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999739-3,Field Msr/Obs,WATER,NA,8/13/2002,11:36:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999739-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 18:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-1,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,83,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-11,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,45,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999763-4,Field Msr/Obs,WATER,NA,8/28/2002,11:21:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999763-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 18:21,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-1,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,79,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-8,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-13,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-10,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-8,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-7,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-6,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-8,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-7,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,65,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-12,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_41999702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999682,Field Msr/Obs,WATER,NA,7/3/2002,12:21:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_41999682,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 19:21,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-3,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-6,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-1,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,91,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-9,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-4,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-11,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-7,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999720-3,Field Msr/Obs,WATER,NA,8/1/2002,7:39:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999720-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 14:39,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-14,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_41999721,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-7,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999643-2,Field Msr/Obs,WATER,NA,6/19/2002,10:33:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999643-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/19/2002 17:33,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-4,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-10,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/19/2002,12:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Replicate Organization ActivityID=YELL_YL004.0M_41999705/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:06,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-11,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-4,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-4,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-17,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-8,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999720-5,Field Msr/Obs,WATER,NA,8/1/2002,7:39:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999720-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 14:39,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-2,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999679,Field Msr/Obs,WATER,NA,7/3/2002,12:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_41999679,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 19:01,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-9,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-12,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-3,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,85,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-13,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-2,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177159-52212002,Field Msr/Obs,WATER,NA,8/27/2002,10:10:00,MST,NA,NA,NA,3.5,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 17:10,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-3,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-15,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-13,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-5,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-1,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,94,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999739-7,Field Msr/Obs,WATER,NA,8/13/2002,11:36:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999739-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 18:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999763-2,Field Msr/Obs,WATER,NA,8/28/2002,11:21:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999763-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 18:21,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-4,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999644,Field Msr/Obs,WATER,NA,6/19/2002,11:18:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_41999644,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/19/2002 18:18,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-5,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-9,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-2,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-9,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-9,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-10,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-3,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-4,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_41999761,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177159-52222002,Field Msr/Obs,WATER,NA,8/27/2002,10:17:00,MST,NA,NA,NA,7,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 17:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999807/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/26/2002,9:34:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Replicate Organization ActivityID=YELL_YL003.0M_41999807/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/26/2002 16:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-2,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-8,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-7,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999790-4,Field Msr/Obs,WATER,NA,9/11/2002,8:20:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999790-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2002 15:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-3,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999739-1,Field Msr/Obs,WATER,NA,8/13/2002,11:36:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999739-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 18:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177159-52232002,Field Msr/Obs,WATER,NA,8/27/2002,10:21:00,MST,NA,NA,NA,10,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 17:21,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999739-4,Field Msr/Obs,WATER,NA,8/13/2002,11:36:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999739-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 18:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-10,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_41999678,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-3,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-3,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-9,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-6,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-9,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-5,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-14,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-11,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-3,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999804,Field Msr/Obs,WATER,NA,9/26/2002,8:59:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_41999804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/26/2002 15:59,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-13,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-18,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-4,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-2,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-14,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-11,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-9,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-10,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-7,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-9,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999763,Field Msr/Obs,WATER,NA,8/28/2002,11:21:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_41999763,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 18:21,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-10,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-19,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-16,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-3,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_41999699,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-4,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999790-2,Field Msr/Obs,WATER,NA,9/11/2002,8:20:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999790-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2002 15:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-2,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999763-5,Field Msr/Obs,WATER,NA,8/28/2002,11:21:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999763-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 18:21,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999739-5,Field Msr/Obs,WATER,NA,8/13/2002,11:36:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999739-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 18:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-11,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-1,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,87,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-8,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999763-1,Field Msr/Obs,WATER,NA,8/28/2002,11:21:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999763-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 18:21,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-8,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177157-52122002,Field Msr/Obs,WATER,NA,8/27/2002,13:07:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 20:07,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-7,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-6,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_41999722,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-20,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999790-3,Field Msr/Obs,WATER,NA,9/11/2002,8:20:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999790-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2002 15:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177159-52202002,Field Msr/Obs,WATER,NA,8/27/2002,9:35:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 16:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-4,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_41999738,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-8,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-8,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999805,Field Msr/Obs,WATER,NA,9/26/2002,9:34:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_41999805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/26/2002 16:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999720-4,Field Msr/Obs,WATER,NA,8/1/2002,7:39:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999720-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 14:39,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177157-52142002,Field Msr/Obs,WATER,NA,8/27/2002,13:39:00,MST,NA,NA,NA,16,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 20:39,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-11,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-9,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-4,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-13,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-10,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999647,Field Msr/Obs,WATER,NA,6/19/2002,13:26:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_41999647,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/19/2002 20:26,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-1,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999645,Field Msr/Obs,WATER,NA,6/19/2002,11:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_41999645,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/19/2002 18:48,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-6,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-5,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-5,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999739-8,Field Msr/Obs,WATER,NA,8/13/2002,11:36:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999739-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 18:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-2,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-11,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-10,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-8,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-6,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-4,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999791,Field Msr/Obs,WATER,NA,9/11/2002,8:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_41999791,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2002 15:54,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-12,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-6,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-8,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-6,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_41999759,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-12,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-1,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,83,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999761-2,Field Msr/Obs,WATER,NA,8/28/2002,9:44:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999761-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-12,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-9,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-13,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-10,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-6,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_41999723,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-1,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,95,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999790,Field Msr/Obs,WATER,NA,9/11/2002,8:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_41999790,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/11/2002 15:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-4,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-17,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-10,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-13,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-1,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,84,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-2,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177158-52172002,Field Msr/Obs,WATER,NA,8/27/2002,11:53:00,MST,NA,NA,NA,5,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 18:53,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-11,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-5,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-2,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-16,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-12,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-10,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-COOP0802-177158-52162002,Field Msr/Obs,WATER,NA,8/27/2002,11:35:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/27/2002 18:35,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999738-10,Field Msr/Obs,WATER,NA,8/13/2002,10:35:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999738-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 17:35,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999808,Field Msr/Obs,WATER,NA,9/26/2002,10:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_41999808,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/26/2002 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-9,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-13,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-15,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-5,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999806/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/26/2002,9:34:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Split Organization ActivityID=YELL_YL003.0M_41999806/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/26/2002 16:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-10,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-7,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-16,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999704/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/19/2002,12:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Split Organization ActivityID=YELL_YL004.0M_41999704/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:06,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-8,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999809,Field Msr/Obs,WATER,NA,9/26/2002,10:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_41999809,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/26/2002 17:33,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-15,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_41999700,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-10,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-6,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-4,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-3,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-4,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999676-1,Field Msr/Obs,WATER,NA,7/3/2002,9:17:00,MST,NA,NA,NA,95,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999676-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 16:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999760-7,Field Msr/Obs,WATER,NA,8/28/2002,9:09:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999760-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 16:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999700-6,Field Msr/Obs,WATER,NA,7/19/2002,9:38:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999700-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 16:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999735-11,Field Msr/Obs,WATER,NA,8/13/2002,8:15:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999735-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999736-8,Field Msr/Obs,WATER,NA,8/13/2002,9:15:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999736-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-6,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-10,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-1,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,78,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-7,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999759-9,Field Msr/Obs,WATER,NA,8/28/2002,8:20:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999759-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-6,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999762-10,Field Msr/Obs,WATER,NA,8/28/2002,10:18:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999762-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2002 17:18,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999723-7,Field Msr/Obs,WATER,NA,8/1/2002,9:35:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_41999723-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-1,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-8,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281704,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281704,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-11,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283402,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283402,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003290_02,Field Msr/Obs,WATER,NA,7/17/2013,15:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Organization ActivityID=YELL_YL001.0M_42003290,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 22:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-30,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-7,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999701-9,Field Msr/Obs,WATER,NA,7/19/2002,10:25:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999701-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 17:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.99,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-20,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.11,19.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.156,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999720-2,Field Msr/Obs,WATER,NA,8/1/2002,7:39:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999720-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 14:39,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-1907094-02,Sample-Routine,WATER,NA,7/30/2019,11:13:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/30/2019,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/30/2019 18:13,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-29-F,Field Msr/Obs,WATER,NA,10/12/2010,17:23:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.4,13.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 0:23,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-9,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.55,6.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.891,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.25,16.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.996,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-16,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999737-4,Field Msr/Obs,WATER,NA,8/13/2002,9:54:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999737-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2002 16:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-27,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.05,7.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.159,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-6,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-4,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286_02,Field Msr/Obs,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002820_02,Field Msr/Obs,WATER,NA,8/18/2010,12:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002820,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 19:24,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999722-11,Field Msr/Obs,WATER,NA,8/1/2002,8:54:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999722-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:54,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.37,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.97,7.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.177,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-60,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-80,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999721-4,Field Msr/Obs,WATER,NA,8/1/2002,8:04:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999721-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-22,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-4,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.05,17.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.349,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-2,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.89,18.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999643-1,Field Msr/Obs,WATER,NA,6/19/2002,10:33:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999643-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/19/2002 17:33,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-9,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-3,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281710,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281710,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-4,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.47,20.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.123,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-3,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.8,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-2-F,Field Msr/Obs,WATER,NA,10/12/2010,17:23:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.87,14.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 0:23,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-24,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283619,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283619,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003022_02,Field Msr/Obs,WATER,NA,9/15/2011,12:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42003022,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 19:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-2,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281940,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281940,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997-2,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001997-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.542,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.12,16.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.003,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_41999678-4,Field Msr/Obs,WATER,NA,7/3/2002,10:49:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_41999678-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999724-5,Field Msr/Obs,WATER,NA,8/1/2002,10:18:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999724-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2002 17:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.71,15.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.032,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-40082007,Field Msr/Obs,WATER,NA,8/30/2007,8:45:00,MST,NA,NA,NA,43,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.14,6.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2007 15:45,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-2,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_41999702-11,Field Msr/Obs,WATER,NA,7/19/2002,11:37:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_41999702-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 18:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281703,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281703,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003255_02,Field Msr/Obs,WATER,NA,6/11/2013,11:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003255,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 18:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_41999705-13,Field Msr/Obs,WATER,NA,7/19/2002,12:07:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_41999705-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 19:07,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273830,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273830,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287670,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287670,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-80,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_27,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-40072007,Field Msr/Obs,WATER,NA,8/30/2007,8:45:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.86,19.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2007 15:45,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005_02,Field Msr/Obs,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-40,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.66,15.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.599,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.07,17.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.12,14.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.616,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.066,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283420,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283420,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.98,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-80,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_41999677,Field Msr/Obs,WATER,NA,7/3/2002,10:28:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_41999677,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/3/2002 17:28,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_41999699-9,Field Msr/Obs,WATER,NA,7/19/2002,8:42:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_41999699-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2002 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.54,7.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.66,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.41,21.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.714,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.12,10.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.36,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283604,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-25,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287624,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287624,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.31,17.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.377,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-4,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.38,9.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.53,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-26,Field Msr/Obs,WATER,NA,8/26/2003,11:44:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000385/1,Quality Control Field Replicate Msr/Obs,WATER,NA,10/8/2003,11:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42000385/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 18:23,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995_02,Field Msr/Obs,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001995,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-90,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.17,10.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.3,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-20,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283621,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283621,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901760.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-9,Field Msr/Obs,WATER,NA,10/8/2003,9:28:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.189,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938640-0605-23-F,Field Msr/Obs,WATER,NA,6/5/2013,18:25:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,No associated lake profile due to equipment issue. No secchi reading due to broken equipment.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2013 1:25,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-09,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-09,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002773_02,Field Msr/Obs,WATER,NA,7/12/2010,12:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002773,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2010 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287826,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287826,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-27,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000311,Field Msr/Obs,WATER,NA,8/28/2003,8:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000311,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2003 15:52,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002008_02,Field Msr/Obs,WATER,NA,6/12/2007,11:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002008,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 18:01,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-13,Field Msr/Obs,WATER,NA,10/8/2003,9:34:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.77,20.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.896,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-40,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281714,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281714,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-2,Field Msr/Obs,WATER,NA,7/17/2003,8:50:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:50,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-24,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-49,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-49,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.71,15.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.111,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.17,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.18,21.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.151,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-15,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-10,Field Msr/Obs,WATER,NA,8/26/2003,9:06:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:06,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.7,7.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.556,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-29,Field Msr/Obs,WATER,NA,8/26/2003,10:38:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:38,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-8,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000254-14,Field Msr/Obs,WATER,NA,8/11/2003,12:07:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000254-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 19:07,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.22,21.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.098,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-65,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273870,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273870,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283433,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283433,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281719,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281719,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002009/1_02,Quality Control Field Replicate Msr/Obs,WATER,NA,6/12/2007,11:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42002009/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 18:01,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-5,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-2-F,Field Msr/Obs,WATER,NA,8/14/2019,16:35:00,MST,NA,NA,NA,2.19,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.4,21.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:35,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283648,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283648,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281713,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281713,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-17,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.59,12.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.884,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-17,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-2,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.36,9.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Surface,NA,1.26,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-2-F,Field Msr/Obs,WATER,NA,6/2/2010,14:50:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.53,11.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 21:50,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.42,21.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.822,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-16,Field Msr/Obs,WATER,NA,8/26/2003,10:20:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:20,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003164_02,Field Msr/Obs,WATER,NA,8/23/2012,9:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Organization ActivityID=YELL_YL002.0M_42003164,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/23/2012 16:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.65,6.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.709,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-50,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.2,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_80,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.818,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.81,16.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.155,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-33952007,Field Msr/Obs,WATER,NA,6/22/2007,11:03:00,MST,NA,NA,NA,8,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.71,13.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 18:03,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000348,Field Msr/Obs,WATER,NA,9/24/2003,15:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000348,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2003 22:06,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.8,20.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.139,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.54,20.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.089,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-24,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002834_02,Field Msr/Obs,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002834,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.21,13.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.576,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.57,7.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.11,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997-3,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001997-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281915,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281915,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-40,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-21,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-18,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002319/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/3/2008,10:07:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Replicate Organization ActivityID=YELL_YL002.0M_42002319/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 17:07,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.66,6.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.084,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.68,13.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.372,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-2-F,Field Msr/Obs,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,2.428,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.66,20.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997-30,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001997-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281707,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281707,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-12,Field Msr/Obs,WATER,NA,8/26/2003,11:24:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:24,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283616,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283616,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-15,Field Msr/Obs,WATER,NA,10/20/2003,10:08:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:08,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.68,21.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.75,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002838_02,Field Msr/Obs,WATER,NA,9/13/2010,14:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002838,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 21:13,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.607,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-22,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-18,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-28,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003180_02,Field Msr/Obs,WATER,NA,9/12/2012,10:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003180,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2012 17:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248,Field Msr/Obs,WATER,NA,8/11/2003,9:26:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000248,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:26,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-19,Field Msr/Obs,WATER,NA,10/20/2003,10:14:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:14,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.74,5.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,45.365,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281709,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281709,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.55,19.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.694,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-95,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,95,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-95,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000335,Field Msr/Obs,WATER,NA,9/8/2003,9:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000335,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2003 16:48,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.52,9.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.428,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-80,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-29-F,Field Msr/Obs,WATER,NA,8/4/2010,16:51:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.52,9.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 23:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-16,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289_02,Field Msr/Obs,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.77,6.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39.023,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287601,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-7,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140_02,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281780,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281780,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-40092007,Field Msr/Obs,WATER,NA,8/30/2007,10:07:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,20.21,20.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2007 17:07,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-14,Field Msr/Obs,WATER,NA,8/26/2003,9:12:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:12,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283618,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283618,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-33932007,Field Msr/Obs,WATER,NA,6/22/2007,10:18:00,MST,NA,NA,NA,45,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.79,6.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 17:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283429,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283429,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-3,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.72,6.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,42.382,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-50,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-4,Field Msr/Obs,WATER,NA,8/26/2003,11:12:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:12,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-7,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002293/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/5/2008,15:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Replicate Organization ActivityID=YELL_YL004.0M_42002293/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 22:48,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-5,Field Msr/Obs,WATER,NA,7/17/2003,9:42:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:42,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-14,Field Msr/Obs,WATER,NA,10/20/2003,10:07:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:07,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283417,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283417,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.7,13.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.063,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_15,Field Msr/Obs,WATER,NA,8/11/2003,9:44:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:44,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-17,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283450,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283450,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-27,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.79,21.79,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.703,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.41,15.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.481,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000392,Field Msr/Obs,WATER,NA,10/8/2003,14:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000392,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 21:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-3,Field Msr/Obs,WATER,NA,8/26/2003,11:11:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:11,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-16,Field Msr/Obs,WATER,NA,8/26/2003,9:15:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 16:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-5,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_81.7,Field Msr/Obs,WATER,NA,8/11/2003,9:27:00,MST,NA,NA,NA,81.7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_81.7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:27,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383,Field Msr/Obs,WATER,NA,10/8/2003,9:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000383,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-3,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002817_02,Field Msr/Obs,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002817,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-8,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.54,7.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.273,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273801,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.68,15.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.607,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000315/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/28/2003,10:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42000315/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2003 17:55,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-47,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,47.5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-47,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-1,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.93,6.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.314,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-6,Field Msr/Obs,WATER,NA,6/20/2003,11:48:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:48,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3251,Sample-Routine,WATER,NA,8/15/2017,12:33:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:33,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283622,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283622,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-21,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000149,Field Msr/Obs,WATER,NA,6/20/2003,13:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000149,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 20:55,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-4,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-25,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.98,7.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.984,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-80,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-50,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-40102007,Field Msr/Obs,WATER,NA,8/30/2007,10:07:00,MST,NA,NA,NA,10,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.57,19.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2007 17:07,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.3,20.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.486,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-9,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.31,9.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.97,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287629,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287629,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-23-F,Field Msr/Obs,WATER,NA,8/14/2019,16:37:00,MST,NA,NA,NA,9.12,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.64,20.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:37,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267_02,Field Msr/Obs,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002267,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002063-48,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2007,10:09:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002063-48,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2007 17:09,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-14,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-5,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.45,15.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.957,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000147,Field Msr/Obs,WATER,NA,6/20/2003,10:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000147,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 17:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-80,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.72,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-10,Field Msr/Obs,WATER,NA,10/20/2003,10:01:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-14,Field Msr/Obs,WATER,NA,7/17/2003,9:55:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:55,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-12,Field Msr/Obs,WATER,NA,6/20/2003,11:57:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:57,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000410-12,Field Msr/Obs,WATER,NA,10/20/2003,10:04:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000410-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2003 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-5,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.949,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Surface,NA,2.39,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.19,10.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.699,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-23,Field Msr/Obs,WATER,NA,8/26/2003,10:30:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:30,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-2,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.73,5.73,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,46.673,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-70,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.57,7.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.22,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000148-2,Field Msr/Obs,WATER,NA,6/20/2003,11:42:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000148-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 18:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075_02,Field Msr/Obs,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002075,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287607,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287607,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_9,Field Msr/Obs,WATER,NA,8/11/2003,9:53:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:53,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002271_02,Field Msr/Obs,WATER,NA,7/9/2008,15:04:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002271,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 22:04,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-07,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-07,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_60,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.85,21.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.681,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-2-F,Field Msr/Obs,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,1.235,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.69,6.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Bottom,NA,19.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.26,8.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.932,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-30,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.82,9.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.729,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.65,16.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.621,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-22,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000146,Field Msr/Obs,WATER,NA,6/20/2003,9:49:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000146,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/20/2003 16:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-27-F,Field Msr/Obs,WATER,NA,8/7/2012,12:04:15,MST,NA,NA,NA,20.218,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 19:04,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000263/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/12/2003,11:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42000263/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2003 18:13,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287611,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287611,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_40,Field Msr/Obs,WATER,NA,8/11/2003,9:33:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.53,9.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.556,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-16,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281730,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281730,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.8,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-23,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-29-F,Field Msr/Obs,WATER,NA,5/18/2021,17:21:00,MST,NA,NA,NA,15.13,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.81,6.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:21,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-10,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-3,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.38,9.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-8,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-15,Field Msr/Obs,WATER,NA,7/17/2003,9:56:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.66,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-40112007,Field Msr/Obs,WATER,NA,8/30/2007,10:07:00,MST,NA,NA,NA,20,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.55,8.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2007 17:07,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.87,7.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39.148,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-70.,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-70.,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.3,22.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.134,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-7,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.82,10.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.855,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-03,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-03,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.64,12.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,1.288,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.97,9.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.056,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-18,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-23,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-85,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-91,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,91,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-91,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-47,Field Msr/Obs,WATER,NA,9/10/2020,10:37:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:37,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-40,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-27,Field Msr/Obs,WATER,NA,8/26/2003,11:45:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:45,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002013_02,Field Msr/Obs,WATER,NA,6/12/2007,14:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002013,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 21:09,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002823_02,Field Msr/Obs,WATER,NA,8/18/2010,13:45:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002823,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 20:45,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-44,Field Msr/Obs,WATER,NA,9/10/2020,10:37:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:37,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000383-23,Field Msr/Obs,WATER,NA,10/8/2003,9:49:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42000383-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 16:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-17,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-70,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-53,Field Msr/Obs,WATER,NA,8/4/2020,15:30:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.7,20.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:30,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002001_02,Field Msr/Obs,WATER,NA,5/17/2007,14:14:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 21:14,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-33,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-3,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002061_02,Field Msr/Obs,WATER,NA,8/8/2007,8:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002061,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2007 15:30,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3124,Sample-Routine,WATER,NA,8/10/2017,11:43:00,MST,NA,NA,NA,29.2,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000292-4,Field Msr/Obs,WATER,NA,8/26/2003,8:57:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000292-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 15:57,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287840,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287840,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001999_02,Field Msr/Obs,WATER,NA,5/17/2007,13:44:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001999,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.2,3.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 20:44,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-7,Field Msr/Obs,WATER,NA,8/26/2003,11:17:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:17,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-14,Field Msr/Obs,WATER,NA,8/18/2020,11:12:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:12,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002822_02,Field Msr/Obs,WATER,NA,8/18/2010,13:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002822,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 20:29,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-83,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997_02,Field Msr/Obs,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001997,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000219/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/28/2003,13:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Split Organization ActivityID=YELL_YL002.0M_42000219/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/28/2003 20:48,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-21,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-08,Sample-Routine,WATER,NA,6/23/2020,11:55:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:55,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.05,18.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.232,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-70,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-3,Field Msr/Obs,WATER,NA,7/17/2003,9:39:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:39,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000352/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/24/2003,13:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Replicate Organization ActivityID=YELL_YL005.0M_42000352/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2003 20:46,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-04,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002599_02,Field Msr/Obs,WATER,NA,8/12/2009,15:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002599,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 22:30,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-61,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-16,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000248_17,Field Msr/Obs,WATER,NA,8/11/2003,9:41:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Depth Profile Organization ActivityID=YELL_YL002.0M_42000248_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/11/2003 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-60,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-67,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-AD,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000204-7,Field Msr/Obs,WATER,NA,7/17/2003,8:58:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42000204-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 15:58,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.56,10.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.534,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-13,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-7,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283480,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283480,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-20,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287806,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287806,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-05,Field Msr/Obs,WATER,NA,8/4/2020,9:12:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.3,20.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:12,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000384,Field Msr/Obs,WATER,NA,10/8/2003,11:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000384,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 18:23,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:9,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.46,18.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.331,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-68,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3607,Sample-Routine,WATER,NA,8/10/2017,11:24:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002073_02,Field Msr/Obs,WATER,NA,8/9/2007,11:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002073,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 18:53,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000261,Field Msr/Obs,WATER,NA,8/12/2003,9:00:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000261,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2003 16:00,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-56,Field Msr/Obs,WATER,NA,8/4/2020,15:30:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.4,19.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:30,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-80,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-29-F,Field Msr/Obs,WATER,NA,6/16/2015,18:40:27,MST,NA,NA,NA,16.967,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.86,8.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:40,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-80,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.35,11.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.984,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-38,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-3,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-40,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-17,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-50,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-25,Field Msr/Obs,WATER,NA,7/17/2003,10:11:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 17:11,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-60,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000293-31,Field Msr/Obs,WATER,NA,8/26/2003,10:41:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000293-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 17:41,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-10,Field Msr/Obs,WATER,NA,8/18/2020,11:09:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:09,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000205-1,Field Msr/Obs,WATER,NA,7/17/2003,9:36:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42000205-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2003 16:36,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-02,Sample-Routine,WATER,NA,8/5/2020,10:49:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:49,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000388,Field Msr/Obs,WATER,NA,10/8/2003,12:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000388,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/8/2003 19:15,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-96,Field Msr/Obs,WATER,NA,9/9/2020,14:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:20,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-33,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.8,6.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.537,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-36,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000294-20,Field Msr/Obs,WATER,NA,8/26/2003,11:35:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Depth Profile Organization ActivityID=YELL_YL001.0M_42000294-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2003 18:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-54,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-73,Field Msr/Obs,WATER,NA,9/10/2020,10:59:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:59,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-37,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.5,19.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002821_02,Field Msr/Obs,WATER,NA,8/18/2010,13:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002821,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 20:06,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-27,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000838,Field Msr/Obs,WATER,NA,8/26/2004,13:02:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000838,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 20:02,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-15,Field Msr/Obs,WATER,NA,8/18/2020,11:13:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:13,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287620,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287620,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-63,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-90,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-60,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-27,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-6,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-90,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-18,Sample-Routine,WATER,NA,8/5/2020,10:47:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:47,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-8,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-29-F,Field Msr/Obs,WATER,NA,8/4/2010,14:41:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.77,6.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 21:41,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-19,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287610,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287610,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-29-F,Field Msr/Obs,WATER,NA,8/7/2012,12:09:10,MST,NA,NA,NA,35.249,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 19:09,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-48,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-18,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-19,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-98,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,4.62,4.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,49.089,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-49,Field Msr/Obs,WATER,NA,9/10/2020,10:37:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:37,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-31,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-10,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-64,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002835_02,Field Msr/Obs,WATER,NA,9/13/2010,9:23:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002835,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 16:23,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-06,Sample-Routine,WATER,NA,6/23/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:54,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-15,Sample-Routine,WATER,NA,8/5/2020,10:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-47,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283630,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283630,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012_02,Field Msr/Obs,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002012,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087_02,Field Msr/Obs,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002087,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.92,9.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.453,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-6,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-15,Field Msr/Obs,WATER,NA,8/4/2020,9:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:19,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-11,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-2-F,Field Msr/Obs,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,2.185,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.57,13.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287821,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287821,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-88,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273890,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273890,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209907-33992007,Field Msr/Obs,WATER,NA,6/22/2007,11:57:00,MST,NA,NA,NA,5.6,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.12,15.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 18:57,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-48,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-48,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-29-F,Field Msr/Obs,WATER,NA,6/2/2010,15:45:00,MST,NA,NA,NA,34,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 22:45,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.82,17.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.973,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-62,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-2-F,Field Msr/Obs,WATER,NA,10/12/2010,15:52:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.48,10.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 22:52,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-02,Field Msr/Obs,WATER,NA,8/4/2020,8:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 15:54,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.62,20.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.549,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.856,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.86,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-18,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.02,15.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.762,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-9,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287690,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287690,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-23,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281760,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281760,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-21,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-57,Field Msr/Obs,WATER,NA,8/4/2020,15:30:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:30,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-AC,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-9,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003034_02,Field Msr/Obs,WATER,NA,10/12/2011,9:04:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42003034,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 16:04,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-33942007,Field Msr/Obs,WATER,NA,6/22/2007,11:03:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.42,18.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 18:03,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003197_02,Field Msr/Obs,WATER,NA,10/10/2012,9:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003197,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 16:13,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-19,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-45472008,Field Msr/Obs,WATER,NA,5/13/2008,14:10:00,MST,NA,NA,NA,33.599,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.07,6.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 21:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274009,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274009,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000939/1,Quality Control Field Replicate Msr/Obs,WATER,NA,10/19/2004,12:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Split Organization ActivityID=YELL_YL004.0M_42000939/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 19:20,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.55,21.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.426,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-19,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-80,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.98,15.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.095,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287813,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287813,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-16,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-60,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-37,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-29,Field Msr/Obs,WATER,NA,8/4/2020,13:02:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC006,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,21.4,21.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 20:02,NA,Colter South Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90044,-110.6445,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-17,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-89,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.3,8.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.096,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-14,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-03,Field Msr/Obs,WATER,NA,8/4/2020,8:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.9,19.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 15:54,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-11,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-4,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-21,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-05,Field Msr/Obs,WATER,NA,9/9/2020,12:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:05,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283490,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283490,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-92,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-92,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.62,19.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.89,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-2,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287811,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287811,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.12,12.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.44,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-11,Sample-Routine,WATER,NA,6/24/2020,13:22:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002293_02,Field Msr/Obs,WATER,NA,8/5/2008,15:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002293,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 22:48,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346_02,Field Msr/Obs,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002346,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-32,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-07,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-07,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-24,Field Msr/Obs,WATER,NA,9/10/2020,14:51:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC007,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 21:51,NA,Colter North Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90189297,-110.6448161,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-8,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-09,Sample-Routine,WATER,NA,6/24/2020,13:21:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:21,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-5,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-24,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-40,Field Msr/Obs,WATER,NA,9/9/2020,16:15:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:15,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-09,Field Msr/Obs,WATER,NA,8/18/2020,11:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:08,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-45,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-2,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-6,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287619,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287619,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-12,Sample-Routine,WATER,NA,6/24/2020,13:23:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:23,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-70,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.05,10.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.183,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-14,Sample-Routine,WATER,NA,6/23/2020,12:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 19:00,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287819,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287819,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-17,Field Msr/Obs,WATER,NA,8/4/2020,9:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:19,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-2-F,Field Msr/Obs,WATER,NA,6/16/2015,18:37:51,MST,NA,NA,NA,0.89,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.47,18.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274004,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-90,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002127_02,Field Msr/Obs,WATER,NA,10/9/2007,17:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002127,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2007 0:03,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-30,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_420020011/2_02,Quality Control Field Replicate Msr/Obs,WATER,NA,6/12/2007,11:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_420020011/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 18:01,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-80,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-25,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-28,Field Msr/Obs,WATER,NA,8/4/2020,13:02:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC006,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,21.9,21.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 20:02,NA,Colter South Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90044,-110.6445,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-24,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002074_02,Field Msr/Obs,WATER,NA,8/9/2007,12:51:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002074,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 19:51,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-18,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-31,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.85,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-13,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.41,9.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.051,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-9,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_90,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-51,Field Msr/Obs,WATER,NA,8/4/2020,15:30:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,23.2,23.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:30,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-44222007,Field Msr/Obs,WATER,NA,8/28/2007,12:54:00,MST,NA,NA,NA,15,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,Relative Depth = Below Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2007 19:54,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000635,Field Msr/Obs,WATER,NA,5/21/2004,9:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000635,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 16:54,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-74,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.4,19.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-04,Field Msr/Obs,WATER,NA,8/4/2020,9:02:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.1,20.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:02,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-13,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-02,Sample-Routine,WATER,NA,8/18/2020,11:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:16,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_70,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-93,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281720,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281720,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-33,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002744_02,Field Msr/Obs,WATER,NA,6/15/2010,13:04:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002744,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 20:04,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-2,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-22,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091_02,Field Msr/Obs,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002091,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-20,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-08,Field Msr/Obs,WATER,NA,9/9/2020,12:11:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:11,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-17,Sample-Routine,WATER,NA,8/5/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:45,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002739_02,Field Msr/Obs,WATER,NA,6/15/2010,8:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002739,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:50,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283602,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283602,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-9,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-15,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-06,Field Msr/Obs,WATER,NA,9/9/2020,12:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:05,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281715,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281715,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-50,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-15,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-24,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-13,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-1,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-30,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4015,Sample-Routine,WATER,NA,8/16/2016,10:52:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 17:52,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-5,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-2,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-93,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-4,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-50,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-10,Sample-Routine,WATER,NA,6/24/2020,13:22:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-6,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-1,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,79,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-30,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-08,Field Msr/Obs,WATER,NA,8/18/2020,11:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:08,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-40,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-6,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-79,Field Msr/Obs,WATER,NA,9/10/2020,10:59:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:59,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-24,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000839,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000839,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-6,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-70,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-17,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-15,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-12,Field Msr/Obs,WATER,NA,9/9/2020,12:11:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:11,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-1,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034_02,Field Msr/Obs,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002034,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035_02,Field Msr/Obs,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002035,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.08,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-15,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-87,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-9,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002000_02,Field Msr/Obs,WATER,NA,5/17/2007,14:00:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002000,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.1,3.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 21:00,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-16,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-76,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-24,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002971_02,Field Msr/Obs,WATER,NA,6/29/2011,10:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002971,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 17:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-32,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-21,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:13,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.072,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-46,Field Msr/Obs,WATER,NA,9/10/2020,10:37:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:37,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-8,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002090_02,Field Msr/Obs,WATER,NA,9/5/2007,9:26:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002090,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 16:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-1,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.863,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-26,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-19,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-30,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.93,12.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.053,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.24,13.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.152,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-25,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-22,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.78,12.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Surface,NA,2.217,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-15,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-14,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-90,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-35,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-7,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1750,Sample-Routine,WATER,NA,6/21/2017,11:55:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 18:55,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.75,10.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.407,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.43,14.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.04,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-04,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-2-F,Field Msr/Obs,WATER,NA,5/18/2021,16:20:00,MST,NA,NA,NA,2.807,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.76,11.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:20,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-23,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002971-30,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,10:27:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002971-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 17:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002033_02,Field Msr/Obs,WATER,NA,7/10/2007,9:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002033,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:09,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-2,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-90,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-23,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-10,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-29-F,Field Msr/Obs,WATER,NA,5/18/2021,16:23:00,MST,NA,NA,NA,19.25,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,Sample collected at 19m,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.69,6.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:23,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.89,6.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.429,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002126_02,Field Msr/Obs,WATER,NA,10/9/2007,16:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002126,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 23:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42003200_02,Field Msr/Obs,WATER,NA,10/10/2012,11:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42003200,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 18:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.31,21.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.47,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-15,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,20.05,20.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741340.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003039_02,Field Msr/Obs,WATER,NA,10/12/2011,13:38:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42003039,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 20:38,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-12,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003035_02,Field Msr/Obs,WATER,NA,10/12/2011,10:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42003035,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 17:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-28,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989_02,Field Msr/Obs,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002989,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-29,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-21,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-11,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-33,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-90,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.94,19.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,23 - Above Thermoclin,NA,8.124,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.62,6.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.181,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010778,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10078,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Kemmerer Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040107,NA,NA,NA,NA,41.94495,-110.6569,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2179,m,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-70,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002971-50,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,10:27:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002971-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 17:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-4,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.21,14.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.199,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-9,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",9.67,9.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-33,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-25,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-30,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.74,6.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.002,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:0,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-2,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-48,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-48,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-96,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,96,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-96,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-8,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-17,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.09,21.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.16,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-80,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-60,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-20,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-5,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-11,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003_02,Field Msr/Obs,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42003003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-08,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-08,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-06,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-06,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:20,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-5,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-2,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-10,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-23,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-16,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-06,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-06,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-49,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-49,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-17,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42003038_02,Field Msr/Obs,WATER,NA,10/12/2011,12:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42003038,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 19:55,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003021_02,Field Msr/Obs,WATER,NA,9/15/2011,10:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42003021,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 17:13,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-06,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-06,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-60,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.72,5.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.66,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-13,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-15,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.61,4.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-06,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-06,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.09,13.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.695,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-24,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-93,Field Msr/Obs,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.782,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-45482008,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,MST,NA,NA,NA,0.11,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.65,7.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 18:00,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269_02,Field Msr/Obs,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.52,7.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.893,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-3,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-23,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.56,12.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.33,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274020,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274020,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-21,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.73,19.73,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.19,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.99,8.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.949,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287818,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287818,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003023_02,Field Msr/Obs,WATER,NA,9/15/2011,13:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42003023,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 20:30,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982_02,Field Msr/Obs,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002982,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-10,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-8,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-29,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.25,8.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.48,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-25,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2191,Sample-Routine,WATER,NA,7/11/2017,11:49:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 18:49,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-11,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.75,14.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.64,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.08,11.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.142,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-18,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-13,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-11,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-15,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-19,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000636-2,Field Msr/Obs,WATER,NA,5/21/2004,10:54:00,MST,NA,NA,NA,95,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000636-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 17:54,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.3,3.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-22,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.15,20.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.243,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-07,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-07,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.52,8.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.418,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-22,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-1,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,82.1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-60,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-07,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-07,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-2,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-7,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-26,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-17,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.66,10.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.001,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.98,21.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.434,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-45442008,Field Msr/Obs,WATER,NA,5/13/2008,15:00:00,MST,NA,NA,NA,0.108,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 22:00,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-17,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-13,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-80,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003005_02,Field Msr/Obs,WATER,NA,8/17/2011,15:43:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42003005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 22:43,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42003026_02,Field Msr/Obs,WATER,NA,9/15/2011,16:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42003026,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 23:42,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-2-F,Field Msr/Obs,WATER,NA,6/26/2019,16:19:00,MST,NA,NA,NA,2.685,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.09,16.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:19,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-30,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003115_02,Field Msr/Obs,WATER,NA,6/12/2012,13:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Organization ActivityID=YELL_YL001.0M_42003115,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 20:50,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-17,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981_02,Field Msr/Obs,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002981,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.296,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-4,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.18,10.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.543,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.88,8.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.315,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.08,16.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.033,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-80,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.41,21.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.159,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.86,11.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.007,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.63,16.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.772,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-28,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-24,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-45512008,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,MST,NA,NA,NA,15.012,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.44,7.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 19:15,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:16,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-45492008,Field Msr/Obs,WATER,NA,5/13/2008,11:00:00,MST,NA,NA,NA,19.019,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.25,6.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 18:00,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.48,12.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.555,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.07,8.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.72,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-15,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-70,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-16,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-37,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-37,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.96,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-70,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-24,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-4,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-13,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-6,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-7,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-1907094-08,Sample-Routine,WATER,NA,7/30/2019,11:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/30/2019,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/30/2019 18:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-29,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-60,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-12,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-20,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-26,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.13,15.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.517,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-23,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283404,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283404,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.78,15.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.506,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-40,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-45,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,45,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-45,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.04,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.06,13.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.651,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-14,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287830,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287830,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-6,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.601,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-70,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-3,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938640-0605-27-F,Field Msr/Obs,WATER,NA,6/5/2013,18:30:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,No associated lake profile due to equipment issue. No secchi reading due to broken equipment.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.3,7.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2013 1:30,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-20,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-7,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-25,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.01,11.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.274,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.61,14.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.911,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-21,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-3,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.62,15.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.589,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-7,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.31,13.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.095,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002324_02,Field Msr/Obs,WATER,NA,9/3/2008,14:31:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002324,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 21:31,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-16,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-01,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-92,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-92,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.22,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002290_02,Field Msr/Obs,WATER,NA,8/5/2008,14:21:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002290,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 21:21,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-27-F,Field Msr/Obs,WATER,NA,10/23/2019,16:12:43,MST,NA,NA,NA,32.92,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.13,8.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:12,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-12,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-80,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.89,17.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.668,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-29,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-7,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-9,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.96,6.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,49.4,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.84,7.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.5,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-14,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.77,7.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.057,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,28 - Near Bottom,NA,21.28,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-24,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.31,10.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.323,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1676,Sample-Routine,WATER,NA,6/21/2017,11:40:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 18:40,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-25,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033_02,Field Msr/Obs,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42003033,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-24,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-11,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-34,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-29-F,Field Msr/Obs,WATER,NA,6/26/2019,16:23:00,MST,NA,NA,NA,40.919,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.77,6.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:23,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-8,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000790-18,Field Msr/Obs,WATER,NA,8/10/2004,15:03:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000790-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 22:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283611,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283611,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-40,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.23,14.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.091,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.77,7.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.308,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-15,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.6,6.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.98,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-22,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-8,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-97,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,97,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-97,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000718-7,Field Msr/Obs,WATER,NA,6/30/2004,12:46:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000718-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 19:46,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-31,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-1,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3254,Sample-Routine,WATER,NA,8/15/2017,12:42:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:42,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002272_02,Field Msr/Obs,WATER,NA,7/9/2008,15:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002272,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 22:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-7,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.86,10.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.096,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-14,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-18,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-6,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-30,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.55,19.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.592,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.57,7.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.249,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-7,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-16,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003025_02,Field Msr/Obs,WATER,NA,9/15/2011,16:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42003025,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 23:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-19,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.03,10.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.274,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-70,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-11,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.97,6.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.142,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002268_02,Field Msr/Obs,WATER,NA,7/9/2008,9:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Organization ActivityID=YELL_YL002.0M_42002268,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 16:47,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002354_02,Field Msr/Obs,WATER,NA,9/30/2008,12:37:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002354,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 19:37,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-08,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-08,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.56,7.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.43,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:14,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.39,19.39,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.635,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-35,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-5,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-02,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-13,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3608,Sample-Routine,WATER,NA,8/10/2017,11:27:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:27,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-24,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-33,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.34,7.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.589,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-35,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-35,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-48,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-48,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-17,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-23,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-33,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-30,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000671,Field Msr/Obs,WATER,NA,6/14/2004,10:57:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000671,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2004 17:57,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000734-24,Field Msr/Obs,WATER,NA,7/13/2004,8:11:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000734-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-18,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-30,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-29-F,Field Msr/Obs,WATER,NA,6/26/2019,19:21:00,MST,NA,NA,NA,15.94,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.77,11.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:21,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-6,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-04,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-25,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.03,11.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.04,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-27,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000725-12,Field Msr/Obs,WATER,NA,7/1/2004,12:17:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000725-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 19:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.06,6.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.633,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:42,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,42,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-12,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-32,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-22,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-1,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-101:20120913:SR:WSO,Sample-Routine,WATER,NA,9/13/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.58,14.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-101,Lake,NA,10070006,NA,NA,NA,NA,44.78618159,-109.2581674,NA,NA,NA,GPS-Unspecified,NAD83,1468,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-6,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-94,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,94,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-94,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-23,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.51,10.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.917,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-21,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-39,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-29-F,Field Msr/Obs,WATER,NA,8/7/2018,18:13:46,MST,NA,NA,NA,17.54,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.66,9.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:13,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2379:1:070731:2,Field Msr/Obs,WATER,NA,7/31/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2379,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.7,21.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Nine Mile Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-31"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10180010001889"";COM_ID=""17494541"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-807072.140599"";ALBERS_Y=""461268.16439"";FLD_LON_DD=""-105.72309"";FLD_LAT_DD=""41.24771"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10180010,NA,NA,NA,NA,41.24777405,-105.7229345,NA,NA,NA,GPS-Unspecified,WGS84,2191.92,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-04,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-19,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-22,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002984_02,Field Msr/Obs,WATER,NA,7/12/2011,11:14:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002984,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 18:14,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-49,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-49,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002626-49,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002626-49,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-8,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002294/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/5/2008,15:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Split Organization ActivityID=YELL_YL004.0M_42002294/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 22:48,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-84,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-22,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.06,11.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.168,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-4,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-25,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-1,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.14,7.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.301,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-90,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,50.3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-60,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-26,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.34,18.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.762,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-90,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-21,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:16,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002273_02,Field Msr/Obs,WATER,NA,7/9/2008,15:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002273,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 22:42,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002322_02,Field Msr/Obs,WATER,NA,9/3/2008,13:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002322,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 20:48,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-24,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-7,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-23,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-16,Field Msr/Obs,WATER,NA,8/4/2020,9:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:19,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-70,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-29,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-14,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-50,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-24,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-1,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-7,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-10,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-50,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42003036_02,Field Msr/Obs,WATER,NA,10/12/2011,11:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42003036,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 18:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.13,10.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.53,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1755,Sample-Routine,WATER,NA,6/21/2017,12:10:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 19:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-13,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002564_02,Field Msr/Obs,WATER,NA,7/15/2009,9:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002564,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 16:53,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938665-0617-2-F,Quality Control Field Replicate Msr/Obs,WATER,NA,6/17/2015,15:35:11,MST,NA,NA,NA,1.019,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938665,QA/QC Duplicate of 4938640,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.27,18.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:35,NA,FLAMING GORGE RES BL BUCKBOARD Replicate of 4938640,Lake,Replicate of 4938640,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-24,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-3,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-23,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.168,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-60,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002323_02,Field Msr/Obs,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002323,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.19,15.19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730795.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.72,8.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.266,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-91,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-80,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-29-F,Field Msr/Obs,WATER,NA,6/17/2015,15:32:46,MST,NA,NA,NA,37.593,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.43,6.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:32,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-7,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287650,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287650,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-16,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-3,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-92,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-92,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002270_02,Field Msr/Obs,WATER,NA,7/9/2008,14:02:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002270,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 21:02,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288_02,Field Msr/Obs,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-8,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-6,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-1907094-01,Sample-Routine,WATER,NA,7/30/2019,11:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.9,18.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/30/2019,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/30/2019 18:05,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-7,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000889-32,Field Msr/Obs,WATER,NA,9/22/2004,8:43:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000889-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/22/2004 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.1,6.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,42.117,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-9,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-4,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-9,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-11,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-13,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-8,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002352_02,Field Msr/Obs,WATER,NA,9/30/2008,11:49:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002352,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 18:49,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-02,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.44,22.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.949,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-11,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-48,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-48,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000819,Field Msr/Obs,WATER,NA,8/24/2004,9:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000819,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/24/2004 16:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-14,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.65,7.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.674,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000681,Field Msr/Obs,WATER,NA,6/15/2004,13:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000681,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 20:25,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-70,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.49,12.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.63,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002971-40,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,10:27:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002971-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 17:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-3,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-2,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-20,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-8,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980_02,Field Msr/Obs,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002980,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.72,6.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.732,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-32,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2198,Sample-Routine,WATER,NA,7/17/2018,11:13:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:13,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-23,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-5,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-36,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938620-0605-2-F,Field Msr/Obs,WATER,NA,6/5/2013,17:25:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,No associated lake profile due to equipment issue. No secchi reading due to broken equipment.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2013 0:25,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002291_02,Field Msr/Obs,WATER,NA,8/5/2008,15:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002291,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 22:15,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-30,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000639,Field Msr/Obs,WATER,NA,5/21/2004,15:36:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000639,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 22:36,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.94,12.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.462,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587_02,Field Msr/Obs,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972_02,Field Msr/Obs,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002972,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287603,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-27,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320_02,Field Msr/Obs,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002320,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-2-F,Field Msr/Obs,WATER,NA,6/26/2019,16:58:00,MST,NA,NA,NA,2.104,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.72,15.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:58,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.11,12.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.63,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-22,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.88,15.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.979,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000642-6,Field Msr/Obs,WATER,NA,6/1/2004,9:56:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000642-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 16:56,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-29,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.62,11.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.988,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3613,Sample-Routine,WATER,NA,8/10/2017,11:38:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:38,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002355_02,Field Msr/Obs,WATER,NA,9/30/2008,12:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002355,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 19:55,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-6,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-8,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-14,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-25,Field Msr/Obs,WATER,NA,8/4/2020,9:27:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:27,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-2,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.48,8.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.516,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.13,21.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.889,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003037_02,Field Msr/Obs,WATER,NA,10/12/2011,12:17:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42003037,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 19:17,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.58,20.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.183,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-24,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002350/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/30/2008,9:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Replicate Organization ActivityID=YELL_YL002.0M_42002350/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 16:46,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.71,9.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.364,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-30,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.16,18.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.66,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,2.009,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-23-F,Field Msr/Obs,WATER,NA,8/7/2012,11:56:22,MST,NA,NA,NA,8.124,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.94,19.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:56,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.79,21.79,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.554,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.78,6.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.031,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-23,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.73,17.73,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.524,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,4.9,4.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.339,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-36,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-36,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-8,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000850/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/9/2004,9:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Replicate Organization ActivityID=YELL_YL001.0M_42000850/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 16:20,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-09,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-09,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.23,8.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.013,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-40,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.03,9.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.206,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.13,10.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.447,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-5,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.24,7.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.574,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42003145_02,Field Msr/Obs,WATER,NA,7/19/2012,16:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42003145,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 23:16,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-5,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.92,12.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.068,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-21,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281905,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281905,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-33,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-22,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-9,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-60,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.57,9.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.652,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.33,19.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.104,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-01,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-28,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-19,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.98,13.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.766,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-17,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-21,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.78,6.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.991,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-14,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.27,16.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.386,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-3,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-4,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-6,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000646-4,Field Msr/Obs,WATER,NA,6/1/2004,14:40:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000646-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 21:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.68,7.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.204,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.393,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-15,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.97,12.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.472,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-8,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-39,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-39,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-30,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.16,13.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,23 - Above Thermoclin,NA,15.83,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000851,Field Msr/Obs,WATER,NA,9/9/2004,10:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000851,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 17:15,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.89,9.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.607,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.27,6.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.617,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.59,9.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.306,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-15,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-84,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-40,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-23-F,Field Msr/Obs,WATER,NA,6/17/2015,15:25:28,MST,NA,NA,NA,5.981,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:25,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.31,17.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.853,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.02,7.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.06,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.78,7.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.679,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-6,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-2-F,Field Msr/Obs,WATER,NA,6/16/2015,18:01:50,MST,NA,NA,NA,0.94,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.46,18.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000676,Field Msr/Obs,WATER,NA,6/15/2004,9:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000676,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-12,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000752-23,Field Msr/Obs,WATER,NA,7/15/2004,13:30:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000752-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2004 20:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.68,10.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.257,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.92,12.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.84,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-26,Field Msr/Obs,WATER,NA,9/10/2020,14:51:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC007,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 21:51,NA,Colter North Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90189297,-110.6448161,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-6,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-80,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-29-F,Field Msr/Obs,WATER,NA,8/14/2019,16:03:00,MST,NA,NA,NA,42.382,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.72,6.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:03,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.256,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.17,7.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.963,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.4,13.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,15.57,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.75,7.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.411,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.43,6.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.011,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287633,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287633,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-70,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.92,7.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.55,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:1,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.1,23.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.68,10.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.416,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.93,14.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.219,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-28,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-7,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-32,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:17,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:7,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-45502008,Field Msr/Obs,WATER,NA,5/13/2008,12:15:00,MST,NA,NA,NA,0.104,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.89,7.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 19:15,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-23,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-60,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003143_02,Field Msr/Obs,WATER,NA,7/19/2012,15:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Organization ActivityID=YELL_YL001.0M_42003143,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 22:24,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.79,10.79,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.642,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.72,14.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.456,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.41,18.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.033,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-05,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-26,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-14,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.7,8.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.522,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3253,Sample-Routine,WATER,NA,8/15/2017,12:40:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:40,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-2,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-60,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:10,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.14,6.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.696,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-8,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.91,17.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.752,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4019,Sample-Routine,WATER,NA,8/16/2016,11:02:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 18:02,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.73,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.63,14.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.819,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-21,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.408,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-20,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.96,6.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.978,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-34,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.86,13.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.416,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-29,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-10,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283412,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283412,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-23,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-90,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002321_02,Field Msr/Obs,WATER,NA,9/3/2008,13:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002321,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 20:08,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-5,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1752,Sample-Routine,WATER,NA,6/21/2017,12:00:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 19:00,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.29,16.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.85,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.71,11.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.893,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-26,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-08,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-08,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-16,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.13,8.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Below Thermocline,NA,32.92,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.59,18.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.348,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-06,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-06,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.35,21.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.753,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-32,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287815,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287815,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.69,10.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.961,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.57,13.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,2.185,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3611,Sample-Routine,WATER,NA,8/10/2017,11:33:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:33,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002983_02,Field Msr/Obs,WATER,NA,7/12/2011,10:17:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002983,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 17:17,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.059,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283612,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283612,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.81,6.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.774,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.059,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.26,7.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.26,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.97,13.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.421,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-23-F,Field Msr/Obs,WATER,NA,10/10/2012,14:55:18,MST,NA,NA,NA,15.83,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.16,13.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:55,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-17,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283432,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283432,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-18,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002088_02,Field Msr/Obs,WATER,NA,9/5/2007,8:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002088,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:50,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000717-17,Field Msr/Obs,WATER,NA,6/30/2004,9:27:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000717-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 16:27,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-28,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.85,18.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.52,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-14,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-23,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-6,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-9,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.06,14.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.666,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3318,Sample-Routine,WATER,NA,7/26/2016,11:52:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 18:52,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3299,Sample-Routine,WATER,NA,7/26/2016,11:41:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 18:41,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.75,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.26,12.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.322,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283409,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283409,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-15,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281790,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281790,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-09,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-09,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003167_02,Field Msr/Obs,WATER,NA,8/23/2012,12:49:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Organization ActivityID=YELL_YL001.0M_42003167,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/23/2012 19:49,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-5,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-95,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,95,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-95,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.15,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.32,20.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.147,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001516/1,Quality Control Field Replicate Msr/Obs,WATER,NA,10/5/2005,13:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Split Organization ActivityID=YELL_YL005.0M_42001516/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 20:32,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-8,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-3,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-17,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283460,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283460,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-2-F,Field Msr/Obs,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,1.288,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.64,12.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.36,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002348/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/30/2008,9:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Split Organization ActivityID=YELL_YL002.0M_42002348/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 16:46,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.94,20.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.35,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-70,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.64,20.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.043,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002317_02,Field Msr/Obs,WATER,NA,9/3/2008,10:07:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002317,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 17:07,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002565_02,Field Msr/Obs,WATER,NA,7/15/2009,10:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002565,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 17:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.35,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.06,10.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.031,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3316,Sample-Routine,WATER,NA,7/26/2016,11:48:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 18:48,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-29-F,Field Msr/Obs,WATER,NA,8/13/2019,20:11:00,MST,NA,NA,NA,21.19,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.61,9.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:11,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-08,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-08,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.86,9.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.08,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.28,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938680-0705-2-F,Field Msr/Obs,WATER,NA,7/5/2016,19:17:50,MST,NA,NA,NA,2.205,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.75,19.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2016 2:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-29,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-25,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281909,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281909,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-54,Field Msr/Obs,WATER,NA,8/4/2020,15:30:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.1,20.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:30,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-5,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-1,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.12,15.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.71,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-6,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-40,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-20,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.36,8.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.855,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-23,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.58,10.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.111,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-2-F,Field Msr/Obs,WATER,NA,6/17/2015,14:43:38,MST,NA,NA,NA,1.543,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.48,18.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-21,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-30,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-90,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002540_02,Field Msr/Obs,WATER,NA,6/23/2009,13:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002540,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 20:25,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283423,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283423,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-44,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002836_02,Field Msr/Obs,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002836,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.01,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.895,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.04,8.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.384,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3323,Sample-Routine,WATER,NA,7/26/2016,12:04:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 19:04,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.28,11.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,14.695,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-9,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281705,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281705,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-97,Field Msr/Obs,WATER,NA,9/9/2020,14:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:20,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.58,20.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.132,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.62,12.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.342,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-40,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.61,11.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.777,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-15,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-15,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-38,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-38,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287631,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287631,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.22,8.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.918,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003117_01,Field Msr/Obs,WATER,NA,6/12/2012,14:31:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42003117,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 21:31,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.05,18.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.018,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.11,12.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.795,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-42,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.25,9.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.237,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-26,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.76,16.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.465,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-05,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.08,8.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.061,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.76,10.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.108,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-02,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.11,9.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.782,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-12,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-33,Field Msr/Obs,WATER,NA,8/4/2020,13:02:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC006,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 20:02,NA,Colter South Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90044,-110.6445,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-7,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.25,12.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.446,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42003284_02,Field Msr/Obs,WATER,NA,7/17/2013,8:37:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42003284,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 15:37,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.36,5.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.806,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-70,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.42,7.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.329,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,1.235,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.21,6.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,43.553,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-17,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-9,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-32,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000644-13,Field Msr/Obs,WATER,NA,6/1/2004,11:08:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000644-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 18:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-17,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-10,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002742_02,Field Msr/Obs,WATER,NA,6/15/2010,12:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002742,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 19:33,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-15,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.03,12.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.324,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000638-2,Field Msr/Obs,WATER,NA,5/21/2004,14:28:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000638-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 21:28,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.62,18.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.195,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.17,8.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.511,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-17,Field Msr/Obs,WATER,NA,8/18/2020,11:15:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3946,Sample-Routine,WATER,NA,8/16/2016,10:45:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 17:45,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.58,12.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.104,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281910,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281910,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-22,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.33,6.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.777,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000772-7,Field Msr/Obs,WATER,NA,7/29/2004,9:11:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000772-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 16:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2238,Sample-Routine,WATER,NA,7/11/2017,12:00:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 19:00,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.66,20.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.565,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-52,Field Msr/Obs,WATER,NA,8/4/2020,15:30:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,21.2,21.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:30,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-11,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.74,19.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.125,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2938,Sample-Routine,WATER,NA,8/14/2018,11:04:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:04,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.09,20.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.609,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-19,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-46,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000789,Field Msr/Obs,WATER,NA,8/10/2004,14:37:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000789,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 21:37,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.14,13.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.833,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.07,9.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.019,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.38,11.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.551,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000936,Field Msr/Obs,WATER,NA,10/19/2004,11:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000936,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 18:42,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-20,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-94,Field Msr/Obs,WATER,NA,9/9/2020,14:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:20,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-33,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.961,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-26,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.14,8.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.761,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000833,Field Msr/Obs,WATER,NA,8/26/2004,10:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000833,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:55,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.99,14.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002879_02,Field Msr/Obs,WATER,NA,10/13/2010,13:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002879,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 20:01,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-13,Sample-Routine,WATER,NA,8/5/2020,10:41:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:41,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.31,8.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.603,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.62,6.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.502,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-34,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274010,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274010,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42003195_02,Field Msr/Obs,WATER,NA,10/10/2012,8:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42003195,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 15:25,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.23,20.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,2.736,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-4,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.44,8.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,21.131,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.96,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-29-F,Field Msr/Obs,WATER,NA,6/16/2015,18:05:52,MST,NA,NA,NA,21.131,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.44,8.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:05,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.51,11.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.698,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-12,Field Msr/Obs,WATER,NA,8/18/2020,11:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.86,20.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.159,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-90,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-8,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.66,8.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283407,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283407,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-70,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.61,18.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.497,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000923-12,Field Msr/Obs,WATER,NA,10/6/2004,9:45:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000923-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 16:45,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-35,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.4,19.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.12,21.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.512,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.88,8.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.923,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-04,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.87,18.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.723,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-93,Field Msr/Obs,WATER,NA,9/9/2020,14:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:20,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-2-F,Field Msr/Obs,WATER,NA,8/8/2018,14:32:16,MST,NA,NA,NA,1.44,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:32,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.54,21.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,1.836,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281770,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281770,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002563/2,Quality Control Field Replicate Msr/Obs,WATER,NA,7/15/2009,9:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Replicate Organization ActivityID=YELL_YL002.0M_42002563/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 16:29,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-82,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.64,16.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.026,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-16,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.68,8.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.211,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.41,19.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.254,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-2,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938680-0924-2-F,Field Msr/Obs,WATER,NA,9/24/2013,11:32:00,MST,NA,NA,NA,2.046,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.96,16.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 18:32,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002595_02,Field Msr/Obs,WATER,NA,8/12/2009,14:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002595,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 21:50,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-01,Sample-Routine,WATER,NA,6/23/2020,11:52:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:52,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002535_02,Field Msr/Obs,WATER,NA,6/18/2009,9:35:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002535,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/18/2009 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-01,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-83,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-10,Sample-Routine,WATER,NA,8/5/2020,10:40:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:40,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.48,14.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.443,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.45,15.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.299,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-12,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.81,9.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.904,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.42,7.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.13,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000755-32,Field Msr/Obs,WATER,NA,7/26/2004,10:40:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000755-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 17:40,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.29,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.88,6.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.087,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.781,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-10,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-3,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.57,16.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.645,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3250,Sample-Routine,WATER,NA,8/15/2017,12:32:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:32,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.46,6.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.644,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.06,18.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.004,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000773-10,Field Msr/Obs,WATER,NA,7/29/2004,12:12:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000773-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/29/2004 19:12,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-9,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-02,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.63,13.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.07,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000852-1,Field Msr/Obs,WATER,NA,9/9/2004,12:04:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000852-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 19:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.07,19.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.082,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000784-29,Field Msr/Obs,WATER,NA,8/10/2004,12:36:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000784-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 19:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.193,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.65,9.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.762,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.9,5.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39.573,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-2-F,Field Msr/Obs,WATER,NA,6/17/2015,15:24:20,MST,NA,NA,NA,0.85,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-12,Sample-Routine,WATER,NA,8/5/2020,10:41:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:41,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12,12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.208,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-22,Field Msr/Obs,WATER,NA,8/4/2020,9:27:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:27,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.61,15.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.209,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-14,Sample-Routine,WATER,NA,6/24/2020,13:24:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-30,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281918,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281918,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-6,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.68,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.58,10.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.841,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287632,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287632,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.08,21.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.979,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-29,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-92,Field Msr/Obs,WATER,NA,9/9/2020,14:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:20,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.37,5.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.783,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.11,6.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.624,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000942,Field Msr/Obs,WATER,NA,10/19/2004,13:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000942,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 20:52,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.38,9.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.21,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.23,20.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-1,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.54,17.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.419,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002536_02,Field Msr/Obs,WATER,NA,6/18/2009,10:00:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002536,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.4,3.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/18/2009 17:00,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-40,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283424,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283424,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-29-F,Field Msr/Obs,WATER,NA,8/14/2019,16:39:00,MST,NA,NA,NA,32.237,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:39,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.81,18.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.202,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.13,5.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.401,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.61,9.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.19,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.52,8.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.014,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.32,21.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.468,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000675-7,Field Msr/Obs,WATER,NA,6/15/2004,8:20:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000675-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 15:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-2-F,Field Msr/Obs,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,1.836,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.54,21.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-49,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-49,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273802,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-20,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-05,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.72,6.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.86,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-1,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-13,Sample-Routine,WATER,NA,6/23/2020,11:59:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:59,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-13,Field Msr/Obs,WATER,NA,8/18/2020,11:11:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:11,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-01,Field Msr/Obs,WATER,NA,8/4/2020,8:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 15:54,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.81,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002738-04,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002738-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000756-10,Field Msr/Obs,WATER,NA,7/26/2004,11:26:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000756-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 18:26,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-16,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.6,8.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.98,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000898-18,Field Msr/Obs,WATER,NA,9/23/2004,12:11:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000898-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 19:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003306_02,Field Msr/Obs,WATER,NA,9/9/2013,9:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Organization ActivityID=YELL_YL002.0M_42003306,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 16:50,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938660-0604-2-F,Field Msr/Obs,WATER,NA,6/4/2013,20:50:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,No associated lake profile due to equipment issue.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.8,12.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 3:50,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-22,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-9,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-7,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002561/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/15/2009,9:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Split Organization ActivityID=YELL_YL002.0M_42002561/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 16:29,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-70,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-50,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.3,3.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-27,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2206,Sample-Routine,WATER,NA,7/17/2018,11:31:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:31,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287615,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287615,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3317,Sample-Routine,WATER,NA,7/26/2016,11:50:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 18:50,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_5,Field Msr/Obs,WATER,NA,7/27/2005,10:43:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:43,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-20,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001312,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-12,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-20,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-21,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-17,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000724-28,Field Msr/Obs,WATER,NA,7/1/2004,10:33:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000724-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 17:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000741-29,Field Msr/Obs,WATER,NA,7/13/2004,14:02:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000741-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 21:02,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-5,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-60,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-3,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-7,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-02,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.72,15.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.104,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002628_02,Field Msr/Obs,WATER,NA,9/8/2009,13:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002628,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 20:11,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-2,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.11,12.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.936,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-13,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.19,14.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.491,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000754-26,Field Msr/Obs,WATER,NA,7/26/2004,8:11:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000754-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 15:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-1907094-05,Sample-Routine,WATER,NA,7/30/2019,11:07:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/30/2019,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/30/2019 18:07,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.72,13.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.799,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000719-7,Field Msr/Obs,WATER,NA,6/30/2004,14:05:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000719-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 21:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938640-1015-2-F,Field Msr/Obs,WATER,NA,10/15/2009,15:10:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/15/2009 22:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281911,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281911,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.57,7.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38.82,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-9,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.09,20.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.661,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.95,6.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,33.949,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-18,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-22,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-03,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-03,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.69,11.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.584,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.15,21.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.362,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000735-20,Field Msr/Obs,WATER,NA,7/13/2004,8:56:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000735-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 15:56,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283401,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283401,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-15,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-27-F,Field Msr/Obs,WATER,NA,8/8/2018,14:37:33,MST,NA,NA,NA,19.1,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,"Depth for above thermocline (i.e., sample type 23) not provided with raw data. Depth determined at a later time in the office",NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.66,8.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:37,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002775_02,Field Msr/Obs,WATER,NA,7/12/2010,14:51:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002775,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2010 21:51,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.55,6.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.373,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000831-34,Field Msr/Obs,WATER,NA,8/26/2004,9:41:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000831-34,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 16:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_11,Field Msr/Obs,WATER,NA,8/3/2005,8:08:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-12,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.763,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_92,Field Msr/Obs,WATER,NA,10/5/2005,10:27:00,MST,NA,NA,NA,92,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_92,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-15,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000645-5,Field Msr/Obs,WATER,NA,6/1/2004,12:22:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000645-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/1/2004 19:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_5,Field Msr/Obs,WATER,NA,9/19/2005,8:47:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.71,19.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.217,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-05,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287618,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287618,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2939,Sample-Routine,WATER,NA,8/14/2018,11:06:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:06,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.54,6.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.267,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-20,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_28,Field Msr/Obs,WATER,NA,9/19/2005,8:14:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.03,10.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.5,19.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.696,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.42,5.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.391,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3612,Sample-Routine,WATER,NA,8/10/2017,11:36:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:36,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.88,13.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.742,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-40,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000924-12,Field Msr/Obs,WATER,NA,10/6/2004,11:58:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000924-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 18:58,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579_02,Field Msr/Obs,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.14,14.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.3,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.72,18.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.025,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_26,Field Msr/Obs,WATER,NA,9/7/2005,12:49:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-12,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-26,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.13,10.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.036,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938620-0706-2-F,Field Msr/Obs,WATER,NA,7/6/2016,16:28:30,MST,NA,NA,NA,2.528,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.71,19.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2016 23:28,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938680-0924-29-F,Field Msr/Obs,WATER,NA,9/24/2013,11:35:00,MST,NA,NA,NA,12.256,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.74,16.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 18:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3947,Sample-Routine,WATER,NA,8/16/2016,11:15:00,MST,NA,NA,NA,27.8,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 18:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-15,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.62,7.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.795,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-80,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000720-9,Field Msr/Obs,WATER,NA,7/1/2004,8:35:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000720-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/1/2004 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.31,7.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.592,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-0.2_02,Field Msr/Obs,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281706,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281706,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.25,14.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.109,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-15,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_4,Field Msr/Obs,WATER,NA,9/7/2005,13:21:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.62,18.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.253,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.97,13.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.813,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000676-5,Field Msr/Obs,WATER,NA,6/15/2004,9:53:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000676-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2004 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.14,6.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.71,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-28,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000845-40,Field Msr/Obs,WATER,NA,9/9/2004,7:49:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000845-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 14:49,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-04,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-23,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4020,Sample-Routine,WATER,NA,8/16/2016,11:04:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 18:04,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003310_02,Field Msr/Obs,WATER,NA,9/9/2013,14:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42003310,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 21:55,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001289,Field Msr/Obs,WATER,NA,6/27/2005,14:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001289,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/27/2005 21:32,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-50,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000897-12,Field Msr/Obs,WATER,NA,9/23/2004,8:32:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000897-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/23/2004 15:32,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002777_02,Field Msr/Obs,WATER,NA,7/12/2010,15:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002777,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2010 22:48,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.66,8.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.53,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-17,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.05,8.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.516,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002598_02,Field Msr/Obs,WATER,NA,8/12/2009,15:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002598,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 22:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-05,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-6,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-11,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine- Organization ActivityID=YELL_YL007.0M_42002604-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.35,17.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.921,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.84,12.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.014,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.82,14.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.759,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-3,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.32,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG170605-4938680-0605-02-F,Field Msr/Obs,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,0.025,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.72,18.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000943-31,Field Msr/Obs,WATER,NA,10/20/2004,8:40:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000943-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/20/2004 15:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-29,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200286726,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200286726,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-2-F,Field Msr/Obs,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,2.736,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.23,20.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-17,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000842-29,Field Msr/Obs,WATER,NA,8/30/2004,9:03:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000842-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2004 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.07,19.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.301,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003163_02,Field Msr/Obs,WATER,NA,8/23/2012,8:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003163,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/23/2012 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.66,16.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.304,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-17,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.07,11.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.294,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002988_02,Field Msr/Obs,WATER,NA,7/14/2011,7:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002988,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 14:05,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-16,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42000637-2,Field Msr/Obs,WATER,NA,5/21/2004,12:29:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42000637-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/21/2004 19:29,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-90,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-6,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.62,10.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.441,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-24,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.78,11.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.362,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.04,10.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.569,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625_02,Field Msr/Obs,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.64,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.45,19.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.004,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_16,Field Msr/Obs,WATER,NA,9/19/2005,8:32:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.6,8.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.86,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.65,15.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.954,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-17,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-1,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4021,Sample-Routine,WATER,NA,8/16/2016,11:07:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 18:07,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.94,18.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.015,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.78,9.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.439,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.06,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000757-7,Field Msr/Obs,WATER,NA,7/26/2004,12:09:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000757-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/26/2004 19:09,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-28,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-137:20120914:SR:WSO,Sample-Routine,WATER,NA,9/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-137,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.79,15.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-137,Lake,NA,10070006,NA,NA,NA,NA,44.78132376,-109.2547289,NA,NA,NA,GPS-Unspecified,NAD83,1473.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-9,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938640-0706-27-F,Field Msr/Obs,WATER,NA,7/6/2016,17:11:33,MST,NA,NA,NA,17.029,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.59,9.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2016 0:11,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_1,Field Msr/Obs,WATER,NA,9/7/2005,13:25:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.73,13.73,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.796,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_23,Field Msr/Obs,WATER,NA,9/19/2005,8:21:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:21,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000753-3,Field Msr/Obs,WATER,NA,7/16/2004,7:40:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000753-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/16/2004 14:40,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21,21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.395,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.37,18.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.951,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,35.249,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-50,Field Msr/Obs,WATER,NA,9/10/2020,10:37:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:37,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.12,10.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.28,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.19,12.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.87,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.12,7.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,43.64,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-40,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.17,7.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.776,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000783-18,Field Msr/Obs,WATER,NA,8/10/2004,11:10:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000783-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/10/2004 18:10,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002982-90,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002982-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273805,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-29-F,Field Msr/Obs,WATER,NA,6/17/2015,14:56:31,MST,NA,NA,NA,43.593,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:56,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.29,13.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.119,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-06,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-06,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-22,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42000846-25,Field Msr/Obs,WATER,NA,9/9/2004,8:33:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42000846-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2004 15:33,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.09,6.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.231,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002537_02,Field Msr/Obs,WATER,NA,6/18/2009,10:21:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002537,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/18/2009 17:21,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000810-17,Field Msr/Obs,WATER,NA,8/13/2004,8:07:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000810-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/13/2004 15:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-70,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000920-40,Field Msr/Obs,WATER,NA,10/6/2004,8:18:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000920-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/6/2004 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274008,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274008,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000935-14,Field Msr/Obs,WATER,NA,10/19/2004,8:22:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000935-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/19/2004 15:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287805,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-8,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-10,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.94,19.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.016,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-10,Field Msr/Obs,WATER,NA,8/4/2020,9:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:19,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-10,Sample-Routine,WATER,NA,6/23/2020,11:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:57,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-04,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42000832-15,Field Msr/Obs,WATER,NA,8/26/2004,10:15:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42000832-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 17:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-24,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.07,5.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.904,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-23,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.32,13.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.995,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-93,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.17,11.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.701,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-21,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.61,12.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.689,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.14,15.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.708,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003178_02,Field Msr/Obs,WATER,NA,9/12/2012,9:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003178,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2012 16:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.92,6.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.695,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42000740-6,Field Msr/Obs,WATER,NA,7/13/2004,10:52:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42000740-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 17:52,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.63,9.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.788,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1707,Sample-Routine,WATER,NA,6/19/2018,13:40:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:40,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42000830-5,Field Msr/Obs,WATER,NA,8/26/2004,7:41:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42000830-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/26/2004 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938660-0604-29-F,Field Msr/Obs,WATER,NA,6/4/2013,21:00:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,No associated lake profile due to equipment issue.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 4:00,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.78,11.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.38,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.55,13.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.982,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.581,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.59,6.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.419,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.593,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.83,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.79,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.46,12.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.279,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.65,15.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.564,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.76,13.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,2.294,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,4.64,4.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,50.044,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.89,7.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.107,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42000736-22,Field Msr/Obs,WATER,NA,7/13/2004,9:35:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42000736-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/13/2004 16:35,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42000716-8,Field Msr/Obs,WATER,NA,6/30/2004,8:53:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42000716-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2004 15:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.43,12.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.068,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.38,11.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.839,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-80,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-01,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287848,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287848,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938660-0924-2-F,Field Msr/Obs,WATER,NA,9/24/2013,12:41:00,MST,NA,NA,NA,1.959,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,No secchi reading available-sampler did not perform measurement.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.15,17.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 19:41,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.07,17.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.735,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-50,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.64,16.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.824,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.28,18.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.903,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-27-F,Field Msr/Obs,WATER,NA,6/17/2015,15:27:40,MST,NA,NA,NA,15.055,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:27,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,4.85,4.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,41.74,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-80,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.72,5.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,47.84,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.01,16.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.765,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577_02,Field Msr/Obs,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.49,8.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.84,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG170605-4938640-0606-02-F,Field Msr/Obs,WATER,NA,6/6/2017,15:01:18,MST,NA,NA,NA,1.227,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:01,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-2,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.77,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.17,7.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.965,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.86,17.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.105,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.273,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.18,7.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.107,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.08,16.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.129,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.51,11.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.729,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938680-0605-29-F,Field Msr/Obs,WATER,NA,6/5/2013,19:45:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,No associated lake profile due to equipment issue. No secchi reading due to broken equipment.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.3,8.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2013 2:45,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283603,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283603,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.823,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.33,6.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,40.387,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-3,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-5,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-02,Sample-Routine,WATER,NA,6/23/2020,12:02:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 19:02,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_70,Field Msr/Obs,WATER,NA,9/19/2005,8:01:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.48,6.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Bottom,NA,35.547,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.81,5.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,42.472,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-75,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.47,7.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.078,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001513_15,Field Msr/Obs,WATER,NA,10/5/2005,12:33:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001513_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 19:33,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.47,6.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.024,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307_02,Field Msr/Obs,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.79,11.79,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.918,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2192,Sample-Routine,WATER,NA,7/11/2017,12:20:00,MST,NA,NA,NA,31.1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 19:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-24,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_25,Field Msr/Obs,WATER,NA,10/7/2005,9:13:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281912,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281912,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_19,Field Msr/Obs,WATER,NA,7/20/2005,7:45:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:45,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.07,6.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,48.438,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_11,Field Msr/Obs,WATER,NA,10/18/2005,10:12:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:12,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.13,12.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.913,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.89,9.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.07,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001546,Field Msr/Obs,WATER,NA,10/18/2005,12:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001546,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 19:53,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.383,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_16,Field Msr/Obs,WATER,NA,10/18/2005,10:05:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:05,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.57,6.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.841,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-2-F,Field Msr/Obs,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,1.762,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.11,16.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_30,Field Msr/Obs,WATER,NA,7/26/2005,13:40:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287809,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287809,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.66,6.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.034,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.11,21.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.091,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002623_02,Field Msr/Obs,WATER,NA,9/8/2009,14:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002623,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 21:27,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283613,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283613,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.696,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-1907094-09,Sample-Routine,WATER,NA,7/30/2019,11:11:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/30/2019,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/30/2019 18:11,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001234-49,Field Msr/Obs,WATER,NA,6/3/2005,10:19:00,MST,NA,NA,NA,49.4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001234-49,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 17:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001467/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/19/2005,9:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Split Organization ActivityID=YELL_YL007.0M_42001467/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281920,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281920,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.47,18.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.89,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-2-F,Field Msr/Obs,WATER,NA,8/13/2019,19:40:00,MST,NA,NA,NA,2.237,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.65,21.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:40,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.396,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.17,18.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.987,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.64,16.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.187,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.91,9.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.51,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001529,Field Msr/Obs,WATER,NA,10/7/2005,11:51:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001529,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 18:51,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.45,9.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.251,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.95,6.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.941,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_17,Field Msr/Obs,WATER,NA,7/27/2005,10:26:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:26,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283620,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283620,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-90,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.44,7.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.907,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_101_20130803120004^01,Field Msr/Obs,WATER,NA,8/3/2013,12:00:00,MST,NA,NA,NA,9.2,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_101,no fish Orig ID=0803131200 Organization ActivityID=YELL_YSL_101_20130803120004,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/3/2013 19:00,NA,Yellowstone Lake Shoreline KM 101,Lake,This site is located along the western shoreline of the Southeast Arm of Yellowstone Lake near the Promontory.,10070001,NA,NA,NA,NA,44.3841748,-110.2783129,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-2-F,Field Msr/Obs,WATER,NA,6/1/2010,19:15:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.38,12.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 2:15,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-5,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002534_02,Field Msr/Obs,WATER,NA,6/18/2009,9:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002534,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/18/2009 16:11,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42003116_02,Field Msr/Obs,WATER,NA,6/12/2012,14:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42003116,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 21:15,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003287_02,Field Msr/Obs,WATER,NA,7/17/2013,10:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Organization ActivityID=YELL_YL002.0M_42003287,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 17:27,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-20,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1711,Sample-Routine,WATER,NA,6/19/2018,13:50:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:50,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_14,Field Msr/Obs,WATER,NA,10/7/2005,9:29:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:29,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.13,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.03,5.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.267,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3609,Sample-Routine,WATER,NA,8/10/2017,11:29:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:29,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.13,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-60,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-07,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-07,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-11,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273850,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273850,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3255,Sample-Routine,WATER,NA,8/15/2017,12:44:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:44,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.04,10.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.453,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-2,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_40,Field Msr/Obs,WATER,NA,7/26/2005,13:34:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_21,Field Msr/Obs,WATER,NA,7/27/2005,10:20:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:20,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002596_02,Field Msr/Obs,WATER,NA,8/12/2009,11:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002596,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 18:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.35,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2940,Sample-Routine,WATER,NA,8/14/2018,11:09:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,91,91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:09,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003196_02,Field Msr/Obs,WATER,NA,10/10/2012,8:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42003196,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 15:40,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1746,Sample-Routine,WATER,NA,6/21/2017,11:45:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 18:45,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-8,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.71,5.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.034,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.12,10.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.905,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001359,Field Msr/Obs,WATER,NA,7/27/2005,12:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001359,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 19:42,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-71,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.8,20.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.42,11.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.278,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281906,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281906,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002741_02,Field Msr/Obs,WATER,NA,6/15/2010,11:38:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002741,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 18:38,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.13,14.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.918,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.8,11.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.914,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.09,6.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Bottom,NA,42.003,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-20,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.293,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001250-26,Field Msr/Obs,WATER,NA,6/14/2005,9:09:00,MST,NA,NA,NA,26.3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42001250-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 16:09,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-22,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.96,20.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.183,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002971-10,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,10:27:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002971-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 17:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123_02,Field Msr/Obs,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002123,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.34,10.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.42,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.55,17.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.169,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-80,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281718,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281718,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1642,Sample-Routine,WATER,NA,6/19/2018,13:30:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:30,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002819_02,Field Msr/Obs,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002819,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.23,9.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.733,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.29,18.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.057,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.63,5.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,48.968,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-22,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.52,19.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.343,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001325,Field Msr/Obs,WATER,NA,7/12/2005,10:17:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001325,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/12/2005 17:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-80,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-94,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.51,17.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.96,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.76,8.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.467,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.42,9.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.97,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-4,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-5,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.66,17.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.562,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.46,18.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.94,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.2,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.06,6.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901664.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287609,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287609,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.56,7.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.41,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.294,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.7,21.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.962,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-22,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-19,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.82,6.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.552,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.78,9.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.39,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001268_01,Field Msr/Obs,WATER,NA,6/16/2005,12:40:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001268,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2005 19:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.98,18.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.329,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-7,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-90,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.75,9.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.675,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.43,22.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.257,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.28,7.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.84,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-71,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-AB,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.19,9.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.198,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1643,Sample-Routine,WATER,NA,6/19/2018,14:00:00,MST,NA,NA,NA,25.8,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 21:00,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-30,Field Msr/Obs,WATER,NA,8/4/2020,13:02:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC006,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.8,20.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 20:02,NA,Colter South Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90044,-110.6445,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-01,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.04,16.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.796,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.38,13.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.215,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.51,5.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.493,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-17,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-90,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.86,13.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.899,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-28,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42003311_02,Field Msr/Obs,WATER,NA,9/9/2013,15:07:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42003311,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 22:07,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.45,12.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.367,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.32,6.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.813,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2203,Sample-Routine,WATER,NA,7/17/2018,11:24:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG170605-4938660-0605-29-F,Field Msr/Obs,WATER,NA,6/5/2017,18:59:41,MST,NA,NA,NA,20.067,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.09,8.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:59,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.475,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.44,15.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.704,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.77,6.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,43.226,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.41,12.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.326,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.63,16.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.149,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287824,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287824,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004_02,Field Msr/Obs,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287625,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287625,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-25,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.86,8.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.05,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002989-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.928,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.82,6.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.748,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_4,Field Msr/Obs,WATER,NA,7/27/2005,10:44:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:44,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1706,Sample-Routine,WATER,NA,6/19/2018,13:38:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:38,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-13,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283416,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283416,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.22,14.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.854,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-98,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,98,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-98,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-21,Field Msr/Obs,WATER,NA,8/4/2020,9:27:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:27,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281925,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281925,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-05,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-05,Sample-Routine,WATER,NA,6/23/2020,11:52:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:52,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281740,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281740,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG170605-4938620-0606-29-F,Field Msr/Obs,WATER,NA,6/6/2017,14:18:09,MST,NA,NA,NA,42.003,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.09,6.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-90,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.12,9.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.407,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.27,7.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.216,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3123,Sample-Routine,WATER,NA,8/10/2017,11:15:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001446/2,Quality Control Field Replicate Msr/Obs,WATER,NA,9/7/2005,10:18:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42001446/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 17:18,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.94,11.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.894,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-29-F,Field Msr/Obs,WATER,NA,10/23/2019,15:32:10,MST,NA,NA,NA,42.26,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.53,7.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:32,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_26,Field Msr/Obs,WATER,NA,8/8/2005,10:14:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:14,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_30,Field Msr/Obs,WATER,NA,8/26/2005,11:01:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-29-F,Field Msr/Obs,WATER,NA,8/8/2018,14:46:08,MST,NA,NA,NA,37.78,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.37,5.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:46,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_10,Field Msr/Obs,WATER,NA,7/26/2005,14:09:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:09,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-29-F,Field Msr/Obs,WATER,NA,8/7/2018,17:48:41,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:48,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-2-F,Field Msr/Obs,WATER,NA,6/2/2010,15:45:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 22:45,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-60,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-17,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.39,10.39,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.52,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_19,Field Msr/Obs,WATER,NA,10/18/2005,11:17:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.06,10.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.066,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-20,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-19,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-27,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281702,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281702,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.18,6.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.563,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-80,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_6,Field Msr/Obs,WATER,NA,8/26/2005,11:36:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.332,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001320,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-23-F,Field Msr/Obs,WATER,NA,8/8/2018,14:36:58,MST,NA,NA,NA,16.1,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,"Depth for above thermocline (i.e., sample type 23) not provided with raw data. Depth determined at a later time in the office",NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:36,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-4,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-12,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283610,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283610,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-63,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,18.241,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_8,Field Msr/Obs,WATER,NA,7/27/2005,8:41:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274001,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274001,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:6,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2941,Sample-Routine,WATER,NA,8/14/2018,11:11:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:11,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:8,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_0.2,Field Msr/Obs,WATER,NA,9/7/2005,12:35:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:35,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.173,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-16,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-3,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-22,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_5,Field Msr/Obs,WATER,NA,10/18/2005,10:20:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.307,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-5,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-2-F,Field Msr/Obs,WATER,NA,8/8/2018,13:53:15,MST,NA,NA,NA,1.19,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.18,20.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_16,Field Msr/Obs,WATER,NA,8/3/2005,8:01:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.82,5.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.264,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_13,Field Msr/Obs,WATER,NA,10/7/2005,9:31:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:31,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.007,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.64,15.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.495,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_14,Field Msr/Obs,WATER,NA,7/20/2005,7:52:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2239,Sample-Routine,WATER,NA,7/11/2017,12:02:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 19:02,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.77,16.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Surface,NA,1.171,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.16,16.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.54,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_20,Field Msr/Obs,WATER,NA,7/26/2005,13:55:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:55,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-66,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.927,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.53,12.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,14.007,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-9,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001415,Field Msr/Obs,WATER,NA,8/23/2005,9:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001415,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/23/2005 16:48,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-29-F,Field Msr/Obs,WATER,NA,6/26/2019,17:03:00,MST,NA,NA,NA,36.787,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.81,6.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 0:03,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001441,Field Msr/Obs,WATER,NA,9/7/2005,8:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001441,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:53,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283640,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283640,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.75,5.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.395,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-30,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.59,16.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.488,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.05,12.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741286.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-21,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.11,16.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.762,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.111,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-11,Field Msr/Obs,WATER,NA,8/4/2020,9:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:19,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-09,Field Msr/Obs,WATER,NA,8/4/2020,9:12:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:12,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.67,9.67,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.025,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.54,12.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.492,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.33,6.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.584,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_6,Field Msr/Obs,WATER,NA,9/7/2005,8:55:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-02,Sample-Routine,WATER,NA,6/24/2020,13:26:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:26,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-19,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283440,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283440,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-30,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.76,15.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.086,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003177_02,Field Msr/Obs,WATER,NA,9/12/2012,8:38:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42003177,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2012 15:38,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Surface,NA,1.28,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-4,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-03,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-03,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.09,16.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.685,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.17,7.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.07,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-19,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-25,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.67,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.99,6.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.381,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.81,6.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.787,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_18,Field Msr/Obs,WATER,NA,10/18/2005,10:02:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:02,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-76,Field Msr/Obs,WATER,NA,9/10/2020,10:59:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:59,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001418,Field Msr/Obs,WATER,NA,8/23/2005,14:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001418,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/23/2005 21:29,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.77,11.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.94,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-80,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-45,Field Msr/Obs,WATER,NA,9/10/2020,10:37:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,138,138,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:37,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-60,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.57,7.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.185,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-95,Field Msr/Obs,WATER,NA,9/9/2020,14:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:20,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.35,16.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.061,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287822,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287822,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.32,18.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.337,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.09,8.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Bottom,NA,20.067,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-29-F,Field Msr/Obs,WATER,NA,10/23/2019,16:13:05,MST,NA,NA,NA,36.92,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.07,8.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:13,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-10,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.05,21.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.101,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001528_0.2,Field Msr/Obs,WATER,NA,10/7/2005,10:38:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001528_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 17:38,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-13,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.24,6.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.753,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-60,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.47,22.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.023,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.54,7.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,41.82,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.28,17.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.731,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283414,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283414,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.45,9.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.21,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-40,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-90,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.19,5.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,44.045,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.14,7.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.553,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3604,Sample-Routine,WATER,NA,8/10/2017,11:18:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:18,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3248,Sample-Routine,WATER,NA,8/15/2017,12:28:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:28,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-02,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002971-20,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,10:27:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002971-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 17:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.15,10.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.953,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-26,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.08,9.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Bottom,NA,20.94,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_18,Field Msr/Obs,WATER,NA,8/3/2005,7:58:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:58,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-09,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-09,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.71,7.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.827,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.08,10.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.94,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.47,20.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.256,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.78,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.74,19.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.141,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_12,Field Msr/Obs,WATER,NA,7/20/2005,7:55:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-30,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281901,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281901,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG170605-4938620-0606-02-F,Field Msr/Obs,WATER,NA,6/6/2017,14:08:59,MST,NA,NA,NA,1.382,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.55,18.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.66,13.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.87,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-09,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-09,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.5,13.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283419,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283419,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-23,Field Msr/Obs,WATER,NA,8/4/2020,9:27:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:27,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001429,Field Msr/Obs,WATER,NA,8/26/2005,9:11:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001429,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 16:11,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_20,Field Msr/Obs,WATER,NA,9/19/2005,8:26:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.08,8.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.9,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-41,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.52,18.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.304,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3605,Sample-Routine,WATER,NA,8/10/2017,11:20:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_2,Field Msr/Obs,WATER,NA,10/7/2005,9:46:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.42,18.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.649,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_9,Field Msr/Obs,WATER,NA,9/7/2005,13:13:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-32782005,Field Msr/Obs,WATER,NA,6/22/2005,10:27:00,MST,NA,NA,NA,9,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.57,9.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 17:27,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.77,5.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.845,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.37,6.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.827,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-65,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.88,8.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.373,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.13,14.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.665,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-08,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-08,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42003166_02,Field Msr/Obs,WATER,NA,8/23/2012,11:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42003166,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/23/2012 18:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.93,12.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.245,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-15,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001513_10,Field Msr/Obs,WATER,NA,10/5/2005,12:34:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001513_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 19:34,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-81,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_7,Field Msr/Obs,WATER,NA,8/8/2005,10:41:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:41,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-12,Field Msr/Obs,WATER,NA,8/4/2020,9:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:19,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-01,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-94,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,93.8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-94,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938640-0706-23-F,Field Msr/Obs,WATER,NA,7/6/2016,17:09:02,MST,NA,NA,NA,10.201,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.42,17.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2016 0:09,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.78,19.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.783,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.74,8.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.15,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-70,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938650-0728-2-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,2.03,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.94,20.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.337,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.42,8.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.017,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.46,21.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.506,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-40,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_20,Field Msr/Obs,WATER,NA,10/18/2005,9:59:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:59,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-05,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-09,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-09,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-2,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-16,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.06,15.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.262,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.74,6.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38.605,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.52,17.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.938,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.99,9.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.082,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-23,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-10,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.2,3.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-58,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281711,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281711,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287660,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287660,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.17,9.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.736,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-01,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2945,Sample-Routine,WATER,NA,8/14/2018,11:19:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:19,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-25,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.48,18.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.208,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-72,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.2,20.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.096,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-9,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281708,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281708,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.49,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.62,14.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.87,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-1907094-04,Sample-Routine,WATER,NA,7/30/2019,11:06:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/30/2019,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/30/2019 18:06,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.29,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_50,Field Msr/Obs,WATER,NA,7/20/2005,7:22:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:22,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.98,16.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.588,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-50,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287804,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287804,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.74,9.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,17.554,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.71,8.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.17,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.4,22.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.058,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283421,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283421,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002007_02,Field Msr/Obs,WATER,NA,6/12/2007,10:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002007,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 17:08,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-70,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-1,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-30,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283405,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283405,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-25,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_5,Field Msr/Obs,WATER,NA,8/8/2005,10:44:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-70,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003146_02,Field Msr/Obs,WATER,NA,7/19/2012,16:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42003146,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 23:46,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.18,13.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.385,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-27-F,Field Msr/Obs,WATER,NA,10/10/2012,15:05:06,MST,NA,NA,NA,24.408,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 22:05,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_2,Field Msr/Obs,WATER,NA,8/26/2005,11:41:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:41,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.14,6.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.622,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.93,16.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.721,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-26,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_29,Field Msr/Obs,WATER,NA,10/7/2005,9:08:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:08,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274002,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002036_02,Field Msr/Obs,WATER,NA,7/10/2007,13:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002036,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 20:42,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-9,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.81,18.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.972,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287616,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287616,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-1907094-07,Sample-Routine,WATER,NA,7/30/2019,11:09:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/30/2019,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/30/2019 18:09,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_32,Field Msr/Obs,WATER,NA,10/18/2005,9:41:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.744,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238-30,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Depth Profile Organization ActivityID=YELL_YL006.0M_42001238-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.38,11.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.583,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002839_02,Field Msr/Obs,WATER,NA,9/13/2010,14:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002839,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 21:30,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.14,17.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.936,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-31,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_5,Field Msr/Obs,WATER,NA,10/7/2005,9:42:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.15,16.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.088,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-19,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_27,Field Msr/Obs,WATER,NA,8/26/2005,11:05:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_12,Field Msr/Obs,WATER,NA,9/19/2005,8:37:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:37,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_21,Field Msr/Obs,WATER,NA,10/18/2005,11:14:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:14,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_7,Field Msr/Obs,WATER,NA,9/7/2005,13:16:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.28,20.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.619,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_2,Field Msr/Obs,WATER,NA,7/27/2005,10:47:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.48,10.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.382,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_24,Field Msr/Obs,WATER,NA,8/8/2005,10:17:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.84,19.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.69,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_6,Field Msr/Obs,WATER,NA,8/8/2005,10:43:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:43,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604_02,Field Msr/Obs,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_6,Field Msr/Obs,WATER,NA,8/8/2005,8:56:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287680,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287680,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_33,Field Msr/Obs,WATER,NA,10/18/2005,9:40:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:40,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1748,Sample-Routine,WATER,NA,6/21/2017,11:51:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 18:51,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-3,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_90,Field Msr/Obs,WATER,NA,7/20/2005,7:16:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.852,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002566_02,Field Msr/Obs,WATER,NA,7/15/2009,10:24:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002566,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 17:24,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-13,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.05,10.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.51,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_25,Field Msr/Obs,WATER,NA,10/18/2005,11:08:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:08,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001381,Field Msr/Obs,WATER,NA,8/8/2005,8:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001381,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:48,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002740_02,Field Msr/Obs,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002740,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001250-10,Field Msr/Obs,WATER,NA,6/14/2005,9:09:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42001250-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 16:09,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-30,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.98,16.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-29-F,Field Msr/Obs,WATER,NA,8/5/2010,11:15:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.35,11.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 18:15,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003165_02,Field Msr/Obs,WATER,NA,8/23/2012,10:07:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003165,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/23/2012 17:07,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-27,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-28,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.05,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-3,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3,3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001268-40,Field Msr/Obs,WATER,NA,6/16/2005,12:40:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001268-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2005 19:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-10,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001449,Field Msr/Obs,WATER,NA,9/7/2005,14:36:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001449,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 21:36,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_17,Field Msr/Obs,WATER,NA,8/26/2005,11:20:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-11,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001363,Field Msr/Obs,WATER,NA,7/27/2005,13:14:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001363,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 20:14,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-3,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-20,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002006_02,Field Msr/Obs,WATER,NA,6/12/2007,9:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:46,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-10,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001466,Field Msr/Obs,WATER,NA,9/19/2005,9:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001466,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 16:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287829,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287829,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264885.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.83,7.83,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.266,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997-49,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,49.5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001997-49,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.35,6.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026729.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.48,14.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.641,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-07,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-07,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3252,Sample-Routine,WATER,NA,8/15/2017,12:35:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:35,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-10,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG170605-4938640-0606-23-F,Field Msr/Obs,WATER,NA,6/6/2017,15:07:50,MST,NA,NA,NA,10.716,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.87,10.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:07,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-9,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG170605-4938660-0605-02-F,Field Msr/Obs,WATER,NA,6/5/2017,18:53:46,MST,NA,NA,NA,1.171,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.77,16.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:53,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.12,15.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.644,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.65,16.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.507,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559_02,Field Msr/Obs,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1751,Sample-Routine,WATER,NA,6/21/2017,11:58:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 18:58,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.87,10.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Midwater,NA,10.716,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-29-F,Field Msr/Obs,WATER,NA,10/10/2012,14:25:27,MST,NA,NA,NA,39.256,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.44,6.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:25,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002122_02,Field Msr/Obs,WATER,NA,10/9/2007,14:07:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002122,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 21:07,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-2-F,Field Msr/Obs,WATER,NA,8/5/2010,11:30:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.58,21.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 18:30,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.93,13.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026645.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20,20,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.112,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.34,15.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.864,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901682.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.36,9.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.93,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-2-F,Field Msr/Obs,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,2.009,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-60,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.98,7.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.91,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.07,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.69,10.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.97,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.47,7.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901880.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-25,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.06,7.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.763,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1753,Sample-Routine,WATER,NA,6/21/2017,12:05:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 19:05,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.67,7.67,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.275,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3603,Sample-Routine,WATER,NA,8/10/2017,11:16:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:16,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-60,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-17,Field Msr/Obs,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-23,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.44,6.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.905,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.71,14.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.504,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.07,6.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,49.305,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_21,Field Msr/Obs,WATER,NA,9/7/2005,12:56:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:56,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283617,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283617,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-50,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.18,12.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.787,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.12,13.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.098,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-07,Field Msr/Obs,WATER,NA,8/4/2020,9:12:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:12,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-10,Field Msr/Obs,WATER,NA,9/9/2020,12:11:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:11,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002072_02,Field Msr/Obs,WATER,NA,8/9/2007,11:02:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002072,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 18:02,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.88,5.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265059.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-42,Field Msr/Obs,WATER,NA,9/9/2020,16:15:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:15,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.15,13.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.228,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.55,18.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Surface,NA,1.382,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002624_02,Field Msr/Obs,WATER,NA,9/8/2009,9:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002624,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 16:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.49,10.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.49,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-29-F,Field Msr/Obs,WATER,NA,8/7/2012,11:32:03,MST,NA,NA,NA,40.387,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.33,6.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:32,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.06,8.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.027,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.46,10.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.962,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.38,17.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.83,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.62,7.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.847,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070_02,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,0.02,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002070,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-08,Sample-Routine,WATER,NA,6/24/2020,13:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-06,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-06,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.696,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.79,11.79,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.045,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-51,Field Msr/Obs,WATER,NA,9/10/2020,10:37:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:37,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-6,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-04,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:24,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-67,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.74,20.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.667,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-13,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.35,14.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.077,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-3,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",12.91,12.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-26,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-26,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-48,Field Msr/Obs,WATER,NA,9/10/2020,10:37:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:37,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002089_02,Field Msr/Obs,WATER,NA,9/5/2007,9:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002089,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 16:05,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-115:20120803:SR:WSO,Sample-Routine,WATER,NA,8/3/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-115,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.43,18.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-115,Lake,NA,16010101,NA,NA,NA,NA,41.15233931,-110.8249531,NA,NA,NA,GPS-Unspecified,NAD83,2180.06,m,NA,NA,Digital Elevation Model,NAVD88,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-55,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-03,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-03,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002897-18,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002897-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-5,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-20,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-29-F,Field Msr/Obs,WATER,NA,8/6/2012,20:05:27,MST,NA,NA,NA,18.241,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:05,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-11,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283623,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283623,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.78,20.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.113,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-25,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-11,Sample-Routine,WATER,NA,8/5/2020,10:40:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:40,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.218,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1562:1:070611:2,Field Msr/Obs,WATER,NA,6/11/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1562,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sixtyseven Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040101003375"";COM_ID=""18347649"";STATUS_VER=""Target_Sampled"";NHDNAME=""Sixty-Seven Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1155568.42971"";ALBERS_Y=""657586.507398"";FLD_LON_DD=""-110.21049"";FLD_LAT_DD=""42.59522"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040101,NA,NA,NA,NA,42.59773028,-110.2208282,NA,NA,NA,GPS-Unspecified,WGS84,2153.13,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-75,Field Msr/Obs,WATER,NA,9/10/2020,10:59:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:59,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2245,Sample-Routine,WATER,NA,7/11/2017,12:17:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 19:17,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.24,9.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.919,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-02,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-77,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-27,Field Msr/Obs,WATER,NA,8/4/2020,9:27:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:27,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.17,16.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.64,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-28,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-02,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283615,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283615,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-20,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-21,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-98,Field Msr/Obs,WATER,NA,9/9/2020,14:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:20,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-15,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-21,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,4.65,4.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,46.284,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.23,21.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.167,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-01,Sample-Routine,WATER,NA,8/5/2020,10:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,21,21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:36,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-2,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-16,Field Msr/Obs,WATER,NA,8/18/2020,11:14:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:14,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-10,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.44,20.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.113,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-8,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.71,19.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.429,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-30,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-20,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.28,16.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.496,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002882_02,Field Msr/Obs,WATER,NA,10/13/2010,14:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002882,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 21:16,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003112_02,Field Msr/Obs,WATER,NA,6/12/2012,9:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Organization ActivityID=YELL_YL002.0M_42003112,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:55,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.47,11.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.853,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.94,11.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.2,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.51,5.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.351,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.31,18.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.174,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-29-F,Field Msr/Obs,WATER,NA,8/8/2018,14:01:21,MST,NA,NA,NA,44.05,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.19,5.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:01,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.56,10.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.961,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-60,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.03,20.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.05,10.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.595,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.57,5.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.824,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-49,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2200,Sample-Routine,WATER,NA,7/17/2018,11:17:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:17,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-19,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.74,7.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.496,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.28,5.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.862,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003199_02,Field Msr/Obs,WATER,NA,10/10/2012,10:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003199,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 17:32,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.63,12.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.028,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-10,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.62,5.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.236,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.49,14.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.063,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2936,Sample-Routine,WATER,NA,8/14/2018,10:57:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.2,20.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 17:57,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-15,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-1,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002543/3_02,Quality Control Field Replicate Msr/Obs,WATER,NA,6/23/2009,13:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002543/3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 20:25,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003144_02,Field Msr/Obs,WATER,NA,7/19/2012,15:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Organization ActivityID=YELL_YL002.0M_42003144,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 22:55,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002743_02,Field Msr/Obs,WATER,NA,6/15/2010,12:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002743,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 19:50,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-33,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.2,7.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.092,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.67,18.67,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.432,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.9,20.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.061,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.84,5.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.682,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.77,15.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.456,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-22,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.39,11.39,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.24,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,34.741,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2193,Sample-Routine,WATER,NA,7/17/2018,11:10:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.7,20.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:10,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.6,21.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.238,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.66,18.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.56,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-7,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.444,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3610,Sample-Routine,WATER,NA,8/10/2017,11:31:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/10/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/10/2017 18:31,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-58,Field Msr/Obs,WATER,NA,8/4/2020,15:30:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:30,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-24,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.33,5.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.78,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-73,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.12,7.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.7,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-81,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-95,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-03,Field Msr/Obs,WATER,NA,9/9/2020,12:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:05,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-50,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-24,Field Msr/Obs,WATER,NA,8/4/2020,9:27:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:27,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-22,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:9,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-24,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.85,16.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.623,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.838,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-19,Sample-Routine,WATER,NA,8/5/2020,10:48:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:48,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-80,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002626_02,Field Msr/Obs,WATER,NA,9/8/2009,15:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002626,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 22:06,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938620-0924-29-F,Field Msr/Obs,WATER,NA,9/24/2013,10:05:00,MST,NA,NA,NA,37.934,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,Dissolved oxygen readings verified from trip sheet and/or raw file but no calibration record available.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:05,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2202,Sample-Routine,WATER,NA,7/17/2018,11:22:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:22,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287810,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287810,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281701,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281701,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.32,21.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.879,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-2,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-02,Field Msr/Obs,WATER,NA,9/9/2020,12:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:05,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.42,6.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.669,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:20,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287807,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287807,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-32,Field Msr/Obs,WATER,NA,8/4/2020,13:02:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC006,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 20:02,NA,Colter South Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90044,-110.6445,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.42,5.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.607,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-15,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.08,19.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.497,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.93,5.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.511,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281717,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281717,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.77,14.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.962,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281907,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281907,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-91,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,91,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-91,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287606,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287606,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1713,Sample-Routine,WATER,NA,6/19/2018,13:54:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:54,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.17,9.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.097,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2194,Sample-Routine,WATER,NA,7/17/2018,11:36:00,MST,NA,NA,NA,30.1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:36,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-23,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-2-F,Field Msr/Obs,WATER,NA,8/4/2010,16:51:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 23:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002738_02,Field Msr/Obs,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002738,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-59,Field Msr/Obs,WATER,NA,8/4/2020,15:30:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:30,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-10,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_24,Field Msr/Obs,WATER,NA,7/26/2005,13:49:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 20:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-16,Sample-Routine,WATER,NA,8/5/2020,10:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.524,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002560_02,Field Msr/Obs,WATER,NA,7/15/2009,9:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002560,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 16:29,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003179_02,Field Msr/Obs,WATER,NA,9/12/2012,9:34:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Organization ActivityID=YELL_YL002.0M_42003179,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2012 16:34,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_4,Field Msr/Obs,WATER,NA,8/8/2005,8:59:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:59,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003309_02,Field Msr/Obs,WATER,NA,9/9/2013,14:33:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Organization ActivityID=YELL_YL001.0M_42003309,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 21:33,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.06,19.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.895,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6,6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.243,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273860,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200273860,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-61,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-40,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.19,5.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,43.5,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.41,18.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.876,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.34,7.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.494,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1714,Sample-Routine,WATER,NA,6/19/2018,13:56:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:56,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003004_02,Field Msr/Obs,WATER,NA,8/17/2011,15:09:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42003004,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 22:09,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1710,Sample-Routine,WATER,NA,6/19/2018,13:48:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:48,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-2-F,Field Msr/Obs,WATER,NA,8/7/2018,18:08:39,MST,NA,NA,NA,1.4,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-11,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-64,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.724,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002772_02,Field Msr/Obs,WATER,NA,7/12/2010,10:38:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002772,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2010 17:38,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-13,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-11,Field Msr/Obs,WATER,NA,9/9/2020,12:11:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:11,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002881_02,Field Msr/Obs,WATER,NA,10/13/2010,14:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002881,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 21:03,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-90,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2199,Sample-Routine,WATER,NA,7/17/2018,11:15:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-6,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.18,6.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.617,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.37,12.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.13,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.46,19.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.769,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.64,8.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.916,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-43,Field Msr/Obs,WATER,NA,9/9/2020,16:15:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:15,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_60,Field Msr/Obs,WATER,NA,10/5/2005,10:33:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:33,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281903,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281903,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281904,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281904,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.07,15.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.648,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-2-F,Field Msr/Obs,WATER,NA,8/5/2010,11:15:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.53,21.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 18:15,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.35,19.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.728,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-80,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:0.91,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,0.91,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.5,23.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287802,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287802,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.91,8.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.719,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:7,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_80,Field Msr/Obs,WATER,NA,10/18/2005,9:33:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:33,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.46,18.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_29,Field Msr/Obs,WATER,NA,8/8/2005,8:23:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:23,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-15,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-10,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2.5,2.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-29,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_14,Field Msr/Obs,WATER,NA,9/7/2005,8:43:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:43,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-34002007,Field Msr/Obs,WATER,NA,6/22/2007,12:24:00,MST,NA,NA,NA,0,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21.16,21.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 19:24,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-12,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_29,Field Msr/Obs,WATER,NA,9/19/2005,8:13:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:13,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938665-0814-2-F,Quality Control Field Replicate Msr/Obs,WATER,NA,8/14/2019,NA,NA,NA,NA,NA,2.19,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938665,QAQC Replicate of 4938640,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.4,21.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD Replicate of 4938640,Lake,Replicate of 4938640,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_32,Field Msr/Obs,WATER,NA,8/8/2005,10:05:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.38,7.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-80,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_2,Field Msr/Obs,WATER,NA,8/8/2005,10:48:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:48,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-27,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_2,Field Msr/Obs,WATER,NA,7/26/2005,14:20:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_3,Field Msr/Obs,WATER,NA,9/7/2005,13:22:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:22,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001513_0.2,Field Msr/Obs,WATER,NA,10/5/2005,12:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001513_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 19:32,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-29,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_1,Field Msr/Obs,WATER,NA,8/8/2005,9:03:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 16:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283428,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283428,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_9,Field Msr/Obs,WATER,NA,7/27/2005,10:37:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:37,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_30,Field Msr/Obs,WATER,NA,9/7/2005,12:43:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:43,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_3,Field Msr/Obs,WATER,NA,7/26/2005,14:19:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_48,Field Msr/Obs,WATER,NA,10/7/2005,8:59:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_48,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 15:59,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_23,Field Msr/Obs,WATER,NA,10/7/2005,9:16:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_11,Field Msr/Obs,WATER,NA,10/18/2005,11:29:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:29,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_10,Field Msr/Obs,WATER,NA,10/7/2005,9:35:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:35,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001234-40,Field Msr/Obs,WATER,NA,6/3/2005,10:19:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001234-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 17:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-15,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_6,Field Msr/Obs,WATER,NA,10/18/2005,11:36:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:36,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_22,Field Msr/Obs,WATER,NA,7/20/2005,7:41:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.28,15.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730603.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_5,Field Msr/Obs,WATER,NA,8/3/2005,8:16:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_4,Field Msr/Obs,WATER,NA,8/3/2005,8:18:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_40,Field Msr/Obs,WATER,NA,8/26/2005,10:55:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 17:55,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_30,Field Msr/Obs,WATER,NA,8/8/2005,10:08:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:08,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_70,Field Msr/Obs,WATER,NA,10/18/2005,9:34:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 16:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_9,Field Msr/Obs,WATER,NA,8/8/2005,8:52:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_2,Field Msr/Obs,WATER,NA,8/3/2005,8:21:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:21,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_15,Field Msr/Obs,WATER,NA,8/8/2005,10:30:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:30,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_8,Field Msr/Obs,WATER,NA,7/27/2005,10:39:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:39,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-30,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_70,Field Msr/Obs,WATER,NA,7/27/2005,7:59:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 14:59,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_27,Field Msr/Obs,WATER,NA,9/7/2005,12:47:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-6,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-40,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_20,Field Msr/Obs,WATER,NA,7/27/2005,10:21:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:21,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_3,Field Msr/Obs,WATER,NA,10/18/2005,11:40:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_80,Field Msr/Obs,WATER,NA,7/20/2005,7:18:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-10,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.99,16.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730417.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_7,Field Msr/Obs,WATER,NA,8/3/2005,8:13:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:13,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_19,Field Msr/Obs,WATER,NA,9/7/2005,12:59:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:59,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.89,7.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901838.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-11,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_92.6,Field Msr/Obs,WATER,NA,8/3/2005,7:26:00,MST,NA,NA,NA,92.6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_92.6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_20,Field Msr/Obs,WATER,NA,8/8/2005,8:36:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_19,Field Msr/Obs,WATER,NA,8/26/2005,11:17:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:17,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-5,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-20,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:17,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_33,Field Msr/Obs,WATER,NA,10/7/2005,9:02:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:02,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-27,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_5,Field Msr/Obs,WATER,NA,9/7/2005,13:19:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:19,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_3,Field Msr/Obs,WATER,NA,9/19/2005,8:50:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:50,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-8,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-33,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-30,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.3,3.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001251,Field Msr/Obs,WATER,NA,6/14/2005,13:41:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001251,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/14/2005 20:41,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-1,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_70,Field Msr/Obs,WATER,NA,9/7/2005,8:10:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:10,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:19,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_17,Field Msr/Obs,WATER,NA,7/20/2005,7:48:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:48,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.09,7.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.612,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_25,Field Msr/Obs,WATER,NA,10/5/2005,10:44:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:44,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001268-5,Field Msr/Obs,WATER,NA,6/16/2005,12:40:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42001268-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/16/2005 19:40,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001238-20,Field Msr/Obs,WATER,NA,6/3/2005,12:47:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Depth Profile Organization ActivityID=YELL_YL006.0M_42001238-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/3/2005 19:47,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287621,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287621,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-24,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001344_27,Field Msr/Obs,WATER,NA,7/20/2005,7:34:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001344_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/20/2005 14:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:8,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_2,Field Msr/Obs,WATER,NA,10/18/2005,11:41:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:41,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-31,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_27,Field Msr/Obs,WATER,NA,7/27/2005,8:14:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001242-50,Field Msr/Obs,WATER,NA,6/7/2005,9:09:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001242-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/7/2005 16:09,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_0.2,Field Msr/Obs,WATER,NA,10/18/2005,10:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_0.2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:53,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_32,Field Msr/Obs,WATER,NA,8/8/2005,8:18:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:18,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:12,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.36,8.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-6,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_4,Field Msr/Obs,WATER,NA,10/7/2005,9:44:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281914,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281914,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_1,Field Msr/Obs,WATER,NA,8/8/2005,10:50:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_12,Field Msr/Obs,WATER,NA,9/7/2005,13:09:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:09,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-40,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.3,3.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_60,Field Msr/Obs,WATER,NA,8/3/2005,7:32:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-6,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_29,Field Msr/Obs,WATER,NA,10/18/2005,11:03:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_14,Field Msr/Obs,WATER,NA,9/7/2005,13:06:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 20:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:16,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.68,7.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.52,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001356_26,Field Msr/Obs,WATER,NA,7/27/2005,8:15:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001356_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 15:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_31,Field Msr/Obs,WATER,NA,9/19/2005,8:10:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_31,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:10,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_26,Field Msr/Obs,WATER,NA,9/19/2005,8:17:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:17,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001543/1,Quality Control Field Replicate Msr/Obs,WATER,NA,10/18/2005,11:59:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42001543/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:59,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001518/2,Quality Control Field Replicate Msr/Obs,WATER,NA,10/5/2005,13:32:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Replicate Organization ActivityID=YELL_YL005.0M_42001518/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 20:32,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-25,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:0,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_6,Field Msr/Obs,WATER,NA,7/27/2005,10:42:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:42,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001444/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/7/2005,10:18:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42001444/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 17:18,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_60,Field Msr/Obs,WATER,NA,7/27/2005,10:03:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:03,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-8,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-40,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-25,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-7,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_12,Field Msr/Obs,WATER,NA,10/18/2005,11:27:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_1,Field Msr/Obs,WATER,NA,8/26/2005,11:43:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:43,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_22,Field Msr/Obs,WATER,NA,9/19/2005,8:23:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:23,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_32,Field Msr/Obs,WATER,NA,10/7/2005,9:03:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:03,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001384,Field Msr/Obs,WATER,NA,8/8/2005,12:58:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001384,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 19:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_7,Field Msr/Obs,WATER,NA,8/26/2005,11:34:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-4,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_22,Field Msr/Obs,WATER,NA,8/26/2005,11:13:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_11,Field Msr/Obs,WATER,NA,10/7/2005,9:34:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-40,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001357_50,Field Msr/Obs,WATER,NA,7/27/2005,10:04:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42001357_50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 17:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-32802005,Field Msr/Obs,WATER,NA,6/22/2005,10:27:00,MST,NA,NA,NA,29.4,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.68,5.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 17:27,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001538_14,Field Msr/Obs,WATER,NA,10/18/2005,10:07:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001538_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:07,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213_01,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001213,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.3,3.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001355_15,Field Msr/Obs,WATER,NA,7/26/2005,14:02:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001355_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/26/2005 21:02,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001252,Field Msr/Obs,WATER,NA,6/14/2005,14:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001252,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/14/2005 21:05,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001360/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/27/2005,12:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Split Organization ActivityID=YELL_YL001.0M_42001360/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/27/2005 19:42,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_60,Field Msr/Obs,WATER,NA,9/19/2005,8:03:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-25,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-26,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_25,Field Msr/Obs,WATER,NA,8/26/2005,11:08:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:08,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001303-5,Field Msr/Obs,WATER,NA,6/30/2005,7:47:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001303-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/30/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_26,Field Msr/Obs,WATER,NA,8/8/2005,8:27:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-80,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_5,Field Msr/Obs,WATER,NA,9/7/2005,8:56:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_16,Field Msr/Obs,WATER,NA,8/8/2005,10:28:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-40,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_28,Field Msr/Obs,WATER,NA,8/8/2005,8:24:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:3,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001519_29,Field Msr/Obs,WATER,NA,10/5/2005,10:38:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001519_29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/5/2005 17:38,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.76,6.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.153,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001431_23,Field Msr/Obs,WATER,NA,8/26/2005,11:11:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001431_23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/26/2005 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001527_15,Field Msr/Obs,WATER,NA,10/7/2005,9:28:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001527_15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/7/2005 16:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001539,Field Msr/Obs,WATER,NA,10/18/2005,10:10:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001539,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 17:10,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001440_26,Field Msr/Obs,WATER,NA,9/7/2005,8:26:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001440_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001256-2,Field Msr/Obs,WATER,NA,6/14/2005,14:23:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42001256-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 21:23,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283608,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283608,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:9.15,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,9.15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.5,22.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:20,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001464_27,Field Msr/Obs,WATER,NA,9/19/2005,8:16:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001464_27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/19/2005 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001380_16,Field Msr/Obs,WATER,NA,8/8/2005,8:42:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001380_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 15:42,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.87,13.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730471.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_26,Field Msr/Obs,WATER,NA,8/3/2005,7:46:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-50,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001213-70,Field Msr/Obs,WATER,NA,5/26/2005,8:34:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001213-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/26/2005 15:34,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001321,Field Msr/Obs,WATER,NA,7/12/2005,9:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001321,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/12/2005 16:05,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001320-18,Field Msr/Obs,WATER,NA,7/12/2005,8:06:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001320-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2005 15:06,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_13,Field Msr/Obs,WATER,NA,8/3/2005,8:05:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 15:05,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001447_40,Field Msr/Obs,WATER,NA,9/7/2005,12:37:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001447_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/7/2005 19:37,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_33,Field Msr/Obs,WATER,NA,8/3/2005,7:36:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001382_47,Field Msr/Obs,WATER,NA,8/8/2005,10:01:00,MST,NA,NA,NA,47,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001382_47,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/8/2005 17:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001249-30,Field Msr/Obs,WATER,NA,6/14/2005,8:08:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001249-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/14/2005 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001379_22,Field Msr/Obs,WATER,NA,8/3/2005,7:52:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001379_22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/3/2005 14:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001312-5,Field Msr/Obs,WATER,NA,7/7/2005,8:32:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001312-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2005 15:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-49,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-49,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001540_17,Field Msr/Obs,WATER,NA,10/18/2005,11:20:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001540_17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/18/2005 18:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:1:070626:7.2,Field Msr/Obs,WATER,NA,6/26/2007,NA,NA,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001280-9,Field Msr/Obs,WATER,NA,6/22/2005,7:47:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42001280-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2005 14:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20160801101102^01,Field Msr/Obs,WATER,NA,8/1/2016,10:11:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,No set because of nearby loons Orig ID=0801161011 Organization ActivityID=YELL_YSL_221_20160801101102,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 17:11,NA,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.66,9.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.536,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.02,9.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.625,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.54,7.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265011.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001805_01,Field Msr/Obs,WATER,NA,8/9/2006,16:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42001805,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/9/2006 23:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001801_01,Field Msr/Obs,WATER,NA,8/9/2006,11:53:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/9/2006 18:53,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.18,13.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741406.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.19,5.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.98,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001759/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/10/2006,13:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Split Organization ActivityID=YELL_YL002.0M_42001759/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/10/2006 20:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.91,6.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.063,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.403,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.52,15.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.123,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973_02,Field Msr/Obs,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002973,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42001837_01,Field Msr/Obs,WATER,NA,9/8/2006,8:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42001837,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/8/2006 15:50,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.17,6.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901646.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-23,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.66,9.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.811,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-40,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001766/1,Quality Control Field Replicate Msr/Obs,WATER,NA,7/11/2006,10:22:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42001766/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/11/2006 17:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938640-0924-23-F,Field Msr/Obs,WATER,NA,9/24/2013,10:40:00,MST,NA,NA,NA,13.684,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.96,16.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:40,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.96,14.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.209,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001839_01,Field Msr/Obs,WATER,NA,9/8/2006,9:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001839,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/8/2006 16:30,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42001764_01,Field Msr/Obs,WATER,NA,7/11/2006,9:22:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42001764,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/11/2006 16:22,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283425,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283425,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.279,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281948,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281948,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.1,12.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.031,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-4,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001877/1,Quality Control Field Replicate Msr/Obs,WATER,NA,10/6/2006,12:12:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Split Organization ActivityID=YELL_YL003.0M_42001877/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39218,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/6/2006 19:12,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2027:1:070620:2,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2027,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,McFarlane Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180011001217"";COM_ID=""17481797"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-788186.11527"";ALBERS_Y=""570916.985185"";FLD_LON_DD=""-105.62971"";FLD_LAT_DD=""42.24008"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180011,NA,NA,NA,NA,42.23979744,-105.6303731,NA,NA,NA,GPS-Unspecified,WGS84,2339.29,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-18,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-4,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.65,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.27,13.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.503,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-4,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.44,10.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.394,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.64,9.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.41,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-45452008,Field Msr/Obs,WATER,NA,5/13/2008,15:00:00,MST,NA,NA,NA,39.303,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.65,5.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 22:00,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.31,7.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.658,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-4,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001752_01,Field Msr/Obs,WATER,NA,6/16/2006,10:02:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001752,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,6/16/2006 17:02,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-50,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.05,7.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-2-F,Field Msr/Obs,WATER,NA,10/22/2019,16:35:32,MST,NA,NA,NA,1.34,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-80,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42001798/1_01,Quality Control Field Replicate Msr/Obs,WATER,NA,8/9/2006,10:59:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Split Organization ActivityID=YELL_YL004.0M_42001798/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,8/9/2006 17:59,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-13,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.23,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-23-F,Field Msr/Obs,WATER,NA,6/26/2019,17:00:00,MST,NA,NA,NA,14.014,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.62,15.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 0:00,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001879/2,Quality Control Field Replicate Msr/Obs,WATER,NA,10/6/2006,12:12:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Replicate Organization ActivityID=YELL_YL003.0M_42001879/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39218,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/6/2006 19:12,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.43,17.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.782,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.73,6.73,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.683,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273820,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273820,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001758,Field Msr/Obs,WATER,NA,7/10/2006,13:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001758,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/10/2006 20:20,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.13,12.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.123,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-1,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.66,12.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.096,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.306,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283624,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283624,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.65,15.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.458,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.85,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-4,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283406,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283406,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-21,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002292_02,Field Msr/Obs,WATER,NA,8/5/2008,15:31:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002292,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 22:31,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-70,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-90,Field Msr/Obs,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287812,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287812,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001765_01,Field Msr/Obs,WATER,NA,7/11/2006,10:22:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001765,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,7/11/2006 17:22,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.5,21.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.557,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001845_01,Field Msr/Obs,WATER,NA,9/8/2006,13:02:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001845,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39251,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,9/8/2006 20:02,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.17,12.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.152,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-60,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.61,19.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.862,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.28,21.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.869,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.51,16.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.72,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:6,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.79,7.79,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.07,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001885_01,Field Msr/Obs,WATER,NA,10/10/2006,9:51:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42001885,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,Instrument Code 39218,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,Method Detection Level,-5,-5,Numeric,DEG C,NA,STORET,10/10/2006 16:51,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.07,15.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.698,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-3,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-20,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.71,5.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-4,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-50,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287820,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287820,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.65,21.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.508,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.92,15.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.75,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.1,21.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.002,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.62,19.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.085,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-22,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.4,21.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.19,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_43002035-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_43002035-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-27,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.12,10.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.51,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-6,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-71,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,71,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-71,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-29,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283415,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283415,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-2-F,Field Msr/Obs,WATER,NA,10/14/2010,8:19:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.43,14.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 15:19,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-33972007,Field Msr/Obs,WATER,NA,6/22/2007,11:03:00,MST,NA,NA,NA,24.2,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.94,7.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 18:03,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-5,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.75,12.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.086,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.61,16.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.322,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-15,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-12,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002031_02,Field Msr/Obs,WATER,NA,7/10/2007,8:34:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002031,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 15:34,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-18,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-25,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-21,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-30,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.21,7.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.23,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:18,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.2,3.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-25,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-24,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002032_02,Field Msr/Obs,WATER,NA,7/10/2007,8:48:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002032,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 15:48,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-12,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-6,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-33,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-40,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287828,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287828,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",8.62,8.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938680-0604-2-F,Field Msr/Obs,WATER,NA,6/4/2013,19:40:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,No associated lake profile due to equipment issue. No secchi reading due to broken equipment.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/5/2013 2:40,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-9,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.77,14.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.71,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-91,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,91,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-91,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-90,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-9,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010871,Field Msr/Obs,WATER,NA,9/7/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-8,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997-5,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001997-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.45,12.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.633,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287622,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287622,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.25,7.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.793,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-1,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.45,9.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.344,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-10,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002774_02,Field Msr/Obs,WATER,NA,7/12/2010,14:00:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002774,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2010 21:00,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-3,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42003308_02,Field Msr/Obs,WATER,NA,9/9/2013,13:37:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42003308,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 20:37,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-23,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010738,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10118,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.40169,-105.8285,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2181,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287612,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287612,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-19,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002876_02,Field Msr/Obs,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002876,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-10,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287814,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287814,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-6,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.92,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.93,12.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026663.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002837_02,Field Msr/Obs,WATER,NA,9/13/2010,13:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002837,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 20:25,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287817,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287817,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.66,11.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.95,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-7,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-40,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.53,7.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.85,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-18,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.86,13.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.19,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-09,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-09,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.08,11.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.909,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-5,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-9,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-2,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-25,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288_02,Field Msr/Obs,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003285_02,Field Msr/Obs,WATER,NA,7/17/2013,8:54:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42003285,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 15:54,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.42,21.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.767,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-18,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.82,21.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.676,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002840_02,Field Msr/Obs,WATER,NA,9/13/2010,14:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002840,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 21:42,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.32,21.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.047,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-10,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.73,7.73,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.285,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-23,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-25,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-15,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-12,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-14,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.361,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287823,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287823,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.71,15.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.243,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.4,21.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.598,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010776,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10107,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Coe Enlargement Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080014,NA,NA,NA,NA,44.28174,-109.1102,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2034,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-44202007,Field Msr/Obs,WATER,NA,8/28/2007,12:54:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2007 19:54,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-20,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002578_02,Field Msr/Obs,WATER,NA,7/20/2009,15:50:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42002578,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 22:50,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-93,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,93,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-93,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.88,20.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.873,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938680-0728-23-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,9.06,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938640-0924-29-F,Field Msr/Obs,WATER,NA,9/24/2013,10:50:00,MST,NA,NA,NA,31.26,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,Dissolved oxygen readings verified from trip sheet and/or raw file but no calibration record available.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:50,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071_02,Field Msr/Obs,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002071,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-4,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-90,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-70,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:12.8,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,12.8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.72222222,18.72222222,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:6,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.87,6.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.468,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.01,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283422,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283422,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-14,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287617,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287617,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.62,15.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.014,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-22,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209907-33982007,Field Msr/Obs,WATER,NA,6/22/2007,11:57:00,MST,NA,NA,NA,0.1,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.43,19.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 18:57,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-20,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.067,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-33922007,Field Msr/Obs,WATER,NA,6/22/2007,10:18:00,MST,NA,NA,NA,0.2,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.48,17.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 17:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.28,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Bottom,NA,16.35,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287614,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287614,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.55,14.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.796,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-21,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.26,7.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.94,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.9,22.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.117,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-30,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-29-F,Field Msr/Obs,WATER,NA,8/13/2019,19:42:00,MST,NA,NA,NA,16.839,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.38,11.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:42,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-33,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274005,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274005,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42001998_02,Field Msr/Obs,WATER,NA,5/17/2007,13:08:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42001998,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 20:08,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.58,10.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.727,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-20,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287628,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287628,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010778,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10078,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Kemmerer Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040107,NA,NA,NA,NA,41.94495,-110.6569,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2179,m,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.24,6.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,43.644,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283614,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283614,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-48,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,48,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-48,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281725,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200281725,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-15,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-1,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-26,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-33,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997-10,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001997-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997-1,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001997-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.14,12.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.488,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997-20,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001997-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938620-0924-2-F,Field Msr/Obs,WATER,NA,9/24/2013,9:50:00,MST,NA,NA,NA,1.904,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.11,17.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 16:50,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283410,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283410,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-50,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-90,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-16,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-29-F,Field Msr/Obs,WATER,NA,10/22/2019,16:36:58,MST,NA,NA,NA,16.35,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:36,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.09,14.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.89,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42001997-40,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,11:23:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42001997-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 18:23,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002971-05,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,10:27:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002971-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 17:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283418,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283418,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.184,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121_02,Field Msr/Obs,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002121,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:2,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-5,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-24,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.01,7.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.163,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901886.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.42,15.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746534.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.07,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-60,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.7,3.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-34012007,Field Msr/Obs,WATER,NA,6/22/2007,12:24:00,MST,NA,NA,NA,14.5,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.33,11.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 19:24,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287627,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287627,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281716,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281716,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.13,10.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.9,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-27,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287803,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-40122007,Field Msr/Obs,WATER,NA,8/30/2007,10:07:00,MST,NA,NA,NA,23,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/30/2007 17:07,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-25,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283625,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283625,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.39,7.39,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.508,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-60,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.073,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.75,11.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.04,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.021,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.91,7.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.92,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-115:20120803:SR:WSO,Sample-Routine,WATER,NA,8/3/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-115,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.29,19.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-115,Lake,NA,16010101,NA,NA,NA,NA,41.15233931,-110.8249531,NA,NA,NA,GPS-Unspecified,NAD83,2180.06,m,NA,NA,Digital Elevation Model,NAVD88,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:13,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.95,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.96,7.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.16,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002771_02,Field Msr/Obs,WATER,NA,7/12/2010,10:10:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002771,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2010 17:10,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.08,5.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901472.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.24,11.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.189,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:12.5,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,12.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.39,10.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264903.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.38,8.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011320,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10106,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Twin Buttes Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.23809,-105.8616,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2209,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.89,5.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.812,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,11.71,11.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.76,19.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741250.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.26,8.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901412.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.92,10.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.56,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.39,8.39,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.059,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.9,11.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.008,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.99,22.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.013,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287630,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287630,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.42,8.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.92,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.6,8.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.97,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:18,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.98,4.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010806,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10130,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Banner Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180004,NA,NA,NA,NA,41.41529,-106.3582,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3027,m,NA,NA,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-60,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.93,14.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.706,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.13,4.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.68,5.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265065.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.85,8.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.013,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.49,21.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.2,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:36,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,36,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.78,4.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.116,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730807.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:12,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.98,6.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265041.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.27,9.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.467,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.16,8.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.38,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002121-50,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,13:26:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002121-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 20:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:13,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.09,17.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_2_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.66,11.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-101:20120913:SR:WSO,Sample-Routine,WATER,NA,9/13/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.84,14.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-101,Lake,NA,10070006,NA,NA,NA,NA,44.78618159,-109.2581674,NA,NA,NA,GPS-Unspecified,NAD83,1468,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:6,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:1:070626:7,Field Msr/Obs,WATER,NA,6/26/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002603/2,Quality Control Field Replicate Msr/Obs,WATER,NA,8/12/2009,NA,NA,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Replicate Organization ActivityID=YELL_YL006.0M_42002603/2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.63,16.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.596,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.72,5.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,47.069,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-2-F,Field Msr/Obs,WATER,NA,10/22/2019,15:52:11,MST,NA,NA,NA,1.26,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.36,9.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:52,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.18,6.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.07,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.7,5.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39.54,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283431,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,31,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283431,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.08,11.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.87,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-20,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.05,11.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.081,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.87,7.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.049,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.14,15.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.154,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2,2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,49.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.67,6.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901508.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.45,18.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-07,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-07,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.87,14.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.02,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.02,10.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.39,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.244,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.26,6.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901742.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.36,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.78,6.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,41.957,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-2-F,Field Msr/Obs,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-115:20120803:SR:WSO,Sample-Routine,WATER,NA,8/3/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-115,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.23,19.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-115,Lake,NA,16010101,NA,NA,NA,NA,41.15233931,-110.8249531,NA,NA,NA,GPS-Unspecified,NAD83,2180.06,m,NA,NA,Digital Elevation Model,NAVD88,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:4,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.48,7.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901868.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_8.3_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,8.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.33,8.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2714:1:070811:1,Field Msr/Obs,WATER,NA,8/11/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2714,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.7,23.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,L A K Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10120107001602"";COM_ID=""9386655"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-648913.03642"";ALBERS_Y=""736030.523488"";FLD_LON_DD=""-104.10971"";FLD_LAT_DD=""43.82538"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(20,50]""",10120107,NA,NA,NA,NA,43.82780189,-104.1093535,NA,NA,NA,GPS-Unspecified,WGS84,1333,m,NA,NA,Other,NGVD29,US,56,45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-40,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.97,10.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.207,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-23,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938640-0728-29-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,37.11,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.62,6.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010823,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10042,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.27144,-109.4346,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2061,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-22,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_02,Field Msr/Obs,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002037,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.16,4.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051809-4938640-0519-29-F,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,33,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.1,6.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:9,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.44,7.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901892.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.86,20.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.013,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283607,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283607,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.79,9.79,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.986,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:2,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:28,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.68,11.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.195,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.26,7.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265023.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.76,16.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.683,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-4,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-137:20120914:SR:WSO,Sample-Routine,WATER,NA,9/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-137,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.36,15.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-137,Lake,NA,10070006,NA,NA,NA,NA,44.78132376,-109.2547289,NA,NA,NA,GPS-Unspecified,NAD83,1473.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.36,11.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.634,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:10,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.8,20.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.012,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.74,9.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.46,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010779,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10119,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Mahoney Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080004,NA,NA,NA,NA,42.91854,-107.7356,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1768,m,NA,NA,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-06,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-06,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901634.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:36,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,36,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.71,20.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.511,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.17,17.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.531,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.51,9.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.307,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010871,Field Msr/Obs,WATER,NA,9/7/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R04:20120814:SR:WSO,Sample-Routine,WATER,NA,8/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R04,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R04,Lake,NA,10070001,NA,NA,NA,NA,44.49478161,-110.4302646,NA,NA,NA,GPS-Unspecified,NAD83,2394.04,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.01,7.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.96,7.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.31,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:44,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,44,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.63,10.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264897.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,1.4,1.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.34,6.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901604.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.46,20.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.067,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.56,11.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.22,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.58,8.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.88,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.18,7.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.39,7.39,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.02,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.15,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.37,10.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.004,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.77,8.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.39,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:33.5,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,33.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:12,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901502.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.71,5.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901562.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002062_02,Field Msr/Obs,WATER,NA,8/8/2007,8:51:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002062,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2007 15:51,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:22,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.59,7.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265005.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.16,8.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.58,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.24,9.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.11,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.96,10.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.379,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_0.1_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.11,21.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.63,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.66,17.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.14,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.07,5.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901478.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.4,16.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.81,17.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.9,19.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42001996_02,Field Msr/Obs,WATER,NA,5/17/2007,10:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42001996,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.5,3.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 17:15,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938680-0728-29-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.81,9.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.07,15.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746552.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051809-4938620-0519-29-F,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,39,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.68,5.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938620-0728-27-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,20.47,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.27,9.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:40,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,40,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:30,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010738,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10118,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.40169,-105.8285,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2181,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:12,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-09,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-09,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39.72,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002125_02,Field Msr/Obs,WATER,NA,10/9/2007,16:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002125,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 23:30,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",11.76,11.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.69,5.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.59,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.24,9.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.378,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-70,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.86,4.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.39,10.39,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.15,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.87,8.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264957.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.26,7.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901712.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2.6,2.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.67,10.67,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.855,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.06,17.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.3,6.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.973,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-23-F,Field Msr/Obs,WATER,NA,10/23/2019,16:12:16,MST,NA,NA,NA,26.58,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.46,9.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:12,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901514.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.33,8.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.31,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.16,11.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.143,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.14,13.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.39,11.39,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.36,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.25,21.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.04,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-12,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901592.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.15,12.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.449,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-8,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002123-30,Field Msr/Obs-Portable Data Logger,WATER,NA,10/9/2007,15:16:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002123-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/9/2007 22:16,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.06,13.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.341,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-115:20120803:SR:WSO,Sample-Routine,WATER,NA,8/3/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-115,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.39,19.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-115,Lake,NA,16010101,NA,NA,NA,NA,41.15233931,-110.8249531,NA,NA,NA,GPS-Unspecified,NAD83,2180.06,m,NA,NA,Digital Elevation Model,NAVD88,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.16,16.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901778.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:8,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.27,7.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.79,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.33,14.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.765,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901640.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.46,12.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.002,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.77,5.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,44.332,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.68,13.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.64,20.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.354,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.45,7.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.823,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.555,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-29-F,Field Msr/Obs,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.21,9.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.86,9.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264933.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.93,16.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.633,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.53,7.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741298.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.4,3.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010781,Field Msr/Obs,WATER,NA,8/20/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10102,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,21.3,21.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,S P Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10180007,NA,NA,NA,NA,42.79375,-106.4259,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1633,m,NA,NA,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.03,18.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:13,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.9,19.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-2-F,Field Msr/Obs,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002075-23,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,13:05:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42002075-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 20:05,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:38,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,38,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.62,7.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.11,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010806,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10130,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Banner Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180004,NA,NA,NA,NA,41.41529,-106.3582,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3027,m,NA,NA,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.53,11.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.615,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.27,7.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.555,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.6,20.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.28,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.76,6.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026711.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938680-0728-2-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,3.52,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.84,20.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.052,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.34,15.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026591.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.42,9.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.122,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.17,8.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.08,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026627.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.55,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2.1,2.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.38,7.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283413,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283413,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.12,12.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026687.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.68,17.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.478,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316_02,Field Msr/Obs,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002_02,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42003002,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.45,22.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.028,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010834,Field Msr/Obs,WATER,NA,8/29/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10108,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10080001,NA,NA,NA,NA,43.77403,-109.8408,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2815,m,NA,NA,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-2,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011407,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287640,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287640,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287825,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287825,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.932,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.6,19.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.34,15.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026603.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.91,8.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026699.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,44,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287608,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287608,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.08,9.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.05,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.56,13.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026651.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_4.5_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.86,10.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.77,7.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.605,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",21.6,21.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.72,13.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.84,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",9.59,9.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.34,15.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026597.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.76,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.65,15.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-2-F,Field Msr/Obs,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.09,11.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.666,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.17,10.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,19.39,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.051,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002070-70,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,8:01:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002070-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 15:01,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.06,19.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.23,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.82,6.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.131,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2235,Sample-Routine,WATER,NA,7/11/2017,11:52:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 18:52,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-11,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-25,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.24,7.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.29,13.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.33,7.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39.4,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.64,22.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.613,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,6.31,6.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.8,20.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.534,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.34,15.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026609.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.88,16.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.62,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.12,7.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026705.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.32,19.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.62,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.92,6.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901724.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:30:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:47:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:45:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.32,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:39:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.26,9.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.89,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:49:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:32:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:37:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938680-0705-29-F,Field Msr/Obs,WATER,NA,7/5/2016,19:21:19,MST,NA,NA,NA,17.236,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.29,10.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2016 2:21,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.87,7.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.55,15.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.83,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010871,Field Msr/Obs,WATER,NA,9/7/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.07,8.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.66,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.64,5.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38.09,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.15,10.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.191,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.31,7.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901424.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.9,19.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.89,12.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.114,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,48,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.86,8.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,16.967,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_1_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.75,11.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:11,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.61,17.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730579.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.57,10.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.504,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:11,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:28,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2837,Sample-Routine,WATER,NA,8/14/2018,10:54:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.5,20.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 17:54,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.31,12.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730639.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:2:070725:6,Field Msr/Obs,WATER,NA,7/25/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-7,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:1,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:24,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1723:1:070620:2,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_SPL,NA,NARS_WQX-NLA06608-1723,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Wyoming Hereford Ranch Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""SPL"";REACHCODE=""10190009000623"";COM_ID=""2875411"";STATUS_VER=""Target_Sampled"";NHDNAME=""Wyoming Hereford Ranch Reservoir Number 2"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-718970.875264"";ALBERS_Y=""439070.811562"";FLD_LON_DD=""-104.63841"";FLD_LAT_DD=""41.12529"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.12635244,-104.6435242,NA,NA,NA,GPS-Unspecified,WGS84,1770.55,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.47,11.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.014,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003201_02,Field Msr/Obs,WATER,NA,10/10/2012,12:30:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Organization ActivityID=YELL_YL001.0M_42003201,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 19:30,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.04,18.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.41,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:12,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010778,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10078,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Kemmerer Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040107,NA,NA,NA,NA,41.94495,-110.6569,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2179,m,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.14,22.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.153,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-34,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-07,Sample-Routine,WATER,NA,6/24/2020,13:20:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:24,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2634:1:070730:1,Field Msr/Obs,WATER,NA,7/30/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2634,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Little Bear Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003828"";COM_ID=""4268336"";STATUS_VER=""Target_Sampled"";NHDNAME=""Little Bear Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062332.36815"";ALBERS_Y=""908109.485047"";FLD_LON_DD=""-109.52302"";FLD_LAT_DD=""44.93961"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.94116736,-109.5249202,NA,NA,NA,GPS-Unspecified,WGS84,2911,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.34,15.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026579.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.34,15.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026615.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002087-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,8:14:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002087-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 15:14,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:20,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R04:20120814:SR:WSO,Sample-Routine,WATER,NA,8/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R04,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R04,Lake,NA,10070001,NA,NA,NA,NA,44.49478161,-110.4302646,NA,NA,NA,GPS-Unspecified,NAD83,2394.04,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-11,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_33,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,46,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051809-4938620-0519-2-F,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.52,11.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",9.49,9.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002627_02,Field Msr/Obs,WATER,NA,9/8/2009,14:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002627,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 21:55,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010796,Field Msr/Obs,WATER,NA,8/21/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.77,11.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.884,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.37,16.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730591.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-29,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.3,15.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.98,18.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.009,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.17,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,46,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.85,18.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.08,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.03,13.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.178,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2634:1:070730:3.5,Field Msr/Obs,WATER,NA,7/30/2007,NA,NA,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2634,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Little Bear Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003828"";COM_ID=""4268336"";STATUS_VER=""Target_Sampled"";NHDNAME=""Little Bear Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062332.36815"";ALBERS_Y=""908109.485047"";FLD_LON_DD=""-109.52302"";FLD_LAT_DD=""44.93961"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.94116736,-109.5249202,NA,NA,NA,GPS-Unspecified,WGS84,2911,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.82,5.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2379:1:070731:4,Field Msr/Obs,WATER,NA,7/31/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2379,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.3,21.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Nine Mile Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-31"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10180010001889"";COM_ID=""17494541"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-807072.140599"";ALBERS_Y=""461268.16439"";FLD_LON_DD=""-105.72309"";FLD_LAT_DD=""41.24771"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10180010,NA,NA,NA,NA,41.24777405,-105.7229345,NA,NA,NA,GPS-Unspecified,WGS84,2191.92,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010796,Field Msr/Obs,WATER,NA,8/21/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.18,8.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730537.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:24,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.03,17.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.21,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.67,15.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730597.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.25,18.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.995,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010796,Field Msr/Obs,WATER,NA,8/21/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.83,10.83,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.95,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:3,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.66,13.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.117,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2.5,2.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-19,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:2,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-22,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.2,9.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.15,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209907-PR3866062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.45,18.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730723.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7.85,7.85,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.19,6.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.865,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-99,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.87,20.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.8,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:5,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.33,21.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.01,8.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901688.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-30,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-87,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:30,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.06,14.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.4,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:35.5,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,35.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:32,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,32,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.88,19.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741208.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.72,12.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026669.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:1,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002005-90,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,9:15:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42002005-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 16:15,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-92,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.75,19.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.79,19.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741358.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1270:1:070830:2.74,Field Msr/Obs,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,2.74,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1270,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Upper Dinwoody Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080001002585"";COM_ID=""12898432"";STATUS_VER=""Target_Sampled"";NHDNAME=""Dinwoody Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1076110.98058"";ALBERS_Y=""731495.401787"";FLD_LON_DD=""-109.385833"";FLD_LAT_DD=""43.354444"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",10080001,NA,NA,NA,NA,43.35530141,-109.3834683,NA,NA,NA,GPS-Unspecified,WGS84,1975,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010834,Field Msr/Obs,WATER,NA,8/29/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10108,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12.6,12.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10080001,NA,NA,NA,NA,43.77403,-109.8408,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2815,m,NA,NA,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.04,17.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:28,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:14,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051809-4938660-0519-29-F,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.27,7.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:7,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.27,14.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.76,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265017.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.9,10.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.065,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R04:20120814:SR:WSO,Sample-Routine,WATER,NA,8/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R04,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R04,Lake,NA,10070001,NA,NA,NA,NA,44.49478161,-110.4302646,NA,NA,NA,GPS-Unspecified,NAD83,2394.04,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011407,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-40,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002034-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002034-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.83,7.83,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,43.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.04,17.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.22,10.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730663.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",21.6,21.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.85,7.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.89,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.86,10.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.57,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.37,6.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901532.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:10,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.28,5.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.42,21.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.37,21.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.21,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:36,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,36,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:7,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:32,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,32,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:6,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,0.9,0.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.82,7.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264993.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",21.6,21.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.18,18.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.44,14.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.47,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.68,7.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.01,12.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.999,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2027:1:070620:1,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2027,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.9,16.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,McFarlane Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180011001217"";COM_ID=""17481797"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-788186.11527"";ALBERS_Y=""570916.985185"";FLD_LON_DD=""-105.62971"";FLD_LAT_DD=""42.24008"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180011,NA,NA,NA,NA,42.23979744,-105.6303731,NA,NA,NA,GPS-Unspecified,WGS84,2339.29,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:5,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:30,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.87,13.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.46,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010806,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10130,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Banner Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180004,NA,NA,NA,NA,41.41529,-106.3582,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3027,m,NA,NA,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.148,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.91,16.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730423.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.4,19.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901862.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:1,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.45,19.45,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741394.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-24,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010778,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10078,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Kemmerer Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040107,NA,NA,NA,NA,41.94495,-110.6569,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2179,m,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:34,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,34,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:11,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.58,10.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.035,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.03,11.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.042,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.47,20.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.38,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-01,Field Msr/Obs,WATER,NA,9/9/2020,12:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:05,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.25,6.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901832.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-44212007,Field Msr/Obs,WATER,NA,8/28/2007,12:54:00,MST,NA,NA,NA,11,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,Relative Depth = Above Thermocline,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/28/2007 19:54,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.55,8.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.39,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:17,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14,14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.27,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.04,11.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.43,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.17,7.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281917,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281917,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.96,8.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.29,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.35,14.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.82,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-5,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274030,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274030,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7.15,7.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.86,11.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.13,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:30,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.5,19.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:38,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,38,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,42,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010823,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10042,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.27144,-109.4346,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2061,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264891.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1562:1:070611:4,Field Msr/Obs,WATER,NA,6/11/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1562,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sixtyseven Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040101003375"";COM_ID=""18347649"";STATUS_VER=""Target_Sampled"";NHDNAME=""Sixty-Seven Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1155568.42971"";ALBERS_Y=""657586.507398"";FLD_LON_DD=""-110.21049"";FLD_LAT_DD=""42.59522"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040101,NA,NA,NA,NA,42.59773028,-110.2208282,NA,NA,NA,GPS-Unspecified,WGS84,2153.13,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.28,8.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.991,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.76,15.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.77,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:16,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.95,10.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-29-F,Field Msr/Obs,WATER,NA,10/14/2010,8:19:00,MST,NA,NA,NA,41,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.71,7.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/14/2010 15:19,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.42,6.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265053.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:3,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.58,17.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.986,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010776,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10107,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Coe Enlargement Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080014,NA,NA,NA,NA,44.28174,-109.1102,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2034,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287613,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287613,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.91,17.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.432,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.28,15.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730441.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-20,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.1,3.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:15,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:3,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010834,Field Msr/Obs,WATER,NA,8/29/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10108,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10080001,NA,NA,NA,NA,43.77403,-109.8408,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2815,m,NA,NA,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.93,6.93,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730555.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.147,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.61,11.61,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730495.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.58,7.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901754.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:3,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.26,10.26,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264909.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.4,19.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010823,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10042,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.4,17.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.27144,-109.4346,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2061,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-15,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002629-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002012-12,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,12:47:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002012-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 19:47,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,41.951,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.35,7.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.98,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-24,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.99,9.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.626,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.49,14.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_9.4_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,9.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.16,8.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938640-0605-2-F,Field Msr/Obs,WATER,NA,6/5/2013,18:10:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,No associated lake profile due to equipment issue. No secchi reading due to broken equipment.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2013 1:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002091-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/5/2007,10:16:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002091-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/5/2007 17:16,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.03,8.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:24,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42001995-50,Field Msr/Obs-Portable Data Logger,WATER,NA,5/17/2007,9:28:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42001995-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/17/2007 16:28,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:22,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:6.4,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,6.4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23,23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.15,11.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-18,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.3,22.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.322,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002071-14,Field Msr/Obs-Portable Data Logger,WATER,NA,8/9/2007,9:44:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002071-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/9/2007 16:44,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-08,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-08,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.28,16.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.56,14.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.956,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2.4,2.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42003182_02,Field Msr/Obs,WATER,NA,9/12/2012,14:29:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Organization ActivityID=YELL_YL001.0M_42003182,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2012 21:29,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_72002034-71,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,9:58:00,MST,NA,NA,NA,71,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_72002034-71,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 16:58,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.42,7.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.3,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.26,6.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.54,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.87,14.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746576.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-79,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R04:20120814:SR:WSO,Sample-Routine,WATER,NA,8/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R04,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R04,Lake,NA,10070001,NA,NA,NA,NA,44.49478161,-110.4302646,NA,NA,NA,GPS-Unspecified,NAD83,2394.04,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:18,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:16.5,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,16.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.33333333,16.33333333,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1270:1:070830:5.34,Field Msr/Obs,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,5.34,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1270,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Upper Dinwoody Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080001002585"";COM_ID=""12898432"";STATUS_VER=""Target_Sampled"";NHDNAME=""Dinwoody Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1076110.98058"";ALBERS_Y=""731495.401787"";FLD_LON_DD=""-109.385833"";FLD_LAT_DD=""43.354444"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",10080001,NA,NA,NA,NA,43.35530141,-109.3834683,NA,NA,NA,GPS-Unspecified,WGS84,1975,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.14,10.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264921.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287623,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287623,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-29-F,Field Msr/Obs,WATER,NA,6/1/2010,19:15:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.35,9.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 2:15,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:9,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.07,10.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.85,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-35,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-33962007,Field Msr/Obs,WATER,NA,6/22/2007,11:03:00,MST,NA,NA,NA,15.9,m,SURFACE,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.22,10.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/22/2007 18:03,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.42,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274006,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730675.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:6,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002818_02,Field Msr/Obs,WATER,NA,8/18/2010,9:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002818,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 16:46,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-86,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.1,9.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.714,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010871,Field Msr/Obs,WATER,NA,9/7/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:0,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.83,16.83,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.22,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.08,9.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.93,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-91,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002004-10,Field Msr/Obs-Portable Data Logger,WATER,NA,6/12/2007,8:29:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002004-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2007 15:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:11,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.91,14.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730447.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.48,6.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026723.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:0,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.01,17.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:0,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,24.22222222,24.22222222,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938660-0705-29-F,Field Msr/Obs,WATER,NA,7/5/2016,18:48:33,MST,NA,NA,NA,21.196,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.94,8.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2016 1:48,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.05,5.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901490.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:17,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.79,6.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730561.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002037_3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,14:03:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002037_3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 21:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938640-0728-27-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,21.86,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.01,9.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:14,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.43,11.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.17,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-11,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026741.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4023,Sample-Routine,WATER,NA,8/16/2016,11:12:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 18:12,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.64,6.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026717.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-19,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.48,8.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.224,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,13.57,13.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:2:070725:3,Field Msr/Obs,WATER,NA,7/25/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.823,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.13,19.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741262.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:5,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:2,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.6,21.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.14,19.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.099,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:2:070725:0,Field Msr/Obs,WATER,NA,7/25/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.8,21.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-43,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:15,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.13,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2379:1:070731:1,Field Msr/Obs,WATER,NA,7/31/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2379,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22,22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Nine Mile Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-31"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10180010001889"";COM_ID=""17494541"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-807072.140599"";ALBERS_Y=""461268.16439"";FLD_LON_DD=""-105.72309"";FLD_LAT_DD=""41.24771"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10180010,NA,NA,NA,NA,41.24777405,-105.7229345,NA,NA,NA,GPS-Unspecified,WGS84,2191.92,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.74,7.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.8,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.28,17.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741400.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.12,7.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746648.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.86,9.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.81,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:2,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1723:1:070620:4,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_SPL,NA,NARS_WQX-NLA06608-1723,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Wyoming Hereford Ranch Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""SPL"";REACHCODE=""10190009000623"";COM_ID=""2875411"";STATUS_VER=""Target_Sampled"";NHDNAME=""Wyoming Hereford Ranch Reservoir Number 2"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-718970.875264"";ALBERS_Y=""439070.811562"";FLD_LON_DD=""-104.63841"";FLD_LAT_DD=""41.12529"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.12635244,-104.6435242,NA,NA,NA,GPS-Unspecified,WGS84,1770.55,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.7,6.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.827,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.59,12.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.191,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.28,15.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026621.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:26,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-7,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283426,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283426,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:44,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,44,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.69,11.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026693.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:19,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.39,14.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026639.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:13,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES"";METALIMNION=""T""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:19,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.04,9.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.2,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:50,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,50,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.9,19.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.93,18.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.429,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.75,19.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.18,21.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.86,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:24,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.03,15.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.245,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.25,22.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.905,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2714:1:070811:2,Field Msr/Obs,WATER,NA,8/11/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2714,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.6,23.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,L A K Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10120107001602"";COM_ID=""9386655"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-648913.03642"";ALBERS_Y=""736030.523488"";FLD_LON_DD=""-104.10971"";FLD_LAT_DD=""43.82538"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(20,50]""",10120107,NA,NA,NA,NA,43.82780189,-104.1093535,NA,NA,NA,GPS-Unspecified,WGS84,1333,m,NA,NA,Other,NGVD29,US,56,45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.07,15.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746546.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:35:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:14,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.51,15.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.71,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:20,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.46,12.46,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026675.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.41,10.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:1,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.74,19.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730519.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.79,18.79,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.27,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.86,17.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,23 - Above Thermoclin,NA,10.91,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.96,14.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.17,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:10.1,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.77777778,21.77777778,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741430.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901442.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.6,19.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.03,9.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.64,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-101:20120913:SR:WSO,Sample-Routine,WATER,NA,9/13/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.65,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-101,Lake,NA,10070006,NA,NA,NA,NA,44.78618159,-109.2581674,NA,NA,NA,GPS-Unspecified,NAD83,1468,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:34,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,34,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002035-33,Field Msr/Obs-Portable Data Logger,WATER,NA,7/10/2007,12:15:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002035-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/10/2007 19:15,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274003,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274003,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011320,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10106,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Twin Buttes Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.23809,-105.8616,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2209,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.55,8.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741424.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-46,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,46,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-46,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:9,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2714:1:070811:3,Field Msr/Obs,WATER,NA,8/11/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2714,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.5,23.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,L A K Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10120107001602"";COM_ID=""9386655"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-648913.03642"";ALBERS_Y=""736030.523488"";FLD_LON_DD=""-104.10971"";FLD_LAT_DD=""43.82538"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(20,50]""",10120107,NA,NA,NA,NA,43.82780189,-104.1093535,NA,NA,NA,GPS-Unspecified,WGS84,1333,m,NA,NA,Other,NGVD29,US,56,45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-33,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.92,18.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.05,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:14,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:12,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:30,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.96,14.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746564.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.19,14.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.37,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:40.5,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,40.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:19,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281902,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281902,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.59,7.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.53,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2027:1:070620:4,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2027,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,McFarlane Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180011001217"";COM_ID=""17481797"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-788186.11527"";ALBERS_Y=""570916.985185"";FLD_LON_DD=""-105.62971"";FLD_LAT_DD=""42.24008"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180011,NA,NA,NA,NA,42.23979744,-105.6303731,NA,NA,NA,GPS-Unspecified,WGS84,2339.29,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-101:20120913:SR:WSO,Sample-Routine,WATER,NA,9/13/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.75,14.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-101,Lake,NA,10070006,NA,NA,NA,NA,44.78618159,-109.2581674,NA,NA,NA,GPS-Unspecified,NAD83,1468,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.27,5.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.88,19.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741202.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:16,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.13,8.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730543.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_7_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.57,9.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:28,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.9,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:7,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.37,5.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901460.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011320,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10106,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Twin Buttes Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.23809,-105.8616,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2209,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.68,5.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:8.23,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,8.23,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.55555556,22.55555556,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.23,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901520.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:1:070626:2,Field Msr/Obs,WATER,NA,6/26/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.62,6.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.109,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:10,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-70,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:5,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.94,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:8,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,20.12,20.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741334.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011407,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.84,16.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730429.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1866:1:070723:0,Field Msr/Obs,WATER,NA,7/23/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1866,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,26.4,26.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-23"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10070006003857"";COM_ID=""4268384"";STATUS_VER=""Target_Sampled"";NHDNAME=""Hogan Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1044100.26714"";ALBERS_Y=""888244.555211"";FLD_LON_DD=""-109.26434"";FLD_LAT_DD=""44.78928"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.78748289,-109.2607748,NA,NA,NA,GPS-Unspecified,WGS84,1468,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:2,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:15,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:18,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1270:1:070830:3.66,Field Msr/Obs,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,3.66,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1270,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Upper Dinwoody Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080001002585"";COM_ID=""12898432"";STATUS_VER=""Target_Sampled"";NHDNAME=""Dinwoody Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1076110.98058"";ALBERS_Y=""731495.401787"";FLD_LON_DD=""-109.385833"";FLD_LAT_DD=""43.354444"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",10080001,NA,NA,NA,NA,43.35530141,-109.3834683,NA,NA,NA,GPS-Unspecified,WGS84,1975,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010778,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10078,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Kemmerer Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040107,NA,NA,NA,NA,41.94495,-110.6569,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2179,m,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,4.8,4.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,43.244,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.91,9.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730501.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.06,14.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.77,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:1:070626:1,Field Msr/Obs,WATER,NA,6/26/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1562:1:070611:1,Field Msr/Obs,WATER,NA,6/11/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1562,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sixtyseven Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040101003375"";COM_ID=""18347649"";STATUS_VER=""Target_Sampled"";NHDNAME=""Sixty-Seven Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1155568.42971"";ALBERS_Y=""657586.507398"";FLD_LON_DD=""-110.21049"";FLD_LAT_DD=""42.59522"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040101,NA,NA,NA,NA,42.59773028,-110.2208282,NA,NA,NA,GPS-Unspecified,WGS84,2153.13,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:12,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:17,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.88,14.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730801.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:7,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.71,7.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,40.87,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:15,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.18,10.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.11,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.14,6.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901658.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010738,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10118,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.40169,-105.8285,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2181,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:2,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.77,5.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,44.215,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.96,6.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2379:1:070731:5,Field Msr/Obs,WATER,NA,7/31/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2379,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.6,20.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Nine Mile Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-31"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10180010001889"";COM_ID=""17494541"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-807072.140599"";ALBERS_Y=""461268.16439"";FLD_LON_DD=""-105.72309"";FLD_LAT_DD=""41.24771"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10180010,NA,NA,NA,NA,41.24777405,-105.7229345,NA,NA,NA,GPS-Unspecified,WGS84,2191.92,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.39,9.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730513.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:5,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:17,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010796,Field Msr/Obs,WATER,NA,8/21/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-50,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.88,16.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741268.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002296_02,Field Msr/Obs,WATER,NA,8/5/2008,16:12:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Routine Organization ActivityID=YELL_YL005.0M_42002296,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 23:12,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:2,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-2-F,Field Msr/Obs,WATER,NA,10/23/2019,16:11:04,MST,NA,NA,NA,1.28,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:11,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:17,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002577-32,Field Msr/Obs-Portable Data Logger,WATER,NA,7/20/2009,14:01:00,MST,NA,NA,NA,32,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002577-32,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/20/2009 21:01,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:17,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:8,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.56,7.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_6.5_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,6.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.74,9.74,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.51,21.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.09,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-95,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,95,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-95,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.12,14.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.91,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:9,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010823,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10042,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,20.8,20.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.27144,-109.4346,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2061,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.46,14.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.39,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351_02,Field Msr/Obs,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:21,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,21,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.73,8.73,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.14,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:2,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,47.9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2634:1:070730:3,Field Msr/Obs,WATER,NA,7/30/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2634,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Little Bear Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003828"";COM_ID=""4268336"";STATUS_VER=""Target_Sampled"";NHDNAME=""Little Bear Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062332.36815"";ALBERS_Y=""908109.485047"";FLD_LON_DD=""-109.52302"";FLD_LAT_DD=""44.93961"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.94116736,-109.5249202,NA,NA,NA,GPS-Unspecified,WGS84,2911,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:19,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002604-13,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,12:28:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002604-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 19:28,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1270:1:070830:0,Field Msr/Obs,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1270,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Upper Dinwoody Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080001002585"";COM_ID=""12898432"";STATUS_VER=""Target_Sampled"";NHDNAME=""Dinwoody Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1076110.98058"";ALBERS_Y=""731495.401787"";FLD_LON_DD=""-109.385833"";FLD_LAT_DD=""43.354444"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",10080001,NA,NA,NA,NA,43.35530141,-109.3834683,NA,NA,NA,GPS-Unspecified,WGS84,1975,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.99,17.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730573.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:2,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:19.8,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,19.8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.55555556,15.55555556,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.6,19.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010738,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10118,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.40169,-105.8285,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2181,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.31,13.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730819.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010724,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1562:1:070611:3,Field Msr/Obs,WATER,NA,6/11/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1562,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sixtyseven Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040101003375"";COM_ID=""18347649"";STATUS_VER=""Target_Sampled"";NHDNAME=""Sixty-Seven Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1155568.42971"";ALBERS_Y=""657586.507398"";FLD_LON_DD=""-110.21049"";FLD_LAT_DD=""42.59522"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040101,NA,NA,NA,NA,42.59773028,-110.2208282,NA,NA,NA,GPS-Unspecified,WGS84,2153.13,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-137:20120914:SR:WSO,Sample-Routine,WATER,NA,9/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-137,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.41,15.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-137,Lake,NA,10070006,NA,NA,NA,NA,44.78132376,-109.2547289,NA,NA,NA,GPS-Unspecified,NAD83,1473.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.48,17.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730411.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.9,13.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.21,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:12,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:3,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,42,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.12,21.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:4,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.57,9.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264939.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-20,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.29,18.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:6,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.78,19.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741244.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011320,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10106,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Twin Buttes Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.23809,-105.8616,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2209,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2.1,2.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,42,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:11,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253_02,Field Msr/Obs,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.79,6.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265047.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:10,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:8,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002269-22,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,11:11:00,MST,NA,NA,NA,22,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002269-22,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 18:11,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:4,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:14,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES"";METALIMNION=""B""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3,3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:0,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:12,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.732,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.52,16.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.02,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.54,11.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.98,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283430,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283430,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010738,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10118,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.40169,-105.8285,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2181,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.04,12.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:7,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1866:1:070723:0.5,Field Msr/Obs,WATER,NA,7/23/2007,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1866,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,24.2,24.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-23"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10070006003857"";COM_ID=""4268384"";STATUS_VER=""Target_Sampled"";NHDNAME=""Hogan Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1044100.26714"";ALBERS_Y=""888244.555211"";FLD_LON_DD=""-109.26434"";FLD_LAT_DD=""44.78928"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.78748289,-109.2607748,NA,NA,NA,GPS-Unspecified,WGS84,1468,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.05,13.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.43,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.77,6.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,39.53,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-60,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42003024_02,Field Msr/Obs,WATER,NA,9/15/2011,15:05:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Routine Organization ActivityID=YELL_YL006.0M_42003024,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 22:05,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.45,19.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.29,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.58,7.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746636.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:8,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-10,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,17.09,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:11,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.88,19.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741352.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:4,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.2,21.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.39,9.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741292.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:2:070725:2,Field Msr/Obs,WATER,NA,7/25/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.6,20.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.58,13.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.479,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:12,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-33,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:2,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-12,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:16,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.18,13.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741280.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.55,14.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.26,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.37,21.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.21,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.54,13.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746594.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.77,18.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.785,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.082,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:20,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.32,7.32,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.01,14.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746588.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.13,11.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.26,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.35,6.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901538.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.71,8.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010871,Field Msr/Obs,WATER,NA,9/7/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:34,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,34,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.06,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-29-F,Field Msr/Obs,WATER,NA,10/11/2012,9:55:14,MST,NA,NA,NA,14.695,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.28,11.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:55,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:22,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:22,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.36,14.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730465.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.24,15.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.492,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:9,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-15,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.95,13.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730813.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.77,7.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901844.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.44,18.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:2,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:46,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,46,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:20,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.98,12.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730483.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.32,21.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.15,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:22,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.72,19.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741364.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:7,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:0,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.82,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:12,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.9,18.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.59,13.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.91,14.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746570.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-5,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.87,8.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.996,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010834,Field Msr/Obs,WATER,NA,8/29/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10108,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10080001,NA,NA,NA,NA,43.77403,-109.8408,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2815,m,NA,NA,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.5,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.14,10.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.554,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:3,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.74,20.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.82,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.28,12.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.08,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.05,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-18,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.65,10.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.58,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.86,19.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741196.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:42,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,42,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:0,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R04:20120814:SR:WSO,Sample-Routine,WATER,NA,8/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R04,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R04,Lake,NA,10070001,NA,NA,NA,NA,44.49478161,-110.4302646,NA,NA,NA,GPS-Unspecified,NAD83,2394.04,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2714:1:070811:7.2,Field Msr/Obs,WATER,NA,8/11/2007,NA,NA,NA,NA,NA,7.2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2714,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.3,23.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,L A K Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10120107001602"";COM_ID=""9386655"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-648913.03642"";ALBERS_Y=""736030.523488"";FLD_LON_DD=""-104.10971"";FLD_LAT_DD=""43.82538"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(20,50]""",10120107,NA,NA,NA,NA,43.82780189,-104.1093535,NA,NA,NA,GPS-Unspecified,WGS84,1333,m,NA,NA,Other,NGVD29,US,56,45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.52,14.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.82,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.61,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.48,20.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.992,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.88,19.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741220.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-30,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010724,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:38,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,38,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.02,12.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.22,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:6,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.89,7.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.974,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:13,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:19,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:9,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.28,12.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730489.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:8.5,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,8.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:9,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002267-60,Field Msr/Obs-Portable Data Logger,WATER,NA,7/9/2008,8:20:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002267-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/9/2008 15:20,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.81,9.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.402,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.57,19.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741388.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:13,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.06,15.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.43,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.04,9.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730681.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:7,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",11.4,11.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-20,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.62,9.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.058,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.39,13.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730621.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.23,7.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265029.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051809-4938660-0519-2-F,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.01,14.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.14,12.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.044,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.34,15.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026585.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010796,Field Msr/Obs,WATER,NA,8/21/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:30,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:15,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.9,10.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:16,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.24,16.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.22,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-6,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.68,9.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730669.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002318/1,Quality Control Field Replicate Msr/Obs,WATER,NA,9/3/2008,10:07:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Split Organization ActivityID=YELL_YL002.0M_42002318/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 17:07,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002347_02,Field Msr/Obs,WATER,NA,9/30/2008,9:46:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002347,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 16:46,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:40,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,40,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:4,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-20,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:0,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002559-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/15/2009,8:35:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002559-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/15/2009 15:35,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.37,21.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.33,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:22,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4013,Sample-Routine,WATER,NA,8/16/2016,10:47:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 17:47,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-27,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-9,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-10,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730531.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.413,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:22,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.93,7.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.987,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.13,9.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746618.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:32,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,32,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-80,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1723:1:070620:1,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_SPL,NA,NARS_WQX-NLA06608-1723,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Wyoming Hereford Ranch Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""SPL"";REACHCODE=""10190009000623"";COM_ID=""2875411"";STATUS_VER=""Target_Sampled"";NHDNAME=""Wyoming Hereford Ranch Reservoir Number 2"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-718970.875264"";ALBERS_Y=""439070.811562"";FLD_LON_DD=""-104.63841"";FLD_LAT_DD=""41.12529"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.12635244,-104.6435242,NA,NA,NA,GPS-Unspecified,WGS84,1770.55,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:42,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,42,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.38,12.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.11,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-23,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,23,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-23,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2.9,2.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:20,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12.16,12.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-17,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002989-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",11.47,11.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:1,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.15,16.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730783.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901628.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_420092973-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_420092973-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209907-PR3866062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.25,17.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730729.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:6,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:4,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.94,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.44,16.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730435.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1562:1:070611:6.5,Field Msr/Obs,WATER,NA,6/11/2007,NA,NA,NA,NA,NA,6.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1562,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sixtyseven Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040101003375"";COM_ID=""18347649"";STATUS_VER=""Target_Sampled"";NHDNAME=""Sixty-Seven Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1155568.42971"";ALBERS_Y=""657586.507398"";FLD_LON_DD=""-110.21049"";FLD_LAT_DD=""42.59522"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040101,NA,NA,NA,NA,42.59773028,-110.2208282,NA,NA,NA,GPS-Unspecified,WGS84,2153.13,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216078-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.15,10.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901928.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.08,10.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.61,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.414,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.98,6.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741304.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:19,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.84,8.84,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730687.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:17,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:9,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.04,8.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.213,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.43,21.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.499,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-69,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:24,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.65,19.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741376.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.04,16.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.16,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-04,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-04,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:17.4,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,17.4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.22222222,16.22222222,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:44,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,44,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.21,21.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.2,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:0,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:8,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:14.6,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,14.6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.66666667,16.66666667,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:13.7,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,13.7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2027:1:070620:4.5,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,4.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2027,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,McFarlane Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180011001217"";COM_ID=""17481797"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-788186.11527"";ALBERS_Y=""570916.985185"";FLD_LON_DD=""-105.62971"";FLD_LAT_DD=""42.24008"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180011,NA,NA,NA,NA,42.23979744,-105.6303731,NA,NA,NA,GPS-Unspecified,WGS84,2339.29,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:28,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.84,11.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.08,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.22,14.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.83,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2204,Sample-Routine,WATER,NA,7/17/2018,11:27:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:27,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1270:1:070830:0.91,Field Msr/Obs,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,0.91,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1270,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Upper Dinwoody Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080001002585"";COM_ID=""12898432"";STATUS_VER=""Target_Sampled"";NHDNAME=""Dinwoody Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1076110.98058"";ALBERS_Y=""731495.401787"";FLD_LON_DD=""-109.385833"";FLD_LAT_DD=""43.354444"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",10080001,NA,NA,NA,NA,43.35530141,-109.3834683,NA,NA,NA,GPS-Unspecified,WGS84,1975,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:5.49,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,5.49,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.05555556,23.05555556,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:10,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.1,18.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-29-F,Field Msr/Obs,WATER,NA,6/2/2010,14:50:00,MST,NA,NA,NA,42,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.34,7.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 21:50,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.02,8.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.47,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-1907094-10,Sample-Routine,WATER,NA,7/30/2019,11:13:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/30/2019,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/30/2019 18:13,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:15,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-4,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.95,7.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730699.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-82,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:5,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.51,18.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010781,Field Msr/Obs,WATER,NA,8/20/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10102,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,S P Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10180007,NA,NA,NA,NA,42.79375,-106.4259,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1633,m,NA,NA,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.258,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.96,16.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.74,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:2:070725:1,Field Msr/Obs,WATER,NA,7/25/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.2,21.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:4,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.22,13.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.087,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.34,11.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730651.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2027:1:070620:3,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2027,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,McFarlane Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180011001217"";COM_ID=""17481797"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-788186.11527"";ALBERS_Y=""570916.985185"";FLD_LON_DD=""-105.62971"";FLD_LAT_DD=""42.24008"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180011,NA,NA,NA,NA,42.23979744,-105.6303731,NA,NA,NA,GPS-Unspecified,WGS84,2339.29,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741412.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2634:1:070730:2,Field Msr/Obs,WATER,NA,7/30/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2634,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Little Bear Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003828"";COM_ID=""4268336"";STATUS_VER=""Target_Sampled"";NHDNAME=""Little Bear Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062332.36815"";ALBERS_Y=""908109.485047"";FLD_LON_DD=""-109.52302"";FLD_LAT_DD=""44.93961"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.94116736,-109.5249202,NA,NA,NA,GPS-Unspecified,WGS84,2911,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:4,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1562:1:070611:5,Field Msr/Obs,WATER,NA,6/11/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1562,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.8,13.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sixtyseven Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040101003375"";COM_ID=""18347649"";STATUS_VER=""Target_Sampled"";NHDNAME=""Sixty-Seven Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1155568.42971"";ALBERS_Y=""657586.507398"";FLD_LON_DD=""-110.21049"";FLD_LAT_DD=""42.59522"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040101,NA,NA,NA,NA,42.59773028,-110.2208282,NA,NA,NA,GPS-Unspecified,WGS84,2153.13,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.65,7.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901694.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.18,10.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.56,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.86,11.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.79,17.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730765.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:4,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:48,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,48,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:34,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,34,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:10,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.83,6.83,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.38,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.26,8.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.99,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209907-PR3866062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.21,15.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730741.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:18,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:13,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:5,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-80,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.34,21.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.046,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002289-6,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,11:24:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002289-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 18:24,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.24,7.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746642.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.08,18.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.187,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2379:1:070731:3,Field Msr/Obs,WATER,NA,7/31/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2379,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.5,21.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Nine Mile Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-31"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10180010001889"";COM_ID=""17494541"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-807072.140599"";ALBERS_Y=""461268.16439"";FLD_LON_DD=""-105.72309"";FLD_LAT_DD=""41.24771"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10180010,NA,NA,NA,NA,41.24777405,-105.7229345,NA,NA,NA,GPS-Unspecified,WGS84,2191.92,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3324,Sample-Routine,WATER,NA,7/26/2016,12:06:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 19:06,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.69,17.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.05,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2379:1:070731:0,Field Msr/Obs,WATER,NA,7/31/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2379,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.3,22.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Nine Mile Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-31"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10180010001889"";COM_ID=""17494541"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-807072.140599"";ALBERS_Y=""461268.16439"";FLD_LON_DD=""-105.72309"";FLD_LAT_DD=""41.24771"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10180010,NA,NA,NA,NA,41.24777405,-105.7229345,NA,NA,NA,GPS-Unspecified,WGS84,2191.92,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:10,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.42,9.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.117,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-19,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2714:1:070811:4,Field Msr/Obs,WATER,NA,8/11/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2714,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.5,23.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,L A K Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10120107001602"";COM_ID=""9386655"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-648913.03642"";ALBERS_Y=""736030.523488"";FLD_LON_DD=""-104.10971"";FLD_LAT_DD=""43.82538"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(20,50]""",10120107,NA,NA,NA,NA,43.82780189,-104.1093535,NA,NA,NA,GPS-Unspecified,WGS84,1333,m,NA,NA,Other,NGVD29,US,56,45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-24,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,24,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-24,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.08,12.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.016,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7.24,7.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.47,17.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730771.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-86,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:11.9,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,11.9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.5,20.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746558.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:10.6,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,10.6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:18,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.58,21.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.03,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.43,7.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.49,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:22,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,22,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.4,19.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.34,9.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.01,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.44,10.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.77,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1270:1:070830:1.83,Field Msr/Obs,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,1.83,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1270,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Upper Dinwoody Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080001002585"";COM_ID=""12898432"";STATUS_VER=""Target_Sampled"";NHDNAME=""Dinwoody Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1076110.98058"";ALBERS_Y=""731495.401787"";FLD_LON_DD=""-109.385833"";FLD_LAT_DD=""43.354444"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",10080001,NA,NA,NA,NA,43.35530141,-109.3834683,NA,NA,NA,GPS-Unspecified,WGS84,1975,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938660-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:17:38,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.87,11.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.838,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:17,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264927.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.45,21.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.2,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.892,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.77,9.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730507.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002533_02,Field Msr/Obs,WATER,NA,6/18/2009,8:55:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002533,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.1,3.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/18/2009 15:55,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.31,12.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.08,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.35,9.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,19.62,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-18,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.96,10.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.26,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:1,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.6,20.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:7,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.96,17.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.111,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:7,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.67,6.67,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.188,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-21,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-21,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.4,14.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.963,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:36,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,36,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:47.5,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,47.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2714:1:070811:6,Field Msr/Obs,WATER,NA,8/11/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2714,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.4,23.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,L A K Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10120107001602"";COM_ID=""9386655"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-648913.03642"";ALBERS_Y=""736030.523488"";FLD_LON_DD=""-104.10971"";FLD_LAT_DD=""43.82538"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(20,50]""",10120107,NA,NA,NA,NA,43.82780189,-104.1093535,NA,NA,NA,GPS-Unspecified,WGS84,1333,m,NA,NA,Other,NGVD29,US,56,45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.77,14.77,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730453.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:1:070626:4,Field Msr/Obs,WATER,NA,6/26/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:1:070622:3,Field Msr/Obs,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.12,9.12,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.077,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.09,21.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.11,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002353_02,Field Msr/Obs,WATER,NA,9/30/2008,12:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Organization ActivityID=YELL_YL001.0M_42002353,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 19:15,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:7.32,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,7.32,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.83333333,22.83333333,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:4,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002601/1,Quality Control Field Replicate Msr/Obs,WATER,NA,8/12/2009,NA,NA,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Split Organization ActivityID=YELL_YL006.0M_42002601/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.29,14.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.53,11.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.32,9.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Surface,NA,1.34,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:45.5,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,45.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:6,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.34,18.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629_02,Field Msr/Obs,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938620-0728-29-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,43.11,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.23,6.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.34,15.34,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746540.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:15,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.7,7.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-08,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-08,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.71,16.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.49,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.08,10.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730831.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.52,13.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.53,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:1,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.58,6.58,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901448.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002346-50,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,8:36:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002346-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938680-1011-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/11/2012,9:51:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.07,12.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.381,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/11/2012 16:51,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.61,14.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.656,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_5.4_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,5.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.02,10.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-6,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:11,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.33333333,21.33333333,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:0,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:2:070725:5,Field Msr/Obs,WATER,NA,7/25/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.89,12.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730627.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:1,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-14,Field Msr/Obs,WATER,NA,8/4/2020,9:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:19,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-29-F,Field Msr/Obs,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,43,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.83,7.83,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:9,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,16.65,16.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730777.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.79,12.79,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730825.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746624.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.06,6.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.233,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.35,11.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,16.58,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.96,13.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.13,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.824,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:13,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.64,19.64,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741382.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.92,16.92,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.38,21.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.124,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.86,10.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.49,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002320-25,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,11:54:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002320-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 18:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:11,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.89,11.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730645.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.42,14.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730459.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.47,7.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.55,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:2,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.23,6.23,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,43.111,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:1,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:18.3,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,18.3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.11111111,16.11111111,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:8.7,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,8.7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:12,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.48,9.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.087,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.62,8.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.324,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:0,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.83,10.83,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.012,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:11,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.68,18.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730759.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2714:1:070811:7,Field Msr/Obs,WATER,NA,8/11/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2714,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.3,23.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,L A K Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10120107001602"";COM_ID=""9386655"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-648913.03642"";ALBERS_Y=""736030.523488"";FLD_LON_DD=""-104.10971"";FLD_LAT_DD=""43.82538"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(20,50]""",10120107,NA,NA,NA,NA,43.82780189,-104.1093535,NA,NA,NA,GPS-Unspecified,WGS84,1333,m,NA,NA,Other,NGVD29,US,56,45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:26,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741418.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:19,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-80,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002316-8,Field Msr/Obs-Portable Data Logger,WATER,NA,9/3/2008,9:52:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002316-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/3/2008 16:52,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:1:070626:6,Field Msr/Obs,WATER,NA,6/26/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:10,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R04:20120814:SR:WSO,Sample-Routine,WATER,NA,8/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R04,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.7,17.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R04,Lake,NA,10070001,NA,NA,NA,NA,44.49478161,-110.4302646,NA,NA,NA,GPS-Unspecified,NAD83,2394.04,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:8,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1723:1:070620:0,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_SPL,NA,NARS_WQX-NLA06608-1723,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.1,20.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Wyoming Hereford Ranch Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""SPL"";REACHCODE=""10190009000623"";COM_ID=""2875411"";STATUS_VER=""Target_Sampled"";NHDNAME=""Wyoming Hereford Ranch Reservoir Number 2"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-718970.875264"";ALBERS_Y=""439070.811562"";FLD_LON_DD=""-104.63841"";FLD_LAT_DD=""41.12529"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.12635244,-104.6435242,NA,NA,NA,GPS-Unspecified,WGS84,1770.55,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111_02,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.46,11.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.34,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:36,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,36,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-14,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:10,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:20,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.91,7.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.69,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-60,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:16,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-40,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.4,21.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.269,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-03,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-03,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.9,13.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,15.96,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:2:070725:4,Field Msr/Obs,WATER,NA,7/25/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:11,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.43,11.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.08,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:4,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.17,6.17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741316.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209907-PR3866062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.12,15.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730747.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",21.6,21.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.86,19.86,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741232.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:5,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746600.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:17,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.85,11.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.237,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.507,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.67,19.67,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741370.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:14,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.3,8.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.53,11.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.73,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-12,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:3,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,21.3,21.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:5,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1866:1:070723:1,Field Msr/Obs,WATER,NA,7/23/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1866,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,22.5,22.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-23"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10070006003857"";COM_ID=""4268384"";STATUS_VER=""Target_Sampled"";NHDNAME=""Hogan Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1044100.26714"";ALBERS_Y=""888244.555211"";FLD_LON_DD=""-109.26434"";FLD_LAT_DD=""44.78928"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.78748289,-109.2607748,NA,NA,NA,GPS-Unspecified,WGS84,1468,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:6,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:28,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:11,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.98,7.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746630.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:3,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:7,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:19,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938640-0706-29-F,Field Msr/Obs,WATER,NA,7/6/2016,17:18:38,MST,NA,NA,NA,36.41,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.67,6.67,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2016 0:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42003162_02,Field Msr/Obs,WATER,NA,8/23/2012,8:04:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Organization ActivityID=YELL_YL004.0M_42003162,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/23/2012 15:04,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:46,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,46,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:10,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:4,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-29-F,Field Msr/Obs,WATER,NA,8/6/2012,21:07:36,MST,NA,NA,NA,14.007,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.53,12.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:07,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-2-F,Field Msr/Obs,WATER,NA,8/4/2010,14:41:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.51,21.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/4/2010 21:41,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.41,10.41,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746612.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-08,Field Msr/Obs,WATER,NA,8/4/2020,9:12:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:12,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2714:1:070811:0,Field Msr/Obs,WATER,NA,8/11/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2714,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.8,23.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,L A K Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10120107001602"";COM_ID=""9386655"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-648913.03642"";ALBERS_Y=""736030.523488"";FLD_LON_DD=""-104.10971"";FLD_LAT_DD=""43.82538"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(20,50]""",10120107,NA,NA,NA,NA,43.82780189,-104.1093535,NA,NA,NA,GPS-Unspecified,WGS84,1333,m,NA,NA,Other,NGVD29,US,56,45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,46,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.82,6.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.045,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:6,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.32,14.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.02,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:4.57,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,4.57,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.11111111,23.11111111,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002587-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/30/2009,9:29:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002587-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/30/2009 16:29,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:12,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,41.066,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:13,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:1,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:11,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209907-PR3866062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.13,19.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730717.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:15,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:1:070626:3,Field Msr/Obs,WATER,NA,6/26/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:5,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.47,17.47,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.772,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:13,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.44,14.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730609.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:26,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:16,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010776,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10107,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16,16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Coe Enlargement Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080014,NA,NA,NA,NA,44.28174,-109.1102,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2034,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3171,Sample-Routine,WATER,NA,8/15/2017,12:26:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:26,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.91,20.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-2-F,Field Msr/Obs,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,2.294,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.76,13.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-39,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.7,13.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281919,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281919,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.3,7.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.476,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-14,Sample-Routine,WATER,NA,8/5/2020,10:42:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:42,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-20,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1747,Sample-Routine,WATER,NA,6/21/2017,11:48:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 18:48,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.43,12.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.541,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.15,16.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.189,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.37,17.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.568,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.21,6.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.7,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.06,6.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.333,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.07,8.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.955,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.48,9.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.07,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-16,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.74,6.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.205,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.77,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-14,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002351-3,Field Msr/Obs-Portable Data Logger,WATER,NA,9/30/2008,10:49:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42002351-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/30/2008 17:49,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281908,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281908,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.1,14.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.997,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.69,17.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.755,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.91,22.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.107,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.66,5.66,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901568.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.437,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.43,9.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.795,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2244,Sample-Routine,WATER,NA,7/11/2017,12:15:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6,6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 19:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-33,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-33,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060413-4938620-0605-29-F,Field Msr/Obs,WATER,NA,6/5/2013,17:45:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,No associated lake profile due to equipment issue. No secchi reading due to broken equipment. Dissolved oxygen readings verified from trip sheet and/or raw file but no calibration record available.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.3,6.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2013 0:45,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026681.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-1,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008052-01,Sample-Routine,WATER,NA,8/18/2020,11:07:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/18/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/18/2020 18:07,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-15,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:5,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.54,7.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,42.09,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.55,16.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.368,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.055,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283609,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283609,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10,10,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.65,16.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.625,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-19,Field Msr/Obs,WATER,NA,8/4/2020,9:27:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:27,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-07,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-07,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.16,6.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901544.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-09,Sample-Routine,WATER,NA,6/23/2020,11:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:56,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.25,21.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-80,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2241,Sample-Routine,WATER,NA,7/11/2017,12:07:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 19:07,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-70,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.57,16.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.317,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.07,10.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.65,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-2-F,Field Msr/Obs,WATER,NA,8/7/2018,17:44:01,MST,NA,NA,NA,1.73,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.35,19.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:44,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-29-F,Field Msr/Obs,WATER,NA,10/10/2012,15:09:40,MST,NA,NA,NA,33.949,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; PROBE BROKEN,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.95,6.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 22:09,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.94,12.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.017,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.66,9.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.533,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.34,21.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.947,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-14,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002288-3,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2008,8:36:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002288-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2008 15:36,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.17,12.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.158,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.56,7.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.439,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-115:20120803:SR:WSO,Sample-Routine,WATER,NA,8/3/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-115,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.43,18.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-115,Lake,NA,16010101,NA,NA,NA,NA,41.15233931,-110.8249531,NA,NA,NA,GPS-Unspecified,NAD83,2180.06,m,NA,NA,Digital Elevation Model,NAVD88,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-10,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.44,6.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,39.256,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-20,Field Msr/Obs,WATER,NA,8/4/2020,9:27:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:27,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.62,9.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.02,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.26,10.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.092,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-06,Field Msr/Obs,WATER,NA,8/4/2020,9:12:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.6,19.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:12,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970_02,Field Msr/Obs,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002970,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274007,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274007,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2944,Sample-Routine,WATER,NA,8/14/2018,11:17:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:17,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.86,13.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.038,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.042,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.8,4.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-07,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-07,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",12.57,12.57,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938640-0924-27-F,Field Msr/Obs,WATER,NA,9/24/2013,10:45:00,MST,NA,NA,NA,28.254,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,Dissolved oxygen readings verified from trip sheet and/or raw file but no calibration record available.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.1,8.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:45,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-29-F,Field Msr/Obs,WATER,NA,6/1/2010,19:50:00,MST,NA,NA,NA,15.963,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.98,9.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 2:50,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3320,Sample-Routine,WATER,NA,7/26/2016,11:57:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 18:57,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283601,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283601,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.19,20.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.221,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-89,Field Msr/Obs,WATER,NA,9/9/2020,14:10:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 21:10,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.01,10.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.36,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002539-9,Field Msr/Obs-Portable Data Logger,WATER,NA,6/23/2009,11:25:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002539-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 18:25,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.09,20.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.341,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-9,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42003181_02,Field Msr/Obs,WATER,NA,9/12/2012,13:20:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42003181,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/12/2012 20:20,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.95,9.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.935,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-15,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-45462008,Field Msr/Obs,WATER,NA,5/13/2008,14:10:00,MST,NA,NA,NA,0.102,m,SURFACE,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.38,7.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/13/2008 21:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.68,13.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.156,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-12,Sample-Routine,WATER,NA,6/23/2020,11:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:58,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.7,6.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.493,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",6.18,6.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-56,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.4,13.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-29-F,Field Msr/Obs,WATER,NA,8/5/2010,11:30:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.17,10.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2010 18:30,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.94,10.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.046,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.89,9.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.143,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.5,19.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.32,7.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.728,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,4.63,4.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,49.986,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281916,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281916,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-19,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020_02,Field Msr/Obs,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42003020,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.85,6.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.465,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2838,Sample-Routine,WATER,NA,8/14/2018,11:21:00,MST,NA,NA,NA,29.5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:21,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_3.4_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,3.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.39,11.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.95,8.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.011,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.6,19.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-26,Field Msr/Obs,WATER,NA,8/4/2020,9:27:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:27,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.18,9.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.841,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-2,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.8,8.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9.23,9.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.36,9.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.674,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.2,17.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,23 - Above Thermoclin,NA,5.981,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.77,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_20.1_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,20.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.33,7.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-08,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-08,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1745,Sample-Routine,WATER,NA,6/21/2017,11:43:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 18:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.35,8.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.88,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010779,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10119,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Mahoney Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080004,NA,NA,NA,NA,42.91854,-107.7356,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1768,m,NA,NA,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.38,7.38,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901586.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.35,7.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.548,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.18,20.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.191,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.95,10.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.145,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141_02,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.51,6.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.938,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.71,17.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.913,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.77,7.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.738,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2942,Sample-Routine,WATER,NA,8/14/2018,11:13:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:13,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.56,21.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.512,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.71,19.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.215,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:4,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.901,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.46,9.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Above Thermocline,NA,26.58,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.87,21.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.035,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-72,Field Msr/Obs,WATER,NA,9/10/2020,10:59:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:59,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-40,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.3,5.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.52,8.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.785,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.49,5.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.953,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-01,Sample-Routine,WATER,NA,6/24/2020,13:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:18,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.84,19.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.532,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.01,9.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.685,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.77,17.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.226,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.81,16.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.914,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-11,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.7,10.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.08,7.08,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901718.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200287604,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,8:46:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200287604,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 15:46,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.1,15.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.909,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-80,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-80,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.65,12.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.551,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.89,8.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.169,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3319,Sample-Routine,WATER,NA,7/26/2016,11:54:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 18:54,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-01,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002970-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.6,9.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-16,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.54,5.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.186,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42002981-1,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:20:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Depth Profile Organization ActivityID=YELL_YL005.0M_42002981-1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.9,14.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:20,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-26,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,26,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-26,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL005.0M_42003161_02,Field Msr/Obs,WATER,NA,8/23/2012,7:45:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL005.0M,Organization ActivityID=YELL_YL005.0M_42003161,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/23/2012 14:45,NA,Yellowstone Lake at Mary Bay,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park in Mary Bay. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 38 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.54206955,-110.3080616,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264915.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-18,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.86,7.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.722,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.32,13.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.342,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-27,Field Msr/Obs,WATER,NA,9/10/2020,14:51:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC007,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.6,15.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 21:51,NA,Colter North Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90189297,-110.6448161,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.19,10.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.187,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.71,10.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.46,7.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.294,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.42,18.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.307,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.53,7.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Bottom,NA,42.26,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:3,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.81,6.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Bottom,NA,15.125,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",12.29,12.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.49,9.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.95,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.407,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.57,5.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,49.01,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.43,6.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,37.593,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283411,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283411,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.93,8.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.373,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.45,7.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.71,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.55,8.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.567,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-52,Field Msr/Obs,WATER,NA,9/10/2020,10:37:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:37,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.62,8.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.769,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-01,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42002980-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-97,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.85,6.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.895,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.81,6.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.118,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42003114_02,Field Msr/Obs,WATER,NA,6/12/2012,12:51:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42003114,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 19:51,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011320,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10106,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Twin Buttes Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.23809,-105.8616,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2209,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.5,8.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.34,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-14,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-53,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-57,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.9,12.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.02,16.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.164,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.67,5.67,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.079,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42003198_02,Field Msr/Obs,WATER,NA,10/10/2012,9:35:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Organization ActivityID=YELL_YL002.0M_42003198,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 16:35,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-30,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-96,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-17,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:8,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.69,18.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.185,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,44,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.97,20.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.13,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-39,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-09,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-09,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2937,Sample-Routine,WATER,NA,8/14/2018,11:02:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 18:02,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.95,7.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.754,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-59,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.8,11.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-62,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.26,19.26,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.239,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.34,10.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.625,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.71,16.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.05,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.94,20.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.499,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.45,14.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.058,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283408,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283408,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.04,6.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.63,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A3249,Sample-Routine,WATER,NA,8/15/2017,12:30:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/15/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/15/2017 19:30,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-27-F,Field Msr/Obs,WATER,NA,8/14/2019,16:38:00,MST,NA,NA,NA,22.206,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.03,9.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:38,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.803,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200281712,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,8:55:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200281712,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 15:55,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.64,6.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.275,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-16,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-69,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.91,7.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.905,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.14,8.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.23,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.69,13.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.01,9.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.855,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-90,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200283403,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,8:41:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_4200283403,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 15:41,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.93,20.93,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.642,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.27,21.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.98,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.13,6.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901652.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.49,6.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.363,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42002541/1_02,Quality Control Field Replicate Msr/Obs,WATER,NA,6/23/2009,13:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42002541/1,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/23/2009 20:25,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-115:20120803:SR:WSO,Sample-Routine,WATER,NA,8/3/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-115,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.23,19.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-115,Lake,NA,16010101,NA,NA,NA,NA,41.15233931,-110.8249531,NA,NA,NA,GPS-Unspecified,NAD83,2180.06,m,NA,NA,Digital Elevation Model,NAVD88,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.48,18.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,1.543,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002625-29,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,8:16:00,MST,NA,NA,NA,29,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002625-29,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 15:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1749,Sample-Routine,WATER,NA,6/21/2017,11:53:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 18:53,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-85,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.57,8.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.956,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-09,Field Msr/Obs,WATER,NA,9/9/2020,12:11:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:11,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4016,Sample-Routine,WATER,NA,8/16/2016,10:55:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 17:55,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-55,Field Msr/Obs,WATER,NA,8/4/2020,15:30:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20,20,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:30,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,43.3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.11,21.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.6,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938680-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,18:08:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.04,11.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.077,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 1:08,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-78,Field Msr/Obs,WATER,NA,9/10/2020,10:59:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:59,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216078-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901916.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.14,13.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.172,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-38,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19,19,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938660-0705-2-F,Field Msr/Obs,WATER,NA,7/5/2016,18:43:06,MST,NA,NA,NA,1.558,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.35,20.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2016 1:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.16,6.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.412,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.51,15.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.188,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.09,22.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.343,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.1,21.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.067,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002970-94,Field Msr/Obs-Portable Data Logger,WATER,NA,6/29/2011,8:26:00,MST,NA,NA,NA,94,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002970-94,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/29/2011 15:26,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938680-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,16:35:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.33,9.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.96,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 23:35,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938680-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:37:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.573,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:37,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.25,19.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.006,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-90,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-27-F,Field Msr/Obs,WATER,NA,6/26/2019,17:01:00,MST,NA,NA,NA,21.736,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.17,9.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 0:01,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG170605-4938640-0606-29-F,Field Msr/Obs,WATER,NA,6/6/2017,15:14:07,MST,NA,NA,NA,35.547,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.48,6.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:14,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.33,7.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.357,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.95,5.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.43,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-10,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,10,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-10,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-8,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,8,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-8,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-4,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-27,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.24,21.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.413,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:13.5,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,13.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,43.593,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.08,11.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.648,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.22,5.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,42.14,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-11,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-11,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.76,11.76,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Surface,NA,2.807,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.87,9.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.3,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.87,6.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.414,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.42,7.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.7,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2935,Sample-Routine,WATER,NA,8/14/2018,10:56:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.4,20.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/14/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/14/2018 17:56,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-31,Field Msr/Obs,WATER,NA,8/4/2020,13:02:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC006,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.4,20.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 20:02,NA,Colter South Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90044,-110.6445,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:18,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.5,6.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.63,6.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.641,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-17,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.96,8.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730525.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.38,18.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.055,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.71,15.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.483,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-137:20120914:SR:WSO,Sample-Routine,WATER,NA,9/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-137,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.55,15.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-137,Lake,NA,10070006,NA,NA,NA,NA,44.78132376,-109.2547289,NA,NA,NA,GPS-Unspecified,NAD83,1473.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.39,13.39,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.866,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.32,5.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38.6,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1708,Sample-Routine,WATER,NA,6/19/2018,13:43:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-15,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-88,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-50,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,50,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-50,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:8,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.89,7.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.151,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938660-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,16:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.38,11.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.944,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/18/2021 23:19,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.66,19.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Surface,NA,1.227,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.176,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.55,10.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.183,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.8,5.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.081,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL002.0M_42002877_02,Field Msr/Obs,WATER,NA,10/13/2010,9:28:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL002.0M,Routine Organization ActivityID=YELL_YL002.0M_42002877,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 16:28,NA,"Yellowstone Lake near Dot Island, Yellowstone National Park",Lake,"This site is located in the western half of Yellowstone Lake in Yellowstone National Park between Dot Island and Snipe Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 87 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43859311,-110.4040174,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.09,17.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.602,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2021,17:17:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.66,11.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.334,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:17,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.7,14.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.048,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-94,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,94,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-94,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.7,5.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,48.754,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-14,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:43:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.65,5.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901574.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-60,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938610-0728-2-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,2.87,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.94,20.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.02,18.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.11,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-25,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3314,Sample-Routine,WATER,NA,7/26/2016,11:43:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 18:43,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901556.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-01,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-5,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113_02,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.19,7.19,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.801,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.71,6.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.131,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.61,7.61,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.361,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.44,11.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730837.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11,11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.061,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.71,18.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.809,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4018,Sample-Routine,WATER,NA,8/16/2016,11:00:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 18:00,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.28,22.28,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.074,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-12,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-60,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,60,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-60,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002972-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,6:47:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002972-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 13:47,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-40,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,40,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-40,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-18,Field Msr/Obs,WATER,NA,8/4/2020,9:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:19,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3315,Sample-Routine,WATER,NA,7/26/2016,11:46:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 18:46,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-04,Field Msr/Obs,WATER,NA,9/9/2020,12:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:05,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938640-0706-2-F,Field Msr/Obs,WATER,NA,7/6/2016,17:06:47,MST,NA,NA,NA,2.366,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.2,20.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/7/2016 0:06,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.94,9.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.395,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011320,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10106,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Twin Buttes Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.23809,-105.8616,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2209,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-25,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.6,6.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.03,6.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.282,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_24.7_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,24.7,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.18,7.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:2,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-13,Field Msr/Obs,WATER,NA,8/4/2020,9:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 16:19,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:6,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.8,9.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200274049,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,10:04:00,MST,NA,NA,NA,49,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_4200274049,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 17:04,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3322,Sample-Routine,WATER,NA,7/26/2016,12:01:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 19:01,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:25.5,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,25.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-18,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,18,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-18,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.9,7.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.8,19.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-08,Sample-Routine,WATER,NA,8/5/2020,10:38:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,20.7,20.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:38,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938680-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,21:01:36,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.03,13.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.907,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 4:01,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.4,5.4,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.482,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1709,Sample-Routine,WATER,NA,6/19/2018,13:46:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:46,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.21,13.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.535,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.91,14.91,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.925,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.46,21.46,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.9,20.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.322,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-05,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-05,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15,15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-07,Field Msr/Obs,WATER,NA,9/9/2020,12:11:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:11,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-15,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,15,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-15,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.36,20.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.012,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.77,13.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.675,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938640-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,16:10:45,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.07,8.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,Bottom,NA,36.92,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 23:10,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.71,13.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.488,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:7,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.5,11.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938610-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,15:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.64,16.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.813,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 22:57,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010776,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10107,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Coe Enlargement Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080014,NA,NA,NA,NA,44.28174,-109.1102,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2034,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.4,14.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287801,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287801,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3321,Sample-Routine,WATER,NA,7/26/2016,12:00:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.1,7.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 19:00,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-137:20120914:SR:WSO,Sample-Routine,WATER,NA,9/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-137,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.82,15.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-137,Lake,NA,10070006,NA,NA,NA,NA,44.78132376,-109.2547289,NA,NA,NA,GPS-Unspecified,NAD83,1473.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938665-0626-2-F,Quality Control Field Replicate Msr/Obs,WATER,NA,6/26/2019,17:15:00,MST,NA,NA,NA,2.104,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938665,QAQC Replicate of 4938640,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.72,15.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 0:15,NA,FLAMING GORGE RES BL BUCKBOARD Replicate of 4938640,Lake,Replicate of 4938640,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-30,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.89,9.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.19,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.7,15.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.146,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.86,10.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.63,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,1.9,1.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938620-0728-2-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,1.05,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.34,21.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.11,22.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.436,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010738,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10118,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.40169,-105.8285,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2181,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-14,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,14,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-14,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.83,15.83,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.443,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_33.3_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,33.3,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.62,9.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.394,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.64,15.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.134,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003033-12,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2011,8:08:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003033-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2011 15:08,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.87,7.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,38.568,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.76,4.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.24,19.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.858,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.29,9.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.74,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.04,14.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.19,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.84,20.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.517,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.3,21.3,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.141,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-4,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,4,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-4,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,8.1,8.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A1705,Sample-Routine,WATER,NA,6/19/2018,13:35:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12,12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/19/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/19/2018 20:35,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.86,21.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.369,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938685-0727-2-F,Field Msr/Obs,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,2.03,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.45,22.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-AA,Field Msr/Obs,WATER,NA,8/5/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:54,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.72,4.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:29:50,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.72,7.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.95,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:29,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.42,21.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.105,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011407,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18,18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-74,Field Msr/Obs,WATER,NA,9/10/2020,10:59:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:59,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216078-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.35,11.35,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901898.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.44,9.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.069,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.1,9.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.537,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.06,5.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901484.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.77,12.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.561,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938660-0728-23-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,8.01,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.98,18.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010776,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10107,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.2,16.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Coe Enlargement Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080014,NA,NA,NA,NA,44.28174,-109.1102,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2034,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-13,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-03,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-03,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.1,13.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.08,6.08,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,46.892,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.65,5.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901580.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938660-0728-27-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,13.88,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.77,11.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.84,7.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.246,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,13.62,13.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.92,6.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.016,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.15,13.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026657.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.33,7.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.08,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:48:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.11,7.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.961,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.98,8.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.215,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:26,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216078-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901934.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.78,8.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.76,19.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",21.6,21.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.09,11.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.085,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:4,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,1.9,1.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.01,17.01,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901784.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730693.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.98,10.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.371,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.178,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-01,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,1,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-01,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.3,14.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938660-0728-2-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,2.04,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.82,20.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.53,7.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.99,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.62,14.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026633.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.55,8.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264963.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-78,Field Msr/Obs,WATER,NA,8/5/2020,11:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,17.2,17.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 18:35,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.23,13.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.96,7.96,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.07,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.37,22.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.041,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051809-4938640-0519-2-F,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.75,11.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.63,8.63,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.375,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.68,4.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4022,Sample-Routine,WATER,NA,8/16/2016,11:09:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 18:09,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.01,11.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.372,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010806,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10130,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Banner Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180004,NA,NA,NA,NA,41.41529,-106.3582,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3027,m,NA,NA,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.94,7.94,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730705.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003111-13,Field Msr/Obs,WATER,NA,6/12/2012,9:16:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003111-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 16:16,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:8,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.1,12.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.21,21.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.01,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.89,8.89,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.46,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.7,8.7,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.312,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.62,13.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.51,10.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.676,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.43,15.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.163,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010824,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10111,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9.2,9.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.06903,-109.5855,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3198,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,44,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.37,9.37,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.86,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.1,7.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.72,7.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901850.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597-16,Field Msr/Obs-Portable Data Logger,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,16,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597-16,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010781,Field Msr/Obs,WATER,NA,8/20/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10102,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,20.5,20.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,S P Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10180007,NA,NA,NA,NA,42.79375,-106.4259,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1633,m,NA,NA,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010724,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.2,18.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.55,7.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901700.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.34,7.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,41.58,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938640-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:51:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NO PH READING; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.25,13.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.586,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:51,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.51,22.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.105,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.44,7.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901706.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",11.96,11.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.92,15.92,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.786,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.07,6.07,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901670.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.59,11.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.382,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.18,17.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.104,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.15,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.34,11.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.572,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:41:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.27,5.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.53,10.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.356,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.56,8.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.35,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901430.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.77,6.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.919,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:14,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.21,7.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901802.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.37,8.37,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:15,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4017,Sample-Routine,WATER,NA,8/16/2016,10:58:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 17:58,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.82,9.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.948,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A3300,Sample-Routine,WATER,NA,7/26/2016,12:09:00,MST,NA,NA,NA,28.1,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/26/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/26/2016 19:09,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.47,7.47,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901796.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_14.1_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,14.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.62,7.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.72,8.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.01,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.3,3.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.059,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.04,13.04,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.44,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.91,16.91,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.44,8.44,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938620-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:20:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.95,20.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.133,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:20,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.22,9.22,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264951.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.88,7.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.012,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.12,12.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746606.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.28,13.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-2-F,Field Msr/Obs,WATER,NA,8/8/2018,15:47:36,MST,NA,NA,NA,1.43,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.55,21.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.72,10.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.16,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.84,20.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.117,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.54,16.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:5,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011320,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10106,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.8,17.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Twin Buttes Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180010,NA,NA,NA,NA,41.23809,-105.8616,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2209,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010823,Field Msr/Obs,WATER,NA,8/27/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10042,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.27144,-109.4346,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2061,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010781,Field Msr/Obs,WATER,NA,8/20/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10102,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,S P Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10180007,NA,NA,NA,NA,42.79375,-106.4259,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1633,m,NA,NA,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938650-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,18:04:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.14,11.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.089,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/15/2019 1:04,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216078-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.09,11.09,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901910.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-03,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-03,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.9,9.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003140-06,Field Msr/Obs,WATER,NA,7/19/2012,8:56:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003140-06,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,15.1,15.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 15:56,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.15,9.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.51,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209907-PR3866062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.59,15.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730735.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.36,14.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.54,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_17_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.39,7.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.9,4.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938640-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,15:24:06,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.78,6.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.167,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 22:24,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.24,10.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.04,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.98,19.98,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.18,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010796,Field Msr/Obs,WATER,NA,8/21/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-25,Field Msr/Obs,WATER,NA,9/10/2020,14:51:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC007,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,16.7,16.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 21:51,NA,Colter North Dock,Lake,NA,17040101,NA,NA,NA,NA,43.90189297,-110.6448161,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.74,13.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.44,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.85,10.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.303,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",21.6,21.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.3,18.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.81,18.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.986,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938620-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:18:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.15,16.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.825,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:18,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.87,6.87,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901730.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.77,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.78,16.78,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.33,6.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901610.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.75,19.75,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.06,5.06,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901496.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.4,3.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.41,13.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.225,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,21.16,21.16,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730753.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010796,Field Msr/Obs,WATER,NA,8/21/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.34,7.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.85,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:4,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.56,6.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901454.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003307-13,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,11:13:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003307-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 18:13,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.54,16.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216078-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.76,10.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901922.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,1.7,1.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.48,7.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901874.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.27,11.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.721,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938660-0924-29-F,Field Msr/Obs,WATER,NA,9/24/2013,12:48:00,MST,NA,NA,NA,16.57,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,Dissolved oxygen readings verified from trip sheet and/or raw file but no calibration record available.,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.84,11.84,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 19:48,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.65,7.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.36,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.18,18.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.913,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",10.11,10.11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200283605,Field Msr/Obs-Portable Data Logger,WATER,NA,9/13/2010,10:20:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200283605,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.2,10.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/13/2010 17:20,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.7,19.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:8,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.3,11.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1754,Sample-Routine,WATER,NA,6/21/2017,12:07:00,MST,NA,NA,NA,21,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 19:07,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.2,3.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938660-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2201,Sample-Routine,WATER,NA,7/17/2018,11:20:00,MST,NA,NA,NA,11,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,1.6,1.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:20,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.9,18.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.89,16.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.02,9.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.749,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-115:20120803:SR:WSO,Sample-Routine,WATER,NA,8/3/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-115,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.96,18.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-115,Lake,NA,16010101,NA,NA,NA,NA,41.15233931,-110.8249531,NA,NA,NA,GPS-Unspecified,NAD83,2180.06,m,NA,NA,Digital Elevation Model,NAVD88,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.21,9.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.942,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.975,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.129,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.33,11.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730843.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:2,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.5,10.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010781,Field Msr/Obs,WATER,NA,8/20/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10102,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.3,19.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,S P Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10180007,NA,NA,NA,NA,42.79375,-106.4259,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1633,m,NA,NA,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.11,12.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.405,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:14,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.7,4.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.64,19.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.234,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:3,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.6,16.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216077-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.54,7.54,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901856.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A1677,Sample-Routine,WATER,NA,6/21/2017,12:15:00,MST,NA,NA,NA,29.9,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/21/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/21/2017 19:15,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",12.24,12.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:3,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""T"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-2-F,Field Msr/Obs,WATER,NA,6/1/2010,19:50:00,MST,NA,NA,NA,0,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/2/2010 2:50,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-68,Field Msr/Obs,WATER,NA,8/4/2020,15:35:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC015,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,7.2,7.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/4/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/4/2020 22:35,NA,Moran Bay,Lake,NA,17040101,NA,NA,NA,NA,43.85860214,-110.7175215,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:8,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.3,7.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.69,7.69,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264999.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.06,8.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.384,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_32.1_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,32.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.18,6.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:9,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.55,16.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,6.2,6.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002629-19,Field Msr/Obs-Portable Data Logger,WATER,NA,9/8/2009,10:42:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Routine Organization ActivityID=YELL_YL007.0M_42002629-19,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/8/2009 17:42,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938640-0728-23-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,10.91,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.86,17.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.85,8.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.44,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:0,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.51,11.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL006.0M_42003142_02,Field Msr/Obs,WATER,NA,7/19/2012,13:59:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL006.0M,Organization ActivityID=YELL_YL006.0M_42003142,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 20:59,NA,Yellowstone Lake at southeast arm,Lake,"This site is located in the eastern side of Yellowstone Lake in the southern half of the southeast arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 78 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south of this water quality site.",10070001,NA,NA,NA,NA,44.33906728,-110.2485088,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.35,16.35,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.272,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.99,5.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.97,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.03,7.03,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5265035.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,9,9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:32,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,32,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011407,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.88,19.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741226.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2027:1:070620:0,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2027,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,McFarlane Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180011001217"";COM_ID=""17481797"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-788186.11527"";ALBERS_Y=""570916.985185"";FLD_LON_DD=""-105.62971"";FLD_LAT_DD=""42.24008"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180011,NA,NA,NA,NA,42.23979744,-105.6303731,NA,NA,NA,GPS-Unspecified,WGS84,2339.29,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.745,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026735.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:3.66,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,3.66,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.16666667,23.16666667,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:1:070626:5,Field Msr/Obs,WATER,NA,6/26/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.24,15.24,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741274.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.18,8.18,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264975.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,20.21,20.21,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741328.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2.8,2.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG070516-4938620-0706-29-F,Field Msr/Obs,WATER,NA,7/6/2016,16:40:38,MST,NA,NA,NA,43.101,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,Conductivity Probe malfunction,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2016 23:40,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.48,10.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.02,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.39,6.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741310.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.73,8.73,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.477,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_29.4_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,29.4,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,6.83,6.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:1,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.9,19.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.22,8.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.279,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.81,19.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.219,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",6.72,6.72,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.03,11.03,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.009,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-3,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-3,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1562:1:070611:6,Field Msr/Obs,WATER,NA,6/11/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1562,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.6,13.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sixtyseven Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040101003375"";COM_ID=""18347649"";STATUS_VER=""Target_Sampled"";NHDNAME=""Sixty-Seven Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1155568.42971"";ALBERS_Y=""657586.507398"";FLD_LON_DD=""-110.21049"";FLD_LAT_DD=""42.59522"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040101,NA,NA,NA,NA,42.59773028,-110.2208282,NA,NA,NA,GPS-Unspecified,WGS84,2153.13,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.34,5.34,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39.354,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003141-03,Field Msr/Obs,WATER,NA,7/19/2012,11:34:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003141-03,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.3,16.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/19/2012 18:34,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.64,20.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.55,18.55,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.016,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.72,21.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.376,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.69,6.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.301,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,4.71,4.71,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,44.725,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.16,7.16,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.237,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20.97,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.25,6.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.963,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:34,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,34,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,5.15,5.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901466.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006073-15,Sample-Routine,WATER,NA,6/24/2020,13:24:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.8,5.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/24/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/24/2020 20:24,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-17,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-17,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.8,6.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-133:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-133,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",5.13,5.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-133,Lake,NA,14040104,NA,NA,NA,NA,42.71197472,-109.1788711,NA,NA,NA,GPS-Unspecified,NAD83,3249.12,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-31,Field Msr/Obs,WATER,NA,9/9/2020,16:00:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,15.2,15.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:00,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.44,6.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.095,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.9,6.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.25,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.65,10.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.863,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-2-F,Field Msr/Obs,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,2.369,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.86,21.86,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.82,6.82,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901436.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.65,9.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.018,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.02,11.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.138,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-115:20120803:SR:WSO,Sample-Routine,WATER,NA,8/3/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-115,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.42,19.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-115,Lake,NA,16010101,NA,NA,NA,NA,41.15233931,-110.8249531,NA,NA,NA,GPS-Unspecified,NAD83,2180.06,m,NA,NA,Digital Elevation Model,NAVD88,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003002-25,Field Msr/Obs,WATER,NA,8/17/2011,8:27:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003002-25,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 15:27,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.42,7.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.099,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:20.5,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,20.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.4,8.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938680-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,19:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.65,21.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.237,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 2:39,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002579-27,Field Msr/Obs-Portable Data Logger,WATER,NA,7/21/2009,9:32:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002579-27,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/21/2009 16:32,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.71,13.71,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730615.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,1,1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.4,4.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.81,7.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.226,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.405,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216078-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.12,10.12,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901940.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.1,6.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,33.3,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938610-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:36:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.11,10.11,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.602,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:36,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.01,11.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.111,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011407,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.95,16.95,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-28,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,28,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-28,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.4,5.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-7,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-29-F,Field Msr/Obs,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.42,9.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901790.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.06,8.06,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.017,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200287827,Field Msr/Obs-Portable Data Logger,WATER,NA,10/13/2010,11:05:00,MST,NA,NA,NA,27,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200287827,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,7.4,7.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 18:05,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,9.48,9.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264945.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1270:1:070830:4.57,Field Msr/Obs,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,4.57,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1270,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.8,12.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Upper Dinwoody Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080001002585"";COM_ID=""12898432"";STATUS_VER=""Target_Sampled"";NHDNAME=""Dinwoody Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1076110.98058"";ALBERS_Y=""731495.401787"";FLD_LON_DD=""-109.385833"";FLD_LAT_DD=""43.354444"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",10080001,NA,NA,NA,NA,43.35530141,-109.3834683,NA,NA,NA,GPS-Unspecified,WGS84,1975,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010871,Field Msr/Obs,WATER,NA,9/7/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10082,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.01,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10180011,NA,NA,NA,NA,41.5112,-105.4172,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2327,m,NA,NA,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.09,16.09,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.09,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.77,10.77,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.233,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0518-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/18/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.49,7.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.73,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,1.8,1.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.75,15.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.498,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:3,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010670,Field Msr/Obs,WATER,NA,8/3/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10045,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,19.76,19.76,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,None,Lake,Lake/Pond: Hydrographic Category = Perennial,10090205,NA,NA,NA,NA,44.1842148,-106.7589307,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1610.18,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.52,11.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.53,4.53,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938620-0728-23-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.25,18.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.65,4.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-137:20120914:SR:WSO,Sample-Routine,WATER,NA,9/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-137,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.51,15.51,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-137,Lake,NA,10070006,NA,NA,NA,NA,44.78132376,-109.2547289,NA,NA,NA,GPS-Unspecified,NAD83,1473.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.42,6.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901598.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.48,6.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,29.09,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216078-PR3868051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,11.29,11.29,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901904.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,49.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.2,8.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2011317,Field Msr/Obs,WATER,NA,8/11/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10019,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,10090206,NA,NA,NA,NA,44.47862,-106.7522,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1393,m,NA,NA,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010724,Field Msr/Obs,WATER,NA,8/13/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10039,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Hogan Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10070006,NA,NA,NA,NA,44.78761,-109.2607,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1473,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938610-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,13:30:40,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.32,6.32,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.969,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 20:30,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-1907094-06,Sample-Routine,WATER,NA,7/30/2019,11:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/30/2019,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/30/2019 18:08,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2634:1:070730:0,Field Msr/Obs,WATER,NA,7/30/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2634,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.8,16.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Little Bear Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-30"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003828"";COM_ID=""4268336"";STATUS_VER=""Target_Sampled"";NHDNAME=""Little Bear Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062332.36815"";ALBERS_Y=""908109.485047"";FLD_LON_DD=""-109.52302"";FLD_LAT_DD=""44.93961"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.94116736,-109.5249202,NA,NA,NA,GPS-Unspecified,WGS84,2911,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2207,Sample-Routine,WATER,NA,7/17/2018,11:33:00,MST,NA,NA,NA,25,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:33,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-2-F,Field Msr/Obs,WATER,NA,8/14/2019,15:59:00,MST,NA,NA,NA,1.681,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.85,21.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:59,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:1,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,19.1,19.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003020-12,Field Msr/Obs-Portable Data Logger,WATER,NA,9/15/2011,9:15:00,MST,NA,NA,NA,12,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42003020-12,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/15/2011 16:15,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.6,7.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938660-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.026,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.2,12.2,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.018,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,18.42,18.42,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730567.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",9.56,9.56,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:9,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.5,9.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.44,15.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.588,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010776,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10107,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Coe Enlargement Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080014,NA,NA,NA,NA,44.28174,-109.1102,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2034,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:6,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-41,Field Msr/Obs,WATER,NA,9/9/2020,16:15:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 23:15,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,0.8,0.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,34.47,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_4200281913,Field Msr/Obs-Portable Data Logger,WATER,NA,8/18/2010,10:50:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_4200281913,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/18/2010 17:50,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.83,6.83,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901814.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938660-0616-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/16/2015,18:01:37,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.43,8.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.822,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 1:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.31,8.31,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264969.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:24,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,24,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.15,12.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.534,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-66,Field Msr/Obs,WATER,NA,9/10/2020,10:45:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.9,6.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:45,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:26,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:18,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL001.0M_42002880_02,Field Msr/Obs,WATER,NA,10/13/2010,13:47:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL001.0M,Routine Organization ActivityID=YELL_YL001.0M_42002880,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.1,11.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/13/2010 20:47,NA,"Yellowstone Lake near Signal Pt., Yellowstone National Park",Lake,"This site is located on the eastern half of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site averages about 80 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.41887005,-110.3041022,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.64,13.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.169,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.48,7.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901772.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.33,6.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901826.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.36,8.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.99,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.59,13.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2379:1:070731:5.5,Field Msr/Obs,WATER,NA,7/31/2007,NA,NA,NA,NA,NA,5.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2379,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Nine Mile Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-31"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10180010001889"";COM_ID=""17494541"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-807072.140599"";ALBERS_Y=""461268.16439"";FLD_LON_DD=""-105.72309"";FLD_LAT_DD=""41.24771"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10180010,NA,NA,NA,NA,41.24777405,-105.7229345,NA,NA,NA,GPS-Unspecified,WGS84,2191.92,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010779,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10119,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17,17,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Mahoney Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080004,NA,NA,NA,NA,42.91854,-107.7356,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1768,m,NA,NA,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",8.28,8.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:18,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216072-PR3861051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.99,7.99,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901418.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.25,9.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19.35,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA071701-168965-PR3977071701,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2001,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.33,15.33,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5026573.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-23,Field Msr/Obs,WATER,NA,9/9/2020,12:16:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC002,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/9/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/9/2020 19:16,NA,Signal Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.8466988,-110.6110001,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.9,11.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938650-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,18:43:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.48,12.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.682,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 1:43,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.27,7.27,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901808.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:7,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.9,8.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938650-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,15:47:20,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.27,9.27,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,17.323,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 22:47,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-18-A2205,Sample-Routine,WATER,NA,7/17/2018,11:29:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.1,6.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/17/2018,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/17/2018 18:29,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938685-0727-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/27/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.48,22.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.002,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.49,18.49,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.31,18.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.554,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:26,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,26,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.6,10.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938680-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.13,12.13,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,13.819,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938660-0728-29-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,22.01,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.95,8.95,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.15,16.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938620-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:53:01,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.65,5.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.374,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:53,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:32,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,32,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:19,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.1,10.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0842:1:070801:16,Field Msr/Obs,WATER,NA,8/1/2007,NA,NA,NA,NA,NA,16,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0842,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Heart Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-01"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10070006003791"";COM_ID=""4268256"";STATUS_VER=""Target_Sampled"";NHDNAME=""Heart Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1062739.70675"";ALBERS_Y=""912825.48617"";FLD_LON_DD=""-109.53908"";FLD_LAT_DD=""44.98268"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10070006,NA,NA,NA,NA,44.98259563,-109.5385322,NA,NA,NA,GPS-Unspecified,WGS84,3139,m,NA,NA,Other,NGVD29,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010778,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10078,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.9,15.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Kemmerer Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,14040107,NA,NA,NA,NA,41.94495,-110.6569,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2179,m,NA,NA,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-70,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,70,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-70,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4.3,4.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.25,11.25,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.461,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.94,20.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.869,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938620-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,14:08:35,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.49,11.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.303,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 21:08,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR,Bureau of Reclamation,1119USBR-GRAB-2001-0,Sample,WATER,NA,7/12/2001,11:34:00,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR-JAC001, ,NA,NA,NA,COMPOSITE,COMPOSITE,COMPOSITE,Unknown,NA,"TEMPERATURE, WATER", ,18.8,18.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA, ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,"JACKSON LAKE,700 FT U/S OF DAM,SOUTH BANK",Lake,description_text,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,Unknown,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,12.7,12.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730633.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010781,Field Msr/Obs,WATER,NA,8/20/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10102,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.7,18.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.1,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,S P Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10180007,NA,NA,NA,NA,42.79375,-106.4259,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,1633,m,NA,NA,US,56,25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938660-1012-29-F,Field Msr/Obs,WATER,NA,10/12/2010,15:52:00,MST,NA,NA,NA,17,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.99,10.99,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/12/2010 22:52,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:6,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,10.3,10.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",12.36,12.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-116:20120805:SR:WSO,Sample-Routine,WATER,NA,8/5/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-116,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.55,16.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-116,Lake,NA,14040102,NA,NA,NA,NA,42.80153184,-109.4608964,NA,NA,NA,GPS-Unspecified,NAD83,2896.17,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003113-13,Field Msr/Obs,WATER,NA,6/12/2012,11:06:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003113-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5,5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/12/2012 18:06,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0906:1:070612:1,Field Msr/Obs,WATER,NA,6/12/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0906,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.5,12.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Phelps Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-12"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040103000849"";COM_ID=""24435779"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1183873.99458"";ALBERS_Y=""780097.80837"";FLD_LON_DD=""-110.79834"";FLD_LAT_DD=""43.64877"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040103,NA,NA,NA,NA,43.64334502,-110.796597,NA,NA,NA,GPS-Unspecified,WGS84,2021.7,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R04:20120814:SR:WSO,Sample-Routine,WATER,NA,8/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R04,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R04,Lake,NA,10070001,NA,NA,NA,NA,44.49478161,-110.4302646,NA,NA,NA,GPS-Unspecified,NAD83,2394.04,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG100912-4938620-1010-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/10/2012,14:15:44,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NO PH READINGS; BROKEN PROBE,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.42,8.42,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,23.4,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/10/2012 21:15,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_067_20160805110006^01,Field Msr/Obs,WATER,NA,8/5/2016,11:00:00,MST,NA,NA,NA,33,m,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_067,No Fish Orig ID=0805161100 Organization ActivityID=YELL_YSL_067_20160805110006,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.6,17.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/5/2016 18:00,NA,Yellowstone Lake Shoreline KM 67,Lake,This site is located at Steamboat Point on the north end of Yellowstone Lake near Mary Bay.,10070001,NA,NA,NA,NA,44.5294907,-110.2978001,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.05,17.05,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209908-PR3868062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,15.43,15.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730789.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",20.6,20.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-07,Sample-Routine,WATER,NA,6/23/2020,11:54:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,8.6,8.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:54,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.69,8.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,22.327,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.96,7.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264987.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:20,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,20,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.68,6.68,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901820.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1723:1:070620:3,Field Msr/Obs,WATER,NA,6/20/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_SPL,NA,NARS_WQX-NLA06608-1723,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Wyoming Hereford Ranch Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-20"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""SPL"";REACHCODE=""10190009000623"";COM_ID=""2875411"";STATUS_VER=""Target_Sampled"";NHDNAME=""Wyoming Hereford Ranch Reservoir Number 2"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-718970.875264"";ALBERS_Y=""439070.811562"";FLD_LON_DD=""-104.63841"";FLD_LAT_DD=""41.12529"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.12635244,-104.6435242,NA,NA,NA,GPS-Unspecified,WGS84,1770.55,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938660-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,18:49:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.85,12.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.988,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 1:49,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.55,19.55,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741256.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.1,5.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,48,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.58,7.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.87,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938610-1023-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/23/2019,15:09:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.62,9.62,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,27.18,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:09,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003305-5,Field Msr/Obs-Portable Data Logger,WATER,NA,9/9/2013,8:51:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003305-5,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,16.1,16.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/9/2013 15:51,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938650-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,18:02:30,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.9,9.9,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.87,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 1:02,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.51,11.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.7,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.82,20.82,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.039,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938620-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.85,7.85,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.51,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.56,7.56,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.65,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938685-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,17:56:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.68,21.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.525,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 0:56,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-16-A4014,Sample-Routine,WATER,NA,8/16/2016,10:49:00,MST,NA,NA,NA,5,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/16/2016,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/16/2016 17:49,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938680-0605-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/5/2017,19:26:22,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.81,8.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,16.64,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 2:26,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938685-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,14:33:27,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.57,7.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.81,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 21:33,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:8,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,8,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.7,9.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:3,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13,13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:2.74,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,2.74,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.22222222,23.22222222,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.97,15.97,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.417,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:40,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,40,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010647,Field Msr/Obs,WATER,NA,8/1/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10015,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.48,4.48,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Fremont Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.95366,-109.804,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2262,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010776,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10107,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.2,14.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.8,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Coe Enlargement Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080014,NA,NA,NA,NA,44.28174,-109.1102,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2034,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.45,6.45,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.032,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1259:1:070621:5,Field Msr/Obs,WATER,NA,6/21/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1259,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.5,8.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Brooklyn Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-21"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10180010001788"";COM_ID=""17493677"";STATUS_VER=""Target_Sampled"";NHDNAME=""Brooklyn Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-849181.000769"";ALBERS_Y=""479689.420597"";FLD_LON_DD=""-106.25073"";FLD_LAT_DD=""41.37168"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10180010,NA,NA,NA,NA,41.37196888,-106.250251,NA,NA,NA,GPS-Unspecified,WGS84,3210.57,m,NA,NA,Other,NGVD29,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.36,6.36,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901526.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009070-77,Field Msr/Obs,WATER,NA,9/10/2020,10:59:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC014,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,3.6,3.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,9/10/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,9/10/2020 17:59,NA,Inlet Arizona Island,Lake,NA,17040101,NA,NA,NA,NA,43.94175,-110.6923,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.87,6.87,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.604,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.69,5.69,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.71,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG072709-4938640-0728-2-F,Field Msr/Obs,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,3.41,m,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.24,21.24,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.33,22.33,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.077,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938640-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,14:31:43,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,5.54,5.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,34.698,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 21:31,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938660-0813-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/13/2019,20:08:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.22,20.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.677,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 3:08,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.4,18.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730549.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-147:20120917:SR:WSO,Sample-Routine,WATER,NA,9/17/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-147,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.88,16.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-147,Lake,NA,14040101,NA,NA,NA,NA,42.04937237,-110.0809239,NA,NA,NA,GPS-Unspecified,NAD83,1984.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938640-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,16:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.02,10.02,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.811,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/26/2019 23:57,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:5,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";METALIMNION=""B"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002776_02,Field Msr/Obs,WATER,NA,7/12/2010,15:34:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Routine Organization ActivityID=YELL_YL004.0M_42002776,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,10.8,10.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2010 22:34,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.44,14.44,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.56,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-20,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,20,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-20,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,15.6,15.6,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.622,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.74,21.74,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.056,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,17.25,17.25,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730585.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010845,Field Msr/Obs,WATER,NA,8/30/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10064,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Star Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,42.80153,-109.4609,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2896,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.59,17.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12.34,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938660-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.66,12.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.52,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002989-2,Field Msr/Obs-Portable Data Logger,WATER,NA,7/14/2011,8:21:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002989-2,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.6,11.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/14/2011 15:21,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.81,6.81,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,31.336,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010777,Field Msr/Obs,WATER,NA,8/17/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10101,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,4.6,4.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,12,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sauerkraut Lakes,Lake,Lake/Pond: Hydrographic Category = Perennial,14040102,NA,NA,NA,NA,43.10524,-109.7326,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3108,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.78,20.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.243,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003003-02,Field Msr/Obs-Portable Data Logger,WATER,NA,8/17/2011,13:46:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42003003-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14.5,14.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/17/2011 20:46,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.31,11.31,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.15,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.36,21.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.1,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.88,19.88,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741214.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938640-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,16:34:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.05,8.05,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,25.73,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 23:34,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.21,6.21,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40.757,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938640-0602-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/2/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.72,9.72,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.48,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.54,9.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,21.758,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:7,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,7,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.7,11.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.5,5.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.65,7.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901748.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-30,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,30,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-30,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.7,5.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2006067-11,Sample-Routine,WATER,NA,6/23/2020,11:57:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-MIN001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.3,6.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,6/23/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,6/23/2020 18:57,NA,GRASSY 100M ABOVE DAM,Reservoir,NA,17040203,NA,NA,NA,NA,44.1291667,-110.815,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.18,7.18,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,24.67,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003253-90,Field Msr/Obs-Portable Data Logger,WATER,NA,6/11/2013,9:39:00,MST,NA,NA,NA,90,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003253-90,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.8,3.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/11/2013 16:39,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216076-PR3866051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901766.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.17,21.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4.02,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1674:1:070727:0,Field Msr/Obs,WATER,NA,7/27/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1674,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.2,23.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Feather Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-27"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10020007003360"";COM_ID=""3060526"";STATUS_VER=""Target_Sampled"";NHDNAME=""Feather Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1171358.50073"";ALBERS_Y=""879781.535183"";FLD_LON_DD=""-110.83594"";FLD_LAT_DD=""44.54367"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",10020007,NA,NA,NA,NA,44.54399881,-110.8356239,NA,NA,NA,GPS-Unspecified,WGS84,2200.68,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:38,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,38,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.1,4.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2714:1:070811:5,Field Msr/Obs,WATER,NA,8/11/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2714,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.4,23.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,L A K Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10120107001602"";COM_ID=""9386655"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-648913.03642"";ALBERS_Y=""736030.523488"";FLD_LON_DD=""-104.10971"";FLD_LAT_DD=""43.82538"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(20,50]""",10120107,NA,NA,NA,NA,43.82780189,-104.1093535,NA,NA,NA,GPS-Unspecified,WGS84,1333,m,NA,NA,Other,NGVD29,US,56,45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938660-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,17:43:26,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.8,18.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.844,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 0:43,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.9,18.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.43,13.43,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.794,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42002973-02,Field Msr/Obs-Portable Data Logger,WATER,NA,7/6/2011,8:54:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Depth Profile Organization ActivityID=YELL_YL007.0M_42002973-02,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11,11,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/6/2011 15:54,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938610-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.65,20.65,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.791,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:1:070609:40,Field Msr/Obs,WATER,NA,6/9/2007,NA,NA,NA,NA,NA,40,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,4.2,4.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG061615-4938620-0617-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/17/2015,14:43:08,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.22,6.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,39.476,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/17/2015 21:43,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010776,Field Msr/Obs,WATER,NA,8/18/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10107,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.8,15.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Coe Enlargement Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,10080014,NA,NA,NA,NA,44.28174,-109.1102,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2034,m,NA,NA,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.49,20.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL007.0M_42003288-7,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,12:27:00,MST,NA,NA,NA,7,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL007.0M,Organization ActivityID=YELL_YL007.0M_42003288-7,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 19:27,NA,Yellowstone Lake in south arm,Lake,"This site is located in the southern portion of Yellowstone Lake in the south half of the south arm. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 50 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest and flows into the southeast arm just south. This site is located about three-fourth the way down in the south arm near the non-motorized zone line.",10070001,NA,NA,NA,NA,44.30595168,-110.3243066,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:0,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.5,20.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,7.5,7.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,19,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.6,14.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938620-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,8.17,8.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,30.91,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938640-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2012,11:54:51,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,20.66,20.66,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,2.428,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 18:54,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273880,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,80,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273880,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002980-13,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,7:25:00,MST,NA,NA,NA,13,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_42002980-13,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,5.6,5.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 14:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080612-4938660-0806-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/6/2012,20:01:19,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.15,12.15,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.449,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2012 3:01,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2008015-09,Sample-Routine,WATER,NA,8/5/2020,10:39:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.6,19.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 17:39,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",10.4,10.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-17-A2243,Sample-Routine,WATER,NA,7/11/2017,12:12:00,MST,NA,NA,NA,19,m,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC001,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,6.7,6.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,7/11/2017,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,7/11/2017 19:12,NA,"JACKSON Lake,700 FT U/S OF DAM,SOUTHBANK",Reservoir,NA,17040101,NA,NA,NA,NA,43.8566667,-110.59,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010806,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10130,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,15.5,15.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.5,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Banner Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,10180004,NA,NA,NA,NA,41.41529,-106.3582,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3027,m,NA,NA,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:24.5,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,24.5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.1,9.1,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.48,6.48,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,37.118,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938660-1022-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/22/2019,15:51:58,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.38,9.38,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8.75,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/22/2019 22:51,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL004.0M_42002982-6,Field Msr/Obs-Portable Data Logger,WATER,NA,7/12/2011,9:47:00,MST,NA,NA,NA,6,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL004.0M,Depth Profile Organization ActivityID=YELL_YL004.0M_42002982-6,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,9.4,9.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/12/2011 16:47,NA,Yellowstone Lake @ east side of Stevenson Island,Lake,"This site is located in the eastern side of Yellowstone Lake in Yellowstone National Park between Stevenson Island and Elk Point. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 93 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.49340036,-110.3461436,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210258-PR3864083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,20,20,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741346.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R04:20120814:SR:WSO,Sample-Routine,WATER,NA,8/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R04,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",17.5,17.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R04,Lake,NA,10070001,NA,NA,NA,NA,44.49478161,-110.4302646,NA,NA,NA,GPS-Unspecified,NAD83,2394.04,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",16.5,16.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,26.3,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209906-PR3864062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,10.65,10.65,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730657.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.14,6.14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741322.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.52,9.52,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,29 - Bottom,NA,22.15,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.68,19.68,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,3.776,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,21.53,21.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,2 - Surface,NA,0.12,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.01,14.01,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.11,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:13,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,13,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,9.3,9.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",19.2,19.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LB062105-195804-PR3977062205,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2005,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.04,8.04,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5264981.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG191022-4938620-1023-2-F,Field Msr/Obs,WATER,NA,10/23/2019,15:30:04,MST,NA,NA,NA,2.39,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.88,9.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,10/23/2019 22:30,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-151:20120915:SR:WSO,Sample-Routine,WATER,NA,9/15/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-151,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",13.63,13.63,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-151,Lake,NA,10180002,NA,NA,NA,NA,41.20465089,-106.2591701,NA,NA,NA,GPS-Unspecified,NAD83,2870.35,m,NA,NA,Digital Elevation Model,NAVD88,US,56,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0042:2:070706:10,Field Msr/Obs,WATER,NA,7/6/2007,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0042,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8,8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Park Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-22"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10090206000948"";COM_ID=""5378824"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Park Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-874392.330555"";ALBERS_Y=""829458.741872"";FLD_LON_DD=""-107.03543"";FLD_LAT_DD=""44.46416"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10090206,NA,NA,NA,NA,44.45823517,-107.0403753,NA,NA,NA,GPS-Unspecified,WGS84,2626,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190625-4938680-0626-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/26/2019,19:19:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,13.5,13.5,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,14.097,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/27/2019 2:19,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2250:1:070729:11,Field Msr/Obs,WATER,NA,7/29/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-2250,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.2,13.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lewis Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-29"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""17040101001202"";COM_ID=""23127277"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1159276.42753"";ALBERS_Y=""850574.664048"";FLD_LON_DD=""-110.62327"";FLD_LAT_DD=""44.29843"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",17040101,NA,NA,NA,NA,44.3017541,-110.6285367,NA,NA,NA,GPS-Unspecified,WGS84,2371.07,m,NA,NA,Other,NGVD29,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +1119USBR_WQX,Bureau of Reclamation,1119USBR_WQX-2009068-36,Field Msr/Obs,WATER,NA,8/5/2020,9:05:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,WQDATA,NA,1119USBR_WQX-JAC011,NA,NA,NA,NA,GRAB,1119USBR_WQX,Grab,Water Bottle,NA,"TEMPERATURE, WATER",DISSOLVED,19.5,19.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,2550,APHA,Temperature of Water by Thermometer,NA,NA,8/5/2020,NA,Method Detection Level,0.1,0.1,Numeric,DEG C,NA,STORET,8/5/2020 16:05,NA,Leeks Marina North,Lake,NA,17040101,NA,NA,NA,NA,43.9332008,-110.6429977,NA,NA,NA,GPS-Unspecified,UNKWN,NA,NA,NA,NA,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG210518-4938680-0518-2-F,Field Msr/Obs,WATER,NA,5/18/2021,17:18:00,MST,NA,NA,NA,2.217,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.78,12.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,5/19/2021 0:18,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_11.1_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,11.1,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.96,7.96,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:1.83,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,1.83,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,23.27777778,23.27777778,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42002597_02,Field Msr/Obs,WATER,NA,8/12/2009,10:25:00,MST,NA,NA,NA,0.2,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Routine Organization ActivityID=YELL_YL003.0M_42002597,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,14,14,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/12/2009 17:25,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",4.5,4.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,40,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG092413-4938640-0924-2-F,Field Msr/Obs,WATER,NA,9/24/2013,10:30:00,MST,NA,NA,NA,2,m,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.1,17.1,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,9/24/2013 17:30,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938680-1014-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/14/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.94,10.94,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10.342,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,22.17,22.17,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.024,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R01:20120816:SR:WSO,Sample-Routine,WATER,NA,8/16/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R01,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",14.8,14.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,8,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R01,Lake,NA,17040103,NA,NA,NA,NA,43.64344358,-110.7963554,NA,NA,NA,GPS-Unspecified,NAD83,2021.7,m,NA,NA,Digital Elevation Model,NAVD88,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1818:1:070710:32,Field Msr/Obs,WATER,NA,7/10/2007,NA,NA,NA,NA,NA,32,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-1818,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,3.9,3.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,North Fork Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002909"";COM_ID=""18327306"";STATUS_VER=""Target_Sampled"";NHDNAME=""North Fork Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1092572.58705"";ALBERS_Y=""685335.971133"";FLD_LON_DD=""-109.50241"";FLD_LAT_DD=""42.92227"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",14040102,NA,NA,NA,NA,42.92535091,-109.5044313,NA,NA,NA,GPS-Unspecified,WGS84,2972.54,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0970:1:070610:14,Field Msr/Obs,WATER,NA,6/10/2007,NA,NA,NA,NA,NA,14,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0970,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,7.8,7.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Willow Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-10"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003173"";COM_ID=""18350723"";STATUS_VER=""Target_Sampled"";NHDNAME=""Willow Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1120769.54148"";ALBERS_Y=""697902.462543"";FLD_LON_DD=""-109.87957"";FLD_LAT_DD=""42.99297"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040102,NA,NA,NA,NA,43.0004446,-109.8706018,NA,NA,NA,GPS-Unspecified,WGS84,2346,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-125:20120906:SR:WSO,Sample-Routine,WATER,NA,9/6/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-125,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.6,18.6,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-125,Lake,NA,14040102,NA,NA,NA,NA,43.16510906,-109.8031724,NA,NA,NA,GPS-Unspecified,NAD83,3325.87,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0090:1:070626:0,Field Msr/Obs,WATER,NA,6/26/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0090,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.3,17.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Black Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-26"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102002873"";COM_ID=""18327314"";STATUS_VER=""Target_Sampled"";NHDNAME=""Black Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1104460.72752"";ALBERS_Y=""687656.225374"";FLD_LON_DD=""-109.654222"";FLD_LAT_DD=""42.930648"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(4,10]""",14040102,NA,NA,NA,NA,42.93075473,-109.6534609,NA,NA,NA,GPS-Unspecified,WGS84,2812,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG190813-4938620-0814-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/14/2019,15:58:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.8,6.8,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,36.38,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/14/2019 22:58,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2266:1:070623:0,Field Msr/Obs,WATER,NA,6/23/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-2266,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,20.8,20.8,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Muddy Guard Reservoir Number 2,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-23"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090205000700"";COM_ID=""9589302"";STATUS_VER=""Target_Sampled"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-855648.531324"";ALBERS_Y=""796559.426146"";FLD_LON_DD=""-106.75861"";FLD_LAT_DD=""44.18412"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(10,20]""",10090205,NA,NA,NA,NA,44.18421481,-106.7589307,NA,NA,NA,GPS-Unspecified,WGS84,1604.99,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209907-PR3866062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.43,19.43,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730711.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938650-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,16:21:09,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,16.83,16.83,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,0.117,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 23:21,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938680-0805-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/5/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,17.54,17.54,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,11.86,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.88,7.88,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,35.107,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.078,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG062107-209905-PR3862062207,Field Msr/Obs-Portable Data Logger,WATER,NA,6/22/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,13.59,13.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5730477.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_42003286-9,Field Msr/Obs-Portable Data Logger,WATER,NA,7/17/2013,9:24:00,MST,NA,NA,NA,9,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Organization ActivityID=YELL_YL003.0M_42003286-9,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,12.4,12.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,7/17/2013 16:24,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101509-4938620-1015-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/15/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.22,12.22,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.074,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010767,Field Msr/Obs,WATER,NA,8/16/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10063,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,4,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sulphur Creek Reservoir,Lake,Lake/Pond: Hydrographic Category = Perennial,16010101,NA,NA,NA,NA,41.15234,-110.825,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2180,m,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,10.14,10.14,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,15.04,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R08:20120821:SR:WSO,Sample-Routine,WATER,NA,8/21/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R08,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",7,7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R08,Lake,NA,10180002,NA,NA,NA,NA,41.36491157,-106.3458452,NA,NA,NA,GPS-Unspecified,NAD83,3260.45,m,NA,NA,Digital Elevation Model,NAVD88,US,56,7,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LC082807-210257-PR3862083007,Field Msr/Obs-Portable Data Logger,WATER,NA,8/30/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,19.81,19.81,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5741238.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010753,Field Msr/Obs,WATER,NA,8/15/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10025,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.2,5.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,42,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Jackson Lake,Lake,Lake/Pond: Hydrographic Category = Perennial; Stage = Average Water Elevation,17040101,NA,NA,NA,NA,43.89903,-110.6734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,2065,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938660-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938660,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.53,9.53,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18.646,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES GREEN R FK 0.5 MI AB CNFL/ BLACK R FK,Lake,NA,14040106,NA,NA,NA,NA,41.30663,-109.53319,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938610-0808-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/8/2018,13:27:24,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938610,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.58,19.58,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,5.584,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/8/2018 20:27,NA,FLAMING GORGE RES AT ANVIL DRAW,Lake,NA,14040106,NA,NA,NA,NA,41.07996,-109.52847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-137:20120914:SR:WSO,Sample-Routine,WATER,NA,9/14/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-137,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",15.59,15.59,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-137,Lake,NA,10070006,NA,NA,NA,NA,44.78132376,-109.2547289,NA,NA,NA,GPS-Unspecified,NAD83,1473.36,m,NA,NA,Digital Elevation Model,NAVD88,US,56,29,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010822,Field Msr/Obs,WATER,NA,8/23/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10080,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,5.9,5.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Temple Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,14040104,NA,NA,NA,NA,42.70723,-109.1734,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3247,m,NA,NA,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YSL_221_20160801100901^01,Field Msr/Obs,WATER,NA,8/1/2016,10:09:00,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,YELL_LKT,NA,11NPSWRD_WQX-YELL_YSL_221,Not set because of nearby loons Orig ID=0801161009 Organization ActivityID=YELL_YSL_221_20160801100901,NA,NA,NA,NA,NA,NA,NA,Not Reported,"TEMPERATURE, WATER",NA,NA,NA,ND or NA,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/1/2016 17:09,NA,Yellowstone Lake Shoreline KM 221,Lake,This station is located on Yellowstone Lake within the South Arm and within the non-motorized zone. It is located southeast of Peale Island and the nets are extended to the west side of the island.,10070001,NA,NA,NA,NA,44.28288,-110.31204,NA,NA,NA,GPS-Unspecified,NAD83,2376,m,NA,NA,Other,SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060517-4938640-0606-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/6/2017,15:18:10,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,6.59,6.59,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,32.721,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/6/2017 22:18,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938620-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.49,18.49,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.39,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-LA082807-210413-PR3977082807,Field Msr/Obs-Portable Data Logger,WATER,NA,8/28/2007,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-5939770,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,14.62,14.62,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5746582.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,MEEKS CABIN RES AB DAM 01,Lake,NA,14040107,NA,NA,NA,NA,41.0205,-110.58517,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938620-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,7.41,7.41,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,28.036,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,12.36,12.36,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,1.18,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UC_REGION_USBOR_WQX,UC Region of USBOR,UC_REGION_USBOR_WQX-BR_FGRWQM_FGGR0829_20090519_7.5_P,Field Msr/Obs,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,7.5,m,NA,NA,NA,NA,NA,FGRWQM,NA,UC_REGION_USBOR_WQX-FGGR0829,YSI 6600,NA,NA,NA,Sonde,UC_REGION_USBOR_WQX,YSI 6600,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.89,8.89,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Flaming Gorge-Green River at RKM 82.9,Reservoir,NA,14040106,NA,NA,NA,NA,41.191883,-109.543729,24000,NA,NA,GPS Carrier Phase Static Relative Position,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216073-PR3862051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938620,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.13,6.13,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901550.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES NR MIDDLE MARSH CK,Lake,NA,14040106,NA,NA,NA,NA,41.15218,-109.53959,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-R02:20120731:SR:WSO,Sample-Routine,WATER,NA,7/31/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-R02,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",6.4,6.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,18,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-R02,Lake,NA,14040102,NA,NA,NA,NA,42.99621976,-109.888709,NA,NA,NA,GPS-Unspecified,NAD83,2346,m,NA,NA,Digital Elevation Model,NAVD88,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:1,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,1,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,13.3,13.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.28,6.28,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901616.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0519-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,5/19/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,9.57,9.57,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7.02,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +11NPSWRD_WQX,National Park Service Water Resources Division,11NPSWRD_WQX-YELL_YL003.0M_4200273803,Field Msr/Obs-Portable Data Logger,WATER,NA,6/15/2010,8:03:00,MST,NA,NA,NA,3,m,NA,NA,NA,NA,NA,YELLWQ01_LEGACY,NA,11NPSWRD_WQX-YELL_YL003.0M,Depth Profile Organization ActivityID=YELL_YL003.0M_4200273803,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",TOTAL,4,4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NPS_HYDR_M&D_4A,11NPSWRD_WQX,Hydrolab MiniSonde 4a or Hydrolab DataSonde 4a,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,6/15/2010 15:03,NA,"West Thumb, Yellowstone Lake in Yellowstone National Park",Lake,"This site is located in the center of the West Thumb area of Yellowstone Lake in Yellowstone National Park. Yellowstone Lake is the largest high elevation lake in the lower 48 states and can reach depths of more than 100 meters. Water depth at this site is about 98 meters. Yellowstone Lake is home to the largest Yellowstone cutthroat trout population in the country. Yellowstone River is the major tributary to the lake, which originates south of the park in Teton National Forest.",10070001,NA,NA,NA,NA,44.43733635,-110.5346235,NA,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),NAD83,2356,m,NA,NA,GPS Code (Pseudo Range) Standard Position (SA Off),SEALV,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216074-PR3864051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.23,6.23,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901622.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-NLA12_WY-115:20120803:SR:WSO,Sample-Routine,WATER,NA,8/3/2012,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2012,NA,NARS_WQX-NLA12_WY-115,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER","UNFILTERED, FIELD",18.5,18.5,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6,m,NA,NA,NA,360.1,USEPA,Dissolved Oxygen Using an ISE,https://www.nemi.gov/methods/method_summary/5252/,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,NLA12_WY-115,Lake,NA,16010101,NA,NA,NA,NA,41.15233931,-110.8249531,NA,NA,NA,GPS-Unspecified,NAD83,2180.06,m,NA,NA,Digital Elevation Model,NAVD88,US,56,41,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080410-4938640-0804-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/4/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,19.75,19.75,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,7,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,8.15,8.15,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901676.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0955:1:070603:5,Field Msr/Obs,WATER,NA,6/3/2007,NA,NA,NA,NA,NA,5,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0955,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID. D.O. VALUES MAY BE BIASED LOW DUE TO FAULTY PROBE"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""U""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,12.3,12.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Granite Springs Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-03"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""10190009000608"";COM_ID=""2874867"";STATUS_VER=""Target_Sampled"";NHDNAME=""Granite Springs Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-767302.212475"";ALBERS_Y=""449248.344452"";FLD_LON_DD=""-105.22408"";FLD_LAT_DD=""41.17534"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7=""(50,100]""",10190009,NA,NA,NA,NA,41.17631286,-105.2328863,NA,NA,NA,GPS-Unspecified,WGS84,2196,m,NA,NA,Other,NGVD29,US,56,21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0794:2:070628:15,Field Msr/Obs,WATER,NA,6/28/2007,NA,NA,NA,NA,NA,15,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_WMT,NA,NARS_WQX-NLA06608-0794,"VISIT_NO=""2"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,8.7,8.7,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Freemont Lake,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-09"";WSA_ECO3=""WMTNS"";WSA_ECO9=""WMT"";REACHCODE=""14040102003186"";COM_ID=""18327088"";STATUS_VER=""Target_Sampled"";NHDNAME=""Fremont Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";REPEAT=""YES"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1116574.2901"";ALBERS_Y=""690796.510479"";FLD_LON_DD=""-109.82038"";FLD_LAT_DD=""42.93461"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5606""",14040102,NA,NA,NA,NA,42.94295938,-109.8067241,NA,NA,NA,GPS-Unspecified,WGS84,2261,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-FG051208-216075-PR3865051308,Field Msr/Obs-Portable Data Logger,WATER,NA,5/13/2008,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,351,NA,UTAHDWQ_WQX-4938650,NA,NA,NA,NA,NA,NA,NA,NA,NA,"TEMPERATURE, WATER",NA,6.39,6.39,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,STORET ISN = 5901736.,NA,NA,NA,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES ABV BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.26663,-109.56736,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG051909-4938640-0728-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,7/28/2009,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,Bureau of Reclamation,UTAHDWQ_WQX-4938640,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.64,18.64,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,9.938,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BL BUCKBOARD,Lake,NA,14040106,NA,NA,NA,NA,41.20496,-109.53458,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG060110-4938680-0601-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,6/1/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,11.07,11.07,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.09,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:2095:1:070708:11,Field Msr/Obs,WATER,NA,7/8/2007,NA,NA,NA,NA,NA,11,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-2095,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,17.9,17.9,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Big Sandy Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-07-08"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040104001896"";COM_ID=""18300278"";STATUS_VER=""Target_Sampled"";NHDNAME=""Big Sandy Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1098124.843"";ALBERS_Y=""609817.659425"";FLD_LON_DD=""-109.43333"";FLD_LAT_DD=""42.25395"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5601""",14040104,NA,NA,NA,NA,42.2494978,-109.4410083,NA,NA,NA,GPS-Unspecified,WGS84,2059.87,m,NA,NA,Other,NGVD29,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:1562:1:070611:0,Field Msr/Obs,WATER,NA,6/11/2007,NA,NA,NA,NA,NA,0,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-1562,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,15.4,15.4,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Sixtyseven Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-11"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""14040101003375"";COM_ID=""18347649"";STATUS_VER=""Target_Sampled"";NHDNAME=""Sixty-Seven Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-1155568.42971"";ALBERS_Y=""657586.507398"";FLD_LON_DD=""-110.21049"";FLD_LAT_DD=""42.59522"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100""",14040101,NA,NA,NA,NA,42.59773028,-110.2208282,NA,NA,NA,GPS-Unspecified,WGS84,2153.13,m,NA,NA,Other,NGVD29,US,56,35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0950:1:070802:15.6,Field Msr/Obs,WATER,NA,8/2/2007,NA,NA,NA,NA,NA,15.6,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_XER,NA,NARS_WQX-NLA06608-0950,"VISIT_NO=""1"";SAMPLED_PROFILE=""YES""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,16.72222222,16.72222222,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Boysen Reservoir,Lake,"VISIT_NO=""1"";DATE_COL=""2007-08-02"";WSA_ECO3=""WMTNS"";WSA_ECO9=""XER"";REACHCODE=""10080005001040"";COM_ID=""12869679"";STATUS_VER=""Target_Sampled"";NHDNAME=""Boysen Reservoir"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-983758.134879"";ALBERS_Y=""697856.995833"";FLD_LON_DD=""-108.166944"";FLD_LAT_DD=""43.383333"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5603""",10080005,NA,NA,NA,NA,43.16774073,-108.1947009,NA,NA,NA,GPS-Unspecified,WGS84,1441,m,NA,NA,Other,NGVD29,US,56,13,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG080618-4938685-0807-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,8/7/2018,16:19:23,MST,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,306,Bureau of Reclamation,UTAHDWQ_WQX-4938685,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,18.78,18.78,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,6.426,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,8/7/2018 23:19,NA,FLAMING GORGE RES AT N CHIMNEY ROCK,Lake,NA,14040106,NA,NA,NA,NA,41.36385,-109.42847,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-PRF:0922:1:070608:18,Field Msr/Obs,WATER,NA,6/8/2007,NA,NA,NA,NA,NA,18,m,NA,NA,NA,NA,NA,NARS_NLA2007;NARS_NLA2007_ECOREGION_NPL,NA,NARS_WQX-NLA06608-0922,"VISIT_NO=""1"";COMMENT_PROFILE=""CONDUCTIVITY DATA NOT COLLECTED OR INVALID"";SAMPLED_PROFILE=""YES"";FLAG_PROFILE=""K""",NA,NA,NA,multiprobesonde,NARS_WQX,Multi-Probe Sonde,Probe/Sensor,NA,"TEMPERATURE, WATER",NA,11.2,11.2,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Lake De Smet,Lake,"VISIT_NO=""1"";DATE_COL=""2007-06-08"";WSA_ECO3=""PLNLOW"";WSA_ECO9=""NPL"";REACHCODE=""10090206001081"";COM_ID=""5379710"";STATUS_VER=""Target_Sampled"";NHDNAME=""De Smet, Lake"";SAMPLED=""YES"";LAKE_SAMP=""Target_Sampled"";SITE_TYPE=""PROB_Lake"";TNT=""Target"";ALBERS_X=""-851706.445314"";ALBERS_Y=""827807.287928"";FLD_LON_DD=""-106.74792"";FLD_LAT_DD=""44.46943"";FLD_SRC=""Index_site"";EPA_REG=""Region_8"";AREA_CAT7="">100"";NESLAKE=""NESLake"";NESLAKE_ID=""5604""",10090206,NA,NA,NA,NA,44.46680722,-106.7540577,NA,NA,NA,GPS-Unspecified,WGS84,1392,m,NA,NA,Other,NGVD29,US,56,19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +UTAHDWQ_WQX,Utah Department Of Environmental Quality,UTAHDWQ_WQX-BORFG101210-4938680-1012-Pr-F,Field Msr/Obs-Portable Data Logger,WATER,NA,10/12/2010,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,358,NA,UTAHDWQ_WQX-4938680,NA,NA,NA,NA,DWQ-001,UTAHDWQ_WQX,Water Grab Sampling,Miscellaneous (Other),NA,"TEMPERATURE, WATER",NA,14.51,14.51,Numeric,DEG C,NA,Accepted,NA,Actual,NA,NA,NA,NA,NA,NA,NA,2.56,m,NA,NA,NA,FIELD MEASURES,UTAHDWQ_WQX,Field Measurements performed by Utah DWQ,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,FLAMING GORGE RES BLACK R FK 0.5 MI AB CNFL/ GREEN R FK,Lake,NA,14040107,NA,NA,NA,NA,41.29607,-109.55181,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,NA,NA,NA,NA,US,56,37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +NARS_WQX,EPA National Aquatic Resources Survey (NARS),NARS_WQX-2010748,Field Msr/Obs,WATER,NA,8/14/2017,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NARS_NLA2017,NA,NARS_WQX-NLA_WY-10112,NA,NA,NA,NA,WQ Sample,NARS_WQX,NCA Standard WQ Sample,Water Sampler (Other),NA,"TEMPERATURE, WATER",NA,2.3,2.3,Numeric,DEG C,NA,Final,NA,Actual,NA,NA,NA,NA,NA,NA,NA,10,m,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,STORET,NA,NA,Icefloe Lake,Lake,Lake/Pond: Hydrographic Category = Perennial,17040101,NA,NA,NA,NA,43.72697,-110.8236,NA,NA,NA,GPS-Unspecified,NAD83,NA,NA,3248,m,NA,NA,US,56,39,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA diff --git a/tests/testdata/TADAProfile_UT_Nutrients.csv b/tests/testdata/TADAProfile_UT_Nutrients.csv new file mode 100644 index 00000000..9ec7d23b --- /dev/null +++ b/tests/testdata/TADAProfile_UT_Nutrients.csv @@ -0,0 +1,6609 @@ +"","OrganizationIdentifier","OrganizationFormalName","ActivityIdentifier","ActivityTypeCode","ActivityMediaName","ActivityMediaSubdivisionName","ActivityStartDate","ActivityStartTime.Time","ActivityStartTime.TimeZoneCode","ActivityEndDate","ActivityEndTime.Time","ActivityEndTime.TimeZoneCode","ActivityDepthHeightMeasure.MeasureValue","ActivityDepthHeightMeasure.MeasureUnitCode","ActivityDepthAltitudeReferencePointText","ActivityTopDepthHeightMeasure.MeasureValue","ActivityTopDepthHeightMeasure.MeasureUnitCode","ActivityBottomDepthHeightMeasure.MeasureValue","ActivityBottomDepthHeightMeasure.MeasureUnitCode","ProjectIdentifier","ActivityConductingOrganizationText","MonitoringLocationIdentifier","ActivityCommentText","SampleAquifer","HydrologicCondition","HydrologicEvent","SampleCollectionMethod.MethodIdentifier","SampleCollectionMethod.MethodIdentifierContext","SampleCollectionMethod.MethodName","SampleCollectionEquipmentName","ResultDetectionConditionText","CharacteristicName","ResultSampleFractionText","ResultMeasureValue","ResultMeasureValue.Original","TADA.ResultMeasureValue.Flag","ResultMeasure.MeasureUnitCode","MeasureQualifierCode","ResultStatusIdentifier","StatisticalBaseCode","ResultValueTypeName","ResultWeightBasisText","ResultTimeBasisText","ResultTemperatureBasisText","ResultParticleSizeBasisText","PrecisionValue","ResultCommentText","USGSPCode","ResultDepthHeightMeasure.MeasureValue","ResultDepthHeightMeasure.MeasureUnitCode","ResultDepthAltitudeReferencePointText","SubjectTaxonomicName","SampleTissueAnatomyName","ResultAnalyticalMethod.MethodIdentifier","ResultAnalyticalMethod.MethodIdentifierContext","ResultAnalyticalMethod.MethodName","MethodDescriptionText","LaboratoryName","AnalysisStartDate","ResultLaboratoryCommentText","DetectionQuantitationLimitTypeName","DetectionQuantitationLimitMeasure.MeasureValue","DetectionLimitMeasureValue.Original","TADA.DetectionLimitMeasureValue.Flag","DetectionQuantitationLimitMeasure.MeasureUnitCode","PreparationStartDate","ProviderName","ActivityStartDateTime","ActivityEndDateTime","MonitoringLocationName","MonitoringLocationTypeName","MonitoringLocationDescriptionText","HUCEightDigitCode","DrainageAreaMeasure.MeasureValue","DrainageAreaMeasure.MeasureUnitCode","ContributingDrainageAreaMeasure.MeasureValue","ContributingDrainageAreaMeasure.MeasureUnitCode","LatitudeMeasure","LongitudeMeasure","SourceMapScaleNumeric","HorizontalAccuracyMeasure.MeasureValue","HorizontalAccuracyMeasure.MeasureUnitCode","HorizontalCollectionMethodName","HorizontalCoordinateReferenceSystemDatumName","VerticalMeasure.MeasureValue","VerticalMeasure.MeasureUnitCode","VerticalAccuracyMeasure.MeasureValue","VerticalAccuracyMeasure.MeasureUnitCode","VerticalCollectionMethodName","VerticalCoordinateReferenceSystemDatumName","CountryCode","StateCode","CountyCode","AquiferName","LocalAqfrName","FormationTypeText","AquiferTypeName","ConstructionDateText","WellDepthMeasure.MeasureValue","WellDepthMeasure.MeasureUnitCode","WellHoleDepthMeasure.MeasureValue","WellHoleDepthMeasure.MeasureUnitCode","MethodSpecificationName","ProjectName","ProjectDescriptionText","SamplingDesignTypeCode","QAPPApprovedIndicator","QAPPApprovalAgencyName","ProjectFileUrl","ProjectMonitoringLocationWeightingUrl" +"1","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200957","Sample-Routine","WATER","Groundwater",2022-04-27,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370727113233001",NA,NA,"Not applicable","Routine sample","8010","USGS parameter code 82398","Other","Inertial Pump",NA,"NITRATE","DISSOLVED",3.71,"3.71","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-27 16:30:00,NA,"(C-42-14)23abc- 1 WD-5","Well",NA,"15010008",NA,NA,NA,NA,"37.12434365000000","-113.3936173000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",2993.9,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19950206",160,"ft",160,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"2","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200797","Sample-Routine","WATER","Surface Water",2022-03-23,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-23 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"3","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200972","Sample-Routine","WATER","Surface Water",2022-04-13,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-04-13 18:30:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"4","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200858","Sample-Routine","WATER","Surface Water",2022-04-14,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","Grab sample",NA,"NITRATE","DISSOLVED",3.56,"3.56","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-14 18:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"5","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101576","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-09-07,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-09-07 19:30:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"6","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101406","Sample-Routine","WATER","Groundwater",2021-08-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404532111504401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",4.42,"4.42","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-03 17:00:00,NA,"(D- 1- 1) 4cac- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.75878610000000","-111.8461139000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4678,"feet",0.5,"feet","Light Detection And Ranging, airplane","NAVD88","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined single aquifer","19560928",510,"ft",510,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"7","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101510","Sample-Routine","WATER","Groundwater",2021-08-19,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403139111551501",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",4.08,"4.08","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-19 15:45:00,NA,"(C- 3- 1)26cad-1","Well",NA,"16020204",NA,NA,NA,NA,"40.52750000000000","-111.9208333000000",NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"8","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200962","Sample-Routine","WATER","Groundwater",2022-04-26,"09:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370655113224901",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-04-26 15:15:00,NA,"(C-42-14)24bcd- 1 WD-9","Well",NA,"15010008",NA,NA,NA,NA,"37.12312150000000","-113.3828948000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3066,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010523",155,"ft",158,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"9","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101450","Sample-Routine","WATER","Groundwater",2021-08-11,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404059111500401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.46,"1.46","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-11 16:30:00,NA,"(D- 1- 1)33ddd- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.68315278000000","-111.8345083000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4490,"feet",5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19640626",657,"ft",664,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"10","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200794","Sample-Routine","WATER","Surface Water",2022-03-30,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Rising stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.029,"0.029","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-30 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"11","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101343","Sample-Routine","WATER","Groundwater",2021-05-25,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370746113223301",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",0.949,"0.949","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 19:15:00,NA,"(C-42-14)13cda- 1 WD-6","Well",NA,"15010008",NA,NA,NA,NA,"37.13017705000000","-113.3777003000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3003.6,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010515",96,"ft",103.41,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"12","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101052","Sample-Routine","WATER","Surface Water",2021-05-27,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81",NA,"NITRATE","DISSOLVED",3.74,"3.74","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-27 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"13","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100918","Sample-Routine","WATER","Surface Water",2021-05-05,"11:45:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-05 17:45:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"14","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100918","Sample-Routine","WATER","Surface Water",2021-05-05,"11:45:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-05-05 17:45:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"15","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100763","Sample-Routine","WATER","Surface Water",2021-04-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-04-03 17:00:00,NA,"GREAT SALT LAKE 0.07 MI N OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4199,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"16","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100924","Sample-Routine","WATER","Surface Water",2021-05-05,"10:30:00","MDT",NA,NA,NA,7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-05 16:30:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"17","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200972","Sample-Routine","WATER","Surface Water",2022-04-13,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-04-13 18:30:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"18","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101280","Sample-Routine","WATER","Groundwater",2021-07-13,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404017112020501",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",9,"9.00","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-13 15:00:00,NA,"(C- 2- 2) 2cad- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.67150000000000","-112.0348056000000","24000",".5","seconds","Interpolated from MAP.","NAD83",4620,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"19900121",1300,"ft",1320,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"19","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100767","Sample-Routine","WATER","Surface Water",2021-04-01,"11:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-04-01 17:40:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"20","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101595","Sample-Routine","WATER","Surface Water",2021-08-31,"11:56:00","MDT",NA,NA,NA,5.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-08-31 17:56:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"21","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200022","Sample-Routine","WATER","Surface Water",2021-10-06,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.296,"0.296","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-05,"holding time exceededsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-10-06 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"22","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100703","Sample-Routine","WATER","Surface Water",2021-03-18,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,"Stable, low stage","Regulated flow","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.156,"0.156","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-18 20:15:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"23","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101243","Sample-Routine","WATER","Surface Water",2021-07-06,"12:50:00","MDT",NA,NA,NA,2,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-06 18:50:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"24","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101086","Sample-Routine","WATER","Surface Water",2021-06-02,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.686,"0.686","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-02 16:30:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"25","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101254","Sample-Routine","WATER","Surface Water",2021-07-08,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",4.93,"4.93","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-08 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"26","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200112","Sample-Routine","WATER","Surface Water",2021-11-01,"10:48:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-01 16:48:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"27","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200859","Sample-Routine","WATER","Surface Water",2022-04-14,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",21.2,"21.2","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-14 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"28","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100893","Sample-Routine","WATER","Surface Water",2021-05-06,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",21.9,"21.9","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-06 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"29","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200783","Sample-Routine","WATER","Surface Water",2022-03-30,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",24.1,"24.1","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-30 19:45:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"30","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100836","Sample-Routine","WATER","Surface Water",2021-04-22,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.408,"0.408","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-22 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"31","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200108","Sample-Routine","WATER","Surface Water",2021-10-29,"14:00:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-10-29 20:00:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"32","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200880","Sample-Routine","WATER","Surface Water",2022-04-21,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, low stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-04-21 18:30:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"33","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200958","Sample-Routine","WATER","Groundwater",2022-04-27,"10:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370746113223301",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",0.876,"0.876","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-27 16:15:00,NA,"(C-42-14)13cda- 1 WD-6","Well",NA,"15010008",NA,NA,NA,NA,"37.13017705000000","-113.3777003000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3003.6,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010515",96,"ft",103.41,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"34","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200782","Sample-Routine","WATER","Surface Water",2022-03-31,"11:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-31 17:10:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"35","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200963","Sample-Routine","WATER","Groundwater",2022-04-25,"17:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370646113231901",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-04-25 23:30:00,NA,"(C-42-14)23ddc- 1 WD-11","Well",NA,"15010008",NA,NA,NA,NA,"37.11312150000000","-113.3915060000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3016.6,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010614",108.5,"ft",112,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"36","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201211","Sample-Routine","WATER","Surface Water",2022-05-26,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, high stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.116,"0.116","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-07-20,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-05-26 18:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"37","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101052","Sample-Routine","WATER","Surface Water",2021-05-27,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81",NA,"NITROGEN","SUSPENDED",0.108,"0.108","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-08-13,"sample was warm when received","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-05-27 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"38","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101386","Sample-Routine","WATER","Surface Water",2021-07-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",6.12,"6.12","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-28 20:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"39","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200968","Quality Control Sample-Field Replicate","WATER","Surface Water",2022-05-04,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-05-04 17:00:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"40","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100765","Sample-Routine","WATER","Surface Water",2021-04-02,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-04-02 17:00:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"41","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200122","Sample-Routine","WATER","Surface Water",2021-11-04,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Not determined","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",3.29,"3.29","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-11-04 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"42","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200961","Sample-Routine","WATER","Groundwater",2022-04-26,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370604113224601",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",3.48,"3.48","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-26 19:45:00,NA,"(C-42-14)25cdb- 1","Well",NA,"15010008",NA,NA,NA,NA,"37.10187165000000","-113.3803947000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3066.2,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010521",118.7,"ft",134,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"43","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200111","Sample-Routine","WATER","Surface Water",2021-11-01,"10:40:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-01 16:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"44","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101348","Sample-Routine","WATER","Groundwater",2021-05-24,"18:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370646113231901",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-05-25 00:15:00,NA,"(C-42-14)23ddc- 1 WD-11","Well",NA,"15010008",NA,NA,NA,NA,"37.11312150000000","-113.3915060000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3016.6,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010614",108.5,"ft",112,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"45","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100723","Sample-Routine","WATER","Surface Water",2021-03-26,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-03-26 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"46","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101344","Sample-Routine","WATER","Groundwater",2021-05-25,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233201",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible piston pump",NA,"NITRATE","DISSOLVED",12.1,"12.1","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 18:30:00,NA,"(C-42-14)23acc- 1 WD15-Shallow","Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,61,"ft",65,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"47","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101131","Sample-Routine","WATER","Groundwater",2021-06-22,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404247111511501",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",8.41,"8.41","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-22 16:00:00,NA,"(D- 1- 1)20ddd- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.71300830000000","-111.8541917000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4413,"feet",5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19770509",502,"ft",502,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"48","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201098","Sample-Routine","WATER","Surface Water",2022-05-25,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-09234500",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81",NA,"NITRATE","DISSOLVED",0.099,"0.099","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-05-25 17:00:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"49","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101344","Sample-Routine","WATER","Groundwater",2021-05-25,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233201",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible piston pump",NA,"NITRATE","DISSOLVED",2.73,"2.73","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 18:30:00,NA,"(C-42-14)23acc- 1 WD15-Shallow","Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,61,"ft",65,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"50","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101593","Sample-Routine","WATER","Surface Water",2021-08-31,"10:43:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-08-31 16:43:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"51","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200119","Sample-Routine","WATER","Surface Water",2021-11-01,"12:45:00","MDT",NA,NA,NA,2.6,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-01 18:45:00,NA,"GSL 4069, 8 MI WEST OF SALTAIR MARINA","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"52","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200069","Sample-Routine","WATER","Surface Water",2021-10-21,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",28.6,"28.6","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-21 17:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"53","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100892","Sample-Routine","WATER","Surface Water",2021-05-06,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.248,"0.248","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-07-06,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-05-06 16:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"54","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200781","Quality Control Sample-Field Replicate","WATER","Surface Water",2022-03-31,"15:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",24.1,"24.1","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-31 21:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"55","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200858","Sample-Routine","WATER","Surface Water",2022-04-14,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","Grab sample",NA,"NITRATE","DISSOLVED",0.803,"0.803","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-14 18:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"56","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200111","Sample-Routine","WATER","Surface Water",2021-11-01,"10:40:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-01 16:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"57","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101510","Sample-Routine","WATER","Groundwater",2021-08-19,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403139111551501",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.921,"0.921","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-19 15:45:00,NA,"(C- 3- 1)26cad-1","Well",NA,"16020204",NA,NA,NA,NA,"40.52750000000000","-111.9208333000000",NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"58","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101199","Sample-Routine","WATER","Surface Water",2021-07-01,"13:45:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-07-01 19:45:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"59","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100703","Sample-Routine","WATER","Surface Water",2021-03-18,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,"Stable, low stage","Regulated flow","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.035,"0.035","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-18 20:15:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"60","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101293","Sample-Routine","WATER","Surface Water",2021-07-14,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.077,"0.077","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-14 19:30:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"61","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101155","Sample-Routine","WATER","Surface Water",2021-06-23,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.042,"0.042","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-23 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"62","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200164","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-10-27,"11:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-10-27 17:10:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"63","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101596","Sample-Routine","WATER","Surface Water",2021-08-31,"12:44:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-08-31 18:44:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"64","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201212","Sample-Routine","WATER","Surface Water",2022-05-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Falling stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","US DH-81",NA,"NITROGEN","SUSPENDED",0.091,"0.091","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-07-20,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-05-25 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"65","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101178","Sample-Routine","WATER","Surface Water",2021-06-29,"14:57:00","MDT",NA,NA,NA,3.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-29 20:57:00,NA,"GSL 4069, 8 MI WEST OF SALTAIR MARINA","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"66","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100942","Sample-Routine","WATER","Surface Water",2021-05-05,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-05-05 19:20:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"67","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200956","Sample-Routine","WATER","Groundwater",2022-04-27,"12:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370806113223401",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",7.34,"7.34","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-27 18:40:00,NA,"(C-42-14)13acc- 1 WD-21","Well",NA,"15010008",NA,NA,NA,NA,"37.13497220000000","-113.3761389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",2987,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer","20130410",318,"ft",333,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"68","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100855","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-04-23,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-04-23 17:00:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"69","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100921","Sample-Routine","WATER","Surface Water",2021-05-05,"13:15:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-05 19:15:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"70","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100723","Sample-Routine","WATER","Surface Water",2021-03-26,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-26 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"71","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101414","Sample-Routine","WATER","Surface Water",2021-07-30,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-30 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"72","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200117","Sample-Routine","WATER","Surface Water",2021-11-01,"13:33:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-01 19:33:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"73","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100786","Sample-Routine","WATER","Surface Water",2021-04-10,"13:00:00","MDT",NA,NA,NA,2.6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-10 19:00:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"74","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200028","Sample-Routine","WATER","Surface Water",2021-10-07,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-10-07 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"75","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200158","Sample-Routine","WATER","Surface Water",2021-11-03,"11:45:00","MDT",NA,NA,NA,5.4,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-03 17:45:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"76","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200156","Sample-Routine","WATER","Surface Water",2021-11-04,"10:45:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-04 16:45:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"77","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101055","Sample-Routine","WATER","Surface Water",2021-06-02,"10:40:00","MDT",NA,NA,NA,7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-02 16:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"78","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101088","Sample-Routine","WATER","Surface Water",2021-06-01,"13:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-06-01 19:40:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"79","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101156","Sample-Routine","WATER","Surface Water",2021-06-23,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.15,"0.150","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-15,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-06-23 16:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"80","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101574","Sample-Routine","WATER","Surface Water",2021-09-07,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-09-07 19:45:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"81","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200022","Sample-Routine","WATER","Surface Water",2021-10-06,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",21.6,"21.6","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-06 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"82","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101301","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-07-14,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-07-14 18:00:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"83","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200021","Sample-Routine","WATER","Surface Water",2021-10-06,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.358,"0.358","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-05,"holding time exceededsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-10-06 19:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"84","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201227","Sample-Routine","WATER","Surface Water",2022-06-14,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.215,"0.215","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-06-14 20:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"85","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100767","Sample-Routine","WATER","Surface Water",2021-04-01,"11:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-01 17:40:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"86","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200965","Sample-Routine","WATER","Groundwater",2022-04-25,"14:25:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233201",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible piston pump",NA,"NITRATE","DISSOLVED",12.4,"12.4","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-25 20:25:00,NA,"(C-42-14)23acc- 1 WD15-Shallow","Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,61,"ft",65,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"87","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200308","Sample-Routine","WATER","Surface Water",2021-12-21,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.114,"0.114","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-21 16:45:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"88","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200971","Sample-Routine","WATER","Surface Water",2022-04-26,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-04-26 20:00:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"89","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100786","Sample-Routine","WATER","Surface Water",2021-04-10,"13:00:00","MDT",NA,NA,NA,2.6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-04-10 19:00:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"90","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200971","Sample-Routine","WATER","Surface Water",2022-04-26,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-04-26 20:00:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"91","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200955","Sample-Routine","WATER","Groundwater",2022-04-27,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370744113225701",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",0.337,"0.337","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-27 20:15:00,NA,"(C-42-14)13cca- 1 WD-22","Well",NA,"15010008",NA,NA,NA,NA,"37.12897220000000","-113.3826110000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3088,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Other aquifers",NA,"Navajo Sandstone (Jurassic)","Unconfined single aquifer","20150818",170.5,"ft",170.5,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"92","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101343","Sample-Routine","WATER","Groundwater",2021-05-25,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370746113223301",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",0.214,"0.214","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 19:15:00,NA,"(C-42-14)13cda- 1 WD-6","Well",NA,"15010008",NA,NA,NA,NA,"37.13017705000000","-113.3777003000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3003.6,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010515",96,"ft",103.41,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"93","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101243","Sample-Routine","WATER","Surface Water",2021-07-06,"12:50:00","MDT",NA,NA,NA,2,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-06 18:50:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"94","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101198","Sample-Routine","WATER","Surface Water",2021-07-01,"11:30:00","MDT",NA,NA,NA,6.1,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-01 17:30:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"95","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101198","Sample-Routine","WATER","Surface Water",2021-07-01,"11:30:00","MDT",NA,NA,NA,6.1,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-01 17:30:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"96","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200106","Sample-Routine","WATER","Surface Water",2021-10-29,"11:15:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-10-29 17:15:00,NA,"N1018 6 MI SW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4197.7,"feet",0.1,"feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"97","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101160","Sample-Routine","WATER","Groundwater",2021-06-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403916112010701",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",9.16,"9.16","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-24 16:00:00,NA,"(C- 2- 2)12cdc- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.65455556000000","-112.0186110000000","24000",".5","seconds","Interpolated from MAP.","NAD83",4710,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"198907",900,"ft",940,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"98","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101240","Sample-Routine","WATER","Surface Water",2021-07-06,"11:52:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-06 17:52:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"99","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200117","Sample-Routine","WATER","Surface Water",2021-11-01,"13:33:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-01 19:33:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"100","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101155","Sample-Routine","WATER","Surface Water",2021-06-23,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.12,"0.120","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-15,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-06-23 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"101","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101630","Sample-Routine","WATER","Surface Water",2021-09-20,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.441,"0.441","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-20 16:30:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"102","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101594","Sample-Routine","WATER","Surface Water",2021-08-31,"11:46:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-08-31 17:46:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"103","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200677","Sample-Routine","WATER","Surface Water",2022-03-16,"12:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403151111290601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.204,"0.204","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-16 18:45:00,NA,"LEFT BANK TRIBUTARY TO SNAKE CREEK NEAR HOT POTS","Stream",NA,"16020203",NA,NA,NA,NA,"40.53071944000000","-111.4849500000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5698,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"104","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101470","Sample-Routine","WATER","Surface Water",2021-07-29,"10:40:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-29 16:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"105","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200122","Sample-Routine","WATER","Surface Water",2021-11-04,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Not determined","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.743,"0.743","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-11-04 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"106","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101176","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-06-29,"12:20:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-29 18:20:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"107","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101176","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-06-29,"12:20:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-06-29 18:20:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"108","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101084","Sample-Routine","WATER","Surface Water",2021-06-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-06-03 17:00:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"109","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101503","Sample-Routine","WATER","Surface Water",2021-08-13,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.572,"0.572","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-11-16,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-08-13 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"110","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200108","Sample-Routine","WATER","Surface Water",2021-10-29,"14:00:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-10-29 20:00:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"111","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200122","Sample-Routine","WATER","Surface Water",2021-11-04,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Not determined","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.039,"0.039","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-18,"holding time exceededbelow the reporting level but at or above the detection levelsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-11-04 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"112","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101174","Sample-Routine","WATER","Groundwater",2021-06-29,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403423111514401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.332,"0.332","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-29 16:30:00,NA,"(D- 3- 1) 8bdd- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.57316667000000","-111.8627778000000","24000","1","seconds","Interpolated from MAP.","NAD83",4548,"feet",5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19550331",606,"ft",657,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"113","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101302","Sample-Routine","WATER","Surface Water",2021-07-14,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.025,"0.025","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-14 15:45:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"114","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101051","Sample-Routine","WATER","Surface Water",2021-05-27,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.278,"0.278","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-27 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"115","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101293","Sample-Routine","WATER","Surface Water",2021-07-14,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.017,"0.017","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-14 19:30:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"116","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200958","Sample-Routine","WATER","Groundwater",2022-04-27,"10:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370746113223301",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",0.198,"0.198","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-27 16:15:00,NA,"(C-42-14)13cda- 1 WD-6","Well",NA,"15010008",NA,NA,NA,NA,"37.13017705000000","-113.3777003000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3003.6,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010515",96,"ft",103.41,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"117","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101511","Sample-Routine","WATER","Groundwater",2021-08-12,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403623111541401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.56,"1.56","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-12 16:00:00,NA,"(C- 2 -1)36bac- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.60643889000000","-111.9038972000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4365,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19730411",701,"ft",701,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"118","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101253","Sample-Routine","WATER","Surface Water",2021-07-08,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.023,"0.023","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-08 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"119","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101545","Sample-Routine","WATER","Groundwater",2021-08-24,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403523111514801",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",6.44,"6.44","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-24 15:30:00,NA,"(D- 3- 1) 5bda- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.58976667000000","-111.8629417000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4590,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19560710",650,"ft",650,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"120","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200112","Sample-Routine","WATER","Surface Water",2021-11-01,"10:48:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-01 16:48:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"121","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101060","Sample-Routine","WATER","Surface Water",2021-06-02,"13:35:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-06-02 19:35:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"122","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101559","Sample-Routine","WATER","Surface Water",2021-08-24,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.075,"0.075","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-24 20:15:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"123","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101256","Sample-Routine","WATER","Surface Water",2021-07-01,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",5.44,"5.44","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-01 15:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"124","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101058","Sample-Routine","WATER","Surface Water",2021-06-02,"12:50:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.166,0.166,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-02 18:50:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"125","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101634","Sample-Routine","WATER","Surface Water",2021-09-24,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.011,"0.011","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-24 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"126","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101240","Sample-Routine","WATER","Surface Water",2021-07-06,"11:52:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-07-06 17:52:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"127","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101502","Sample-Routine","WATER","Surface Water",2021-08-13,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.172,"0.172","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-13 19:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"128","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101387","Sample-Routine","WATER","Surface Water",2021-07-28,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.375,"0.375","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-12-01,"holding time exceededsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-07-28 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"129","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101387","Sample-Routine","WATER","Surface Water",2021-07-28,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.153,"0.153","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-28 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"130","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200795","Sample-Routine","WATER","Surface Water",2022-03-24,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey-Water Resources Discipline","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.59,"0.590","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-24 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"131","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200795","Sample-Routine","WATER","Surface Water",2022-03-24,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey-Water Resources Discipline","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",2.61,"2.61","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-24 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"132","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101295","Sample-Routine","WATER","Surface Water",2021-07-16,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.062,"0.062","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-16 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"133","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101295","Sample-Routine","WATER","Surface Water",2021-07-16,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.276,"0.276","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-16 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"134","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100725","Sample-Routine","WATER","Surface Water",2021-03-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",5.14,"5.14","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-25 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"135","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101203","Sample-Routine","WATER","Surface Water",2021-07-01,"16:15:00","MDT",NA,NA,NA,6.1,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-01 22:15:00,NA,"N1018 6 MI SW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4197.7,"feet",0.1,"feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"136","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100725","Sample-Routine","WATER","Surface Water",2021-03-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",22.8,"22.8","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-25 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"137","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200797","Sample-Routine","WATER","Surface Water",2022-03-23,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-03-23 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"138","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101203","Sample-Routine","WATER","Surface Water",2021-07-01,"16:15:00","MDT",NA,NA,NA,6.1,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-01 22:15:00,NA,"N1018 6 MI SW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4197.7,"feet",0.1,"feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"139","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100763","Sample-Routine","WATER","Surface Water",2021-04-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-03 17:00:00,NA,"GREAT SALT LAKE 0.07 MI N OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4199,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"140","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200886","Sample-Routine","WATER","Surface Water",2022-04-21,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.015,"0.015","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-21 17:00:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"141","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200104","Sample-Routine","WATER","Surface Water",2021-10-28,"13:45:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-10-28 19:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"142","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200104","Sample-Routine","WATER","Surface Water",2021-10-28,"13:45:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-10-28 19:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"143","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100838","Sample-Routine","WATER","Surface Water",2021-04-23,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-04-23 18:30:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"144","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100856","Sample-Routine","WATER","Surface Water",2021-04-19,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,"Falling stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.812,"0.812","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-19 19:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"145","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101752","Sample-Routine","WATER","Surface Water",2021-09-17,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.095,"0.095","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-17 19:15:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"146","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100857","Sample-Routine","WATER","Surface Water",2021-04-19,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",24.5,"24.5","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-19 16:45:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"147","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101631","Sample-Routine","WATER","Surface Water",2021-09-16,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.396,"0.396","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-04,"holding time exceededsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-09-16 17:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"148","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101631","Sample-Routine","WATER","Surface Water",2021-09-16,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.599,"0.599","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-16 17:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"149","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101255","Sample-Routine","WATER","Surface Water",2021-07-01,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.219,"0.219","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-01 18:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"150","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200944","Sample-Routine","WATER","Surface Water",2022-04-28,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.182,"0.182","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-06-16,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-04-28 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"151","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200162","Sample-Routine","WATER","Surface Water",2021-11-04,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-04 20:45:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"152","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200116","Sample-Routine","WATER","Surface Water",2021-11-01,"12:58:00","MDT",NA,NA,NA,1.9,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-01 18:58:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"153","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200116","Sample-Routine","WATER","Surface Water",2021-11-01,"12:58:00","MDT",NA,NA,NA,1.9,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-01 18:58:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"154","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101059","Sample-Routine","WATER","Surface Water",2021-06-02,"13:05:00","MDT",NA,NA,NA,2.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-02 19:05:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"155","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201033","Sample-Routine","WATER","Surface Water",2022-05-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, low stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-05-20 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"156","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101051","Sample-Routine","WATER","Surface Water",2021-05-27,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",1.23,"1.23","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-27 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"157","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100837","Sample-Routine","WATER","Surface Water",2021-04-22,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.231,"0.231","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-06-24,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-04-22 16:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"158","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100931","Sample-Routine","WATER","Surface Water",2021-05-12,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-12 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"159","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101511","Sample-Routine","WATER","Groundwater",2021-08-12,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403623111541401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",6.92,"6.92","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-12 16:00:00,NA,"(C- 2 -1)36bac- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.60643889000000","-111.9038972000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4365,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19730411",701,"ft",701,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"160","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200022","Sample-Routine","WATER","Surface Water",2021-10-06,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",4.87,"4.87","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-06 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"161","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100924","Sample-Routine","WATER","Surface Water",2021-05-05,"10:30:00","MDT",NA,NA,NA,7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-05-05 16:30:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"162","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101340","Sample-Routine","WATER","Groundwater",2021-05-26,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370806113223401",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",8.15,"8.15","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-26 15:30:00,NA,"(C-42-14)13acc- 1 WD-21","Well",NA,"15010008",NA,NA,NA,NA,"37.13497220000000","-113.3761389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",2987,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer","20130410",318,"ft",333,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"163","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200968","Quality Control Sample-Field Replicate","WATER","Surface Water",2022-05-04,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-05-04 17:00:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"164","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101256","Sample-Routine","WATER","Surface Water",2021-07-01,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",24.1,"24.1","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-01 15:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"165","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101256","Sample-Routine","WATER","Surface Water",2021-07-01,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.437,"0.437","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-29,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-07-01 15:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"166","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101346","Sample-Routine","WATER","Groundwater",2021-05-25,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370604113224601",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",3.83,"3.83","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 15:30:00,NA,"(C-42-14)25cdb- 1","Well",NA,"15010008",NA,NA,NA,NA,"37.10187165000000","-113.3803947000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3066.2,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010521",118.7,"ft",134,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"167","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200114","Sample-Routine","WATER","Surface Water",2021-11-01,"12:10:00","MDT",NA,NA,NA,5.9,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-01 18:10:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"168","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201227","Sample-Routine","WATER","Surface Water",2022-06-14,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.951,"0.951","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-06-14 20:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"169","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100784","Sample-Routine","WATER","Surface Water",2021-04-10,"12:17:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-10 18:17:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"170","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101598","Sample-Routine","WATER","Surface Water",2021-08-31,"13:40:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-08-31 19:40:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"171","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101241","Sample-Routine","WATER","Surface Water",2021-07-06,"12:00:00","MDT",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-06 18:00:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"172","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101085","Sample-Routine","WATER","Surface Water",2021-06-02,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81",NA,"NITRATE","DISSOLVED",3.07,"3.07","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-02 20:00:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"173","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200942","Sample-Routine","WATER","Surface Water",2022-05-05,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-05-05 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"174","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101598","Sample-Routine","WATER","Surface Water",2021-08-31,"13:40:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-08-31 19:40:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"175","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200942","Sample-Routine","WATER","Surface Water",2022-05-05,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-05-05 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"176","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200159","Sample-Routine","WATER","Surface Water",2021-11-05,"14:45:00","MDT",NA,NA,NA,0.16,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411403112200801",NA,NA,"Stable, low stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-11-05 20:45:00,NA,"BEAR RIVER BAY OUTFLOW AT GSL MINERALS CORP BRIDGE","Stream",NA,"16020310",NA,NA,NA,NA,"41.27138889000000","-112.3561110000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4194,"feet",1,"feet","Interpolated from topographic map.","NGVD29","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"177","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200159","Sample-Routine","WATER","Surface Water",2021-11-05,"14:45:00","MDT",NA,NA,NA,0.16,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411403112200801",NA,NA,"Stable, low stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-05 20:45:00,NA,"BEAR RIVER BAY OUTFLOW AT GSL MINERALS CORP BRIDGE","Stream",NA,"16020310",NA,NA,NA,NA,"41.27138889000000","-112.3561110000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4194,"feet",1,"feet","Interpolated from topographic map.","NGVD29","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"178","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200858","Sample-Routine","WATER","Surface Water",2022-04-14,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","Grab sample",NA,"NITROGEN","SUSPENDED",0.035,"0.035","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-05-26,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-04-14 18:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"179","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101632","Sample-Routine","WATER","Surface Water",2021-08-25,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.918,"0.918","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-25 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"180","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100943","Sample-Routine","WATER","Surface Water",2021-05-05,"13:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-05-05 19:10:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"181","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200970","Sample-Routine","WATER","Surface Water",2022-05-03,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.216,"0.216","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-05-03 16:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"182","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200068","Sample-Routine","WATER","Surface Water",2021-10-21,"15:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.728,"0.728","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-21 21:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"183","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200068","Sample-Routine","WATER","Surface Water",2021-10-21,"15:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",3.22,"3.22","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-21 21:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"184","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200886","Sample-Routine","WATER","Surface Water",2022-04-21,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.065,"0.065","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-21 17:00:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"185","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101286","Sample-Routine","WATER","Surface Water",2021-07-07,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-07 20:00:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"186","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200164","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-10-27,"11:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-10-27 17:10:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"187","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200960","Sample-Routine","WATER","Groundwater",2022-04-26,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370654113213501",NA,NA,"Not applicable","Routine sample","8010","USGS parameter code 82398","Other","Inertial Pump",NA,"NITRATE","DISSOLVED",3.84,"3.84","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-26 20:45:00,NA,"(C-42-13)19cdb- 1 WD-12","Well",NA,"15010008",NA,NA,NA,NA,"37.11506615000000","-113.3606443000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3083.7,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19990503",155.5,"ft",155.6,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"188","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101470","Sample-Routine","WATER","Surface Water",2021-07-29,"10:40:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-29 16:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"189","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101121","Sample-Routine","WATER","Surface Water",2021-06-16,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey-Water Resources Discipline","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.118,"0.118","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-16 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"190","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101178","Sample-Routine","WATER","Surface Water",2021-06-29,"14:57:00","MDT",NA,NA,NA,3.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-06-29 20:57:00,NA,"GSL 4069, 8 MI WEST OF SALTAIR MARINA","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"191","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200157","Sample-Routine","WATER","Surface Water",2021-11-03,"11:00:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-03 17:00:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"192","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101084","Sample-Routine","WATER","Surface Water",2021-06-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-03 17:00:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"193","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101544","Sample-Routine","WATER","Groundwater",2021-08-26,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404627111532601",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",4.58,"4.58","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-26 16:00:00,NA,"(A- 1- 1)31cac- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.77411667000000","-111.8858778000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4400.86,"feet",0.1,"feet","Level or other surveyed method.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19430628",464,"ft",464,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"194","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101179","Sample-Routine","WATER","Surface Water",2021-06-30,"10:55:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-30 16:55:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"195","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101285","Sample-Routine","WATER","Surface Water",2021-07-07,"14:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-07 20:40:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"196","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101451","Sample-Routine","WATER","Groundwater",2021-08-05,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404124111551101",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-08-05 17:00:00,NA,"(C- 1- 1)35acc- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.69008610000000","-111.9198056000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4250,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19920216",965,"ft",980,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"197","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101253","Sample-Routine","WATER","Surface Water",2021-07-08,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.15,"0.150","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-29,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-07-08 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"198","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100837","Sample-Routine","WATER","Surface Water",2021-04-22,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",4.96,"4.96","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-22 16:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"199","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100917","Sample-Routine","WATER","Surface Water",2021-05-05,"11:40:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-05-05 17:40:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"200","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101156","Sample-Routine","WATER","Surface Water",2021-06-23,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",5.44,"5.44","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-23 16:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"201","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101253","Sample-Routine","WATER","Surface Water",2021-07-08,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.101,"0.101","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-08 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"202","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200859","Sample-Routine","WATER","Surface Water",2022-04-14,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",4.79,"4.79","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-14 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"203","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200118","Sample-Routine","WATER","Surface Water",2021-11-01,"12:00:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-01 18:00:00,NA,"GSL 4069, 8 MI WEST OF SALTAIR MARINA","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"204","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200961","Sample-Routine","WATER","Groundwater",2022-04-26,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370604113224601",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",15.4,"15.4","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-26 19:45:00,NA,"(C-42-14)25cdb- 1","Well",NA,"15010008",NA,NA,NA,NA,"37.10187165000000","-113.3803947000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3066.2,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010521",118.7,"ft",134,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"205","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101342","Sample-Routine","WATER","Groundwater",2021-05-25,"15:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233202",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible piston pump",NA,"NITRATE","DISSOLVED",4.46,"4.46","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 21:00:00,NA,"(C-42-14)23acc- 2 WD16-Deep","Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,301.5,"ft",305,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"206","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200210","Sample-Routine","WATER","Surface Water",2021-11-03,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-11-03 20:15:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"207","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101629","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-09-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",1.3,"1.30","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-20 20:00:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"208","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200109","Sample-Routine","WATER","Surface Water",2021-10-29,"14:30:00","MDT",NA,NA,NA,1.5,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-10-29 20:30:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"209","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200308","Sample-Routine","WATER","Surface Water",2021-12-21,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.026,"0.026","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-21 16:45:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"210","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101595","Sample-Routine","WATER","Surface Water",2021-08-31,"11:56:00","MDT",NA,NA,NA,5.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-08-31 17:56:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"211","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200969","Sample-Routine","WATER","Surface Water",2022-05-03,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",1.07,"1.07","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-05-03 19:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"212","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200794","Sample-Routine","WATER","Surface Water",2022-03-30,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Rising stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.129,"0.129","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-30 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"213","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200880","Sample-Routine","WATER","Surface Water",2022-04-21,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, low stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-04-21 18:30:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"214","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100836","Sample-Routine","WATER","Surface Water",2021-04-22,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.092,"0.092","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-22 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"215","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100836","Sample-Routine","WATER","Surface Water",2021-04-22,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.33,"0.330","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-06-24,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-04-22 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"216","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100833","Sample-Routine","WATER","Surface Water",2021-04-21,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-09234500",NA,NA,"Stable, normal stage","Regulated flow","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.047,"0.047","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-21 16:30:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"217","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101471","Sample-Routine","WATER","Surface Water",2021-07-29,"10:45:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-29 16:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"218","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101160","Sample-Routine","WATER","Groundwater",2021-06-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403916112010701",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",2.07,"2.07","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-24 16:00:00,NA,"(C- 2- 2)12cdc- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.65455556000000","-112.0186110000000","24000",".5","seconds","Interpolated from MAP.","NAD83",4710,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"198907",900,"ft",940,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"219","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101446","Sample-Routine","WATER","Surface Water",2021-08-10,"11:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.092,"0.092","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-10 17:15:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"220","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200957","Sample-Routine","WATER","Groundwater",2022-04-27,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370727113233001",NA,NA,"Not applicable","Routine sample","8010","USGS parameter code 82398","Other","Inertial Pump",NA,"NITRATE","DISSOLVED",16.4,"16.4","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-27 16:30:00,NA,"(C-42-14)23abc- 1 WD-5","Well",NA,"15010008",NA,NA,NA,NA,"37.12434365000000","-113.3936173000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",2993.9,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19950206",160,"ft",160,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"221","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100978","Sample-Routine","WATER","Surface Water",2021-05-20,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.155,"0.155","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-08-05,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-05-20 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"222","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100978","Sample-Routine","WATER","Surface Water",2021-05-20,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",1.05,"1.05","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-20 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"223","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100920","Sample-Routine","WATER","Surface Water",2021-05-05,"12:35:00","MDT",NA,NA,NA,2.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-05-05 18:35:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"224","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100920","Sample-Routine","WATER","Surface Water",2021-05-05,"12:35:00","MDT",NA,NA,NA,2.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-05 18:35:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"225","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101594","Sample-Routine","WATER","Surface Water",2021-08-31,"11:46:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-08-31 17:46:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"226","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200107","Sample-Routine","WATER","Surface Water",2021-10-29,"12:00:00","MDT",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.401,"0.401","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-29 18:00:00,NA,"N1018 6 MI SW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4197.7,"feet",0.1,"feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"227","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200107","Sample-Routine","WATER","Surface Water",2021-10-29,"12:00:00","MDT",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.091,"0.091","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-29 18:00:00,NA,"N1018 6 MI SW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4197.7,"feet",0.1,"feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"228","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100857","Sample-Routine","WATER","Surface Water",2021-04-19,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",5.54,"5.54","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-19 16:45:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"229","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201226","Sample-Routine","WATER","Surface Water",2022-06-15,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-06-15 16:45:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"230","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101175","Sample-Routine","WATER","Surface Water",2021-06-29,"11:00:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-29 17:00:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"231","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101255","Sample-Routine","WATER","Surface Water",2021-07-01,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.067,"0.067","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-29,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-07-01 18:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"232","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101054","Sample-Routine","WATER","Surface Water",2021-06-02,"10:30:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-06-02 16:30:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"233","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101285","Sample-Routine","WATER","Surface Water",2021-07-07,"14:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-07 20:40:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"234","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100922","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-05-05,"10:25:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-05 16:25:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"235","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101200","Sample-Routine","WATER","Surface Water",2021-07-01,"14:15:00","MDT",NA,NA,NA,1.9,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-01 20:15:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"236","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100748","Sample-Routine","WATER","Surface Water",2021-04-08,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-04-08 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"237","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100931","Sample-Routine","WATER","Surface Water",2021-05-12,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-05-12 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"238","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200810","Sample-Routine","WATER","Surface Water",2022-04-06,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Falling stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-04-06 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"239","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101055","Sample-Routine","WATER","Surface Water",2021-06-02,"10:40:00","MDT",NA,NA,NA,7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-06-02 16:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"240","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100917","Sample-Routine","WATER","Surface Water",2021-05-05,"11:40:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-05 17:40:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"241","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200105","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-10-28,"15:15:00","MDT",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-10-28 21:15:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"242","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101593","Sample-Routine","WATER","Surface Water",2021-08-31,"10:43:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-08-31 16:43:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"243","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100892","Sample-Routine","WATER","Surface Water",2021-05-06,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.073,"0.073","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-06 16:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"244","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101559","Sample-Routine","WATER","Surface Water",2021-08-24,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.017,"0.017","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-24 20:15:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"245","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101058","Sample-Routine","WATER","Surface Water",2021-06-02,"12:50:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.037,0.037,"Numeric","MG/L AS N",NA,"NWIS",2021-06-02 18:50:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"246","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101576","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-09-07,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-09-07 19:30:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"247","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101257","Sample-Routine","WATER","Surface Water",2021-06-30,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, low stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.024,"0.024","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-30 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"248","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101257","Sample-Routine","WATER","Surface Water",2021-06-30,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, low stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.104,"0.104","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-30 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"249","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101202","Sample-Routine","WATER","Surface Water",2021-07-01,"15:30:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-01 21:30:00,NA,"N1018 6 MI SW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4197.7,"feet",0.1,"feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"250","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101131","Sample-Routine","WATER","Groundwater",2021-06-22,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404247111511501",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.9,"1.90","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-22 16:00:00,NA,"(D- 1- 1)20ddd- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.71300830000000","-111.8541917000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4413,"feet",5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19770509",502,"ft",502,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"251","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101242","Sample-Routine","WATER","Surface Water",2021-07-06,"12:45:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-06 18:45:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"252","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101242","Sample-Routine","WATER","Surface Water",2021-07-06,"12:45:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-07-06 18:45:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"253","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101502","Sample-Routine","WATER","Surface Water",2021-08-13,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.624,"0.624","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-11-16,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-08-13 19:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"254","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100781","Sample-Routine","WATER","Surface Water",2021-04-10,"10:10:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-04-10 16:10:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"255","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100893","Sample-Routine","WATER","Surface Water",2021-05-06,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",4.95,"4.95","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-06 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"256","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101216","Sample-Routine","WATER","Groundwater",2021-07-06,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403821112012400",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",15.3,"15.3","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-06 15:45:00,NA,"(C- 2- 2)13cda- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.64144444000000","-112.0156389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4748,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19720720",1385,"ft",1385,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"257","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100893","Sample-Routine","WATER","Surface Water",2021-05-06,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.199,"0.199","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-07-06,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-05-06 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"258","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200783","Sample-Routine","WATER","Surface Water",2022-03-30,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",5.45,"5.45","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-30 19:45:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"259","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100921","Sample-Routine","WATER","Surface Water",2021-05-05,"13:15:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-05-05 19:15:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"260","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100978","Sample-Routine","WATER","Surface Water",2021-05-20,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.237,"0.237","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-20 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"261","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101543","Quality Control Sample-Field Replicate","WATER","Groundwater",2021-08-31,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404218111560401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-08-31 15:00:00,NA,"(C- 1- 1)27adc-1","Well",NA,"16020204",NA,NA,NA,NA,"40.70500000000000","-111.9344444000000",NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"262","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101713","Sample-Routine","WATER","Surface Water",2021-07-29,"12:35:00","MDT",NA,NA,NA,2,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-29 18:35:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"263","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100838","Sample-Routine","WATER","Surface Water",2021-04-23,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-23 18:30:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"264","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101713","Sample-Routine","WATER","Surface Water",2021-07-29,"12:35:00","MDT",NA,NA,NA,2,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-29 18:35:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"265","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100979","Sample-Routine","WATER","Surface Water",2021-05-20,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",3.62,"3.62","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-20 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"266","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101633","Sample-Routine","WATER","Surface Water",2021-08-25,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",4.65,"4.65","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-25 15:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"267","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101341","Sample-Routine","WATER","Groundwater",2021-05-25,"15:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370744113225701",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",0.545,"0.545","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 21:45:00,NA,"(C-42-14)13cca- 1 WD-22","Well",NA,"15010008",NA,NA,NA,NA,"37.12897220000000","-113.3826110000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3088,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Other aquifers",NA,"Navajo Sandstone (Jurassic)","Unconfined single aquifer","20150818",170.5,"ft",170.5,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"268","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101341","Sample-Routine","WATER","Groundwater",2021-05-25,"15:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370744113225701",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",2.41,"2.41","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 21:45:00,NA,"(C-42-14)13cca- 1 WD-22","Well",NA,"15010008",NA,NA,NA,NA,"37.12897220000000","-113.3826110000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3088,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Other aquifers",NA,"Navajo Sandstone (Jurassic)","Unconfined single aquifer","20150818",170.5,"ft",170.5,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"269","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200163","Sample-Routine","WATER","Surface Water",2021-11-04,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, low stage","Not applicable","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-11-04 20:30:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"270","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200163","Sample-Routine","WATER","Surface Water",2021-11-04,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, low stage","Not applicable","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-04 20:30:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"271","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101121","Sample-Routine","WATER","Surface Water",2021-06-16,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey-Water Resources Discipline","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.027,"0.027","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-16 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"272","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101196","Sample-Routine","WATER","Surface Water",2021-07-01,"10:45:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-07-01 16:45:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"273","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101196","Sample-Routine","WATER","Surface Water",2021-07-01,"10:45:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-01 16:45:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"274","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101059","Sample-Routine","WATER","Surface Water",2021-06-02,"13:05:00","MDT",NA,NA,NA,2.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-06-02 19:05:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"275","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200965","Sample-Routine","WATER","Groundwater",2022-04-25,"14:25:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233201",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible piston pump",NA,"NITRATE","DISSOLVED",2.8,"2.80","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-25 20:25:00,NA,"(C-42-14)23acc- 1 WD15-Shallow","Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,61,"ft",65,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"276","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100855","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-04-23,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-23 17:00:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"277","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200113","Sample-Routine","WATER","Surface Water",2021-11-01,"11:59:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-01 17:59:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"278","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101345","Sample-Routine","WATER","Groundwater",2021-05-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370727113233001",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Inertial Pump",NA,"NITRATE","DISSOLVED",18.8,"18.8","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 16:00:00,NA,"(C-42-14)23abc- 1 WD-5","Well",NA,"15010008",NA,NA,NA,NA,"37.12434365000000","-113.3936173000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",2993.9,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19950206",160,"ft",160,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"279","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101451","Sample-Routine","WATER","Groundwater",2021-08-05,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404124111551101",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-08-05 17:00:00,NA,"(C- 1- 1)35acc- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.69008610000000","-111.9198056000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4250,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19920216",965,"ft",980,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"280","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200158","Sample-Routine","WATER","Surface Water",2021-11-03,"11:45:00","MDT",NA,NA,NA,5.4,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-03 17:45:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"281","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200782","Sample-Routine","WATER","Surface Water",2022-03-31,"11:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-03-31 17:10:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"282","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101386","Sample-Routine","WATER","Surface Water",2021-07-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.481,"0.481","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-12-01,"holding time exceededsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-07-28 20:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"283","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101574","Sample-Routine","WATER","Surface Water",2021-09-07,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-09-07 19:45:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"284","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101340","Sample-Routine","WATER","Groundwater",2021-05-26,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370806113223401",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",1.84,"1.84","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-26 15:30:00,NA,"(C-42-14)13acc- 1 WD-21","Well",NA,"15010008",NA,NA,NA,NA,"37.13497220000000","-113.3761389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",2987,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer","20130410",318,"ft",333,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"285","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101406","Sample-Routine","WATER","Groundwater",2021-08-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404532111504401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",19.5,"19.5","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-03 17:00:00,NA,"(D- 1- 1) 4cac- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.75878610000000","-111.8461139000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4678,"feet",0.5,"feet","Light Detection And Ranging, airplane","NAVD88","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined single aquifer","19560928",510,"ft",510,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"286","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101473","Sample-Routine","WATER","Surface Water",2021-07-29,"11:55:00","MDT",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-29 17:55:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"287","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101473","Sample-Routine","WATER","Surface Water",2021-07-29,"11:55:00","MDT",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-29 17:55:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"288","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100784","Sample-Routine","WATER","Surface Water",2021-04-10,"12:17:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-04-10 18:17:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"289","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200959","Sample-Routine","WATER","Surface Water",2022-04-26,"16:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370737113221301",NA,NA,"Not applicable","Routine sample","8010","USGS parameter code 82398","Other","Peristaltic pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.164,0.164,"Numeric","MG/L ASNO3",NA,"NWIS",2022-04-26 22:15:00,NA,"(C-42-14)24bcd Sand Hollow Res. at boat ramp","Lake, Reservoir, Impoundment",NA,"15010008",NA,NA,NA,NA,"37.12129167000000","-113.3819750000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"290","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101001","Sample-Routine","WATER","Surface Water",2021-05-26,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-26 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"291","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101241","Sample-Routine","WATER","Surface Water",2021-07-06,"12:00:00","MDT",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-06 18:00:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"292","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201098","Sample-Routine","WATER","Surface Water",2022-05-25,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-09234500",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81",NA,"NITRATE","DISSOLVED",0.022,"0.022","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-05-25 17:00:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"293","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101056","Sample-Routine","WATER","Surface Water",2021-06-02,"11:50:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-02 17:50:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"294","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200069","Sample-Routine","WATER","Surface Water",2021-10-21,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",6.47,"6.47","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-21 17:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"295","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200069","Sample-Routine","WATER","Surface Water",2021-10-21,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.188,"0.188","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-11,"holding time exceededsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-10-21 17:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"296","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101349","Sample-Routine","WATER","Groundwater",2021-05-24,"15:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370655113224901",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-05-24 21:30:00,NA,"(C-42-14)24bcd- 1 WD-9","Well",NA,"15010008",NA,NA,NA,NA,"37.12312150000000","-113.3828948000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3066,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010523",155,"ft",158,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"297","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101244","Sample-Routine","WATER","Surface Water",2021-07-06,"13:30:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-07-06 19:30:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"298","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100942","Sample-Routine","WATER","Surface Water",2021-05-05,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-05 19:20:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"299","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100833","Sample-Routine","WATER","Surface Water",2021-04-21,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-09234500",NA,NA,"Stable, normal stage","Regulated flow","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.21,"0.210","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-21 16:30:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"300","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101052","Sample-Routine","WATER","Surface Water",2021-05-27,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81",NA,"NITRATE","DISSOLVED",16.6,"16.6","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-27 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"301","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101106","Sample-Routine","WATER","Groundwater",2021-06-15,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404100111483201",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",4.91,"4.91","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-15 15:00:00,NA,"(D- 1- 1)35cda- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.68328610000000","-111.8058639000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4790,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19641022",580,"ft",580,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"302","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100919","Sample-Routine","WATER","Surface Water",2021-05-05,"12:30:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-05-05 18:30:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"303","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101630","Sample-Routine","WATER","Surface Water",2021-09-20,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.1,"0.100","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-20 16:30:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"304","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100919","Sample-Routine","WATER","Surface Water",2021-05-05,"12:30:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-05 18:30:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"305","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200677","Sample-Routine","WATER","Surface Water",2022-03-16,"12:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403151111290601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.046,"0.046","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-16 18:45:00,NA,"LEFT BANK TRIBUTARY TO SNAKE CREEK NEAR HOT POTS","Stream",NA,"16020203",NA,NA,NA,NA,"40.53071944000000","-111.4849500000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5698,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"306","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100764","Sample-Routine","WATER","Surface Water",2021-04-03,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-03 20:00:00,NA,"WHITE ROCK BAY 0.8 MI W OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4196,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"307","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101155","Sample-Routine","WATER","Surface Water",2021-06-23,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.187,"0.187","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-23 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"308","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101180","Sample-Routine","WATER","Surface Water",2021-06-30,"11:15:00","MDT",NA,NA,NA,0.6,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-06-30 17:15:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"309","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101180","Sample-Routine","WATER","Surface Water",2021-06-30,"11:15:00","MDT",NA,NA,NA,0.6,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-30 17:15:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"310","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101081","Sample-Routine","WATER","Groundwater",2021-06-09,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403532112015502",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",17.1,"17.1","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-09 17:00:00,NA,"(C- 3- 2) 2abc- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.59248610000000","-112.0321278000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4880,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"19881017",614,"ft",654,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"311","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101503","Sample-Routine","WATER","Surface Water",2021-08-13,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",3.41,"3.41","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-13 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"312","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201226","Sample-Routine","WATER","Surface Water",2022-06-15,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-06-15 16:45:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"313","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101503","Sample-Routine","WATER","Surface Water",2021-08-13,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",15.1,"15.1","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-13 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"314","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200157","Sample-Routine","WATER","Surface Water",2021-11-03,"11:00:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-03 17:00:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"315","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101054","Sample-Routine","WATER","Surface Water",2021-06-02,"10:30:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-02 16:30:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"316","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101179","Sample-Routine","WATER","Surface Water",2021-06-30,"10:55:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-06-30 16:55:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"317","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200028","Sample-Routine","WATER","Surface Water",2021-10-07,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-10-07 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"318","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101544","Sample-Routine","WATER","Groundwater",2021-08-26,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404627111532601",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",20.3,"20.3","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-26 16:00:00,NA,"(A- 1- 1)31cac- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.77411667000000","-111.8858778000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4400.86,"feet",0.1,"feet","Level or other surveyed method.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19430628",464,"ft",464,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"319","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101407","Sample-Routine","WATER","Groundwater",2021-07-29,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403920111523301",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",3.81,"3.81","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-29 17:00:00,NA,"(D- 2- 1) 7ddb- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.65550556000000","-111.8757222000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4296,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19610502",496,"ft",496,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"320","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101407","Sample-Routine","WATER","Groundwater",2021-07-29,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403920111523301",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",16.9,"16.9","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-29 17:00:00,NA,"(D- 2- 1) 7ddb- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.65550556000000","-111.8757222000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4296,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19610502",496,"ft",496,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"321","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100837","Sample-Routine","WATER","Surface Water",2021-04-22,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",22,"22.0","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-22 16:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"322","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101086","Sample-Routine","WATER","Surface Water",2021-06-02,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.155,"0.155","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-02 16:30:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"323","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200118","Sample-Routine","WATER","Surface Water",2021-11-01,"12:00:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-01 18:00:00,NA,"GSL 4069, 8 MI WEST OF SALTAIR MARINA","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"324","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100766","Sample-Routine","WATER","Surface Water",2021-04-01,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-01 17:30:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"325","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101301","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-07-14,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-14 18:00:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"326","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100844","Sample-Routine","WATER","Surface Water",2021-04-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-04-28 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"327","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101239","Sample-Routine","WATER","Surface Water",2021-07-06,"10:40:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-06 16:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"328","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200109","Sample-Routine","WATER","Surface Water",2021-10-29,"14:30:00","MDT",NA,NA,NA,1.5,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-10-29 20:30:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"329","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101001","Sample-Routine","WATER","Surface Water",2021-05-26,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-05-26 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"330","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101714","Sample-Routine","WATER","Surface Water",2021-07-29,"13:15:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-29 19:15:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"331","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200969","Sample-Routine","WATER","Surface Water",2022-05-03,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.242,"0.242","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-05-03 19:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"332","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200021","Sample-Routine","WATER","Surface Water",2021-10-06,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",1.62,"1.62","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-06 19:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"333","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101634","Sample-Routine","WATER","Surface Water",2021-09-24,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.048,"0.048","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-24 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"334","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101348","Sample-Routine","WATER","Groundwater",2021-05-24,"18:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370646113231901",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-25 00:15:00,NA,"(C-42-14)23ddc- 1 WD-11","Well",NA,"15010008",NA,NA,NA,NA,"37.11312150000000","-113.3915060000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3016.6,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010614",108.5,"ft",112,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"335","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200784","Sample-Routine","WATER","Surface Water",2022-03-30,"10:55:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-30 16:55:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"336","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200752","Sample-Routine","WATER","Surface Water",2022-03-15,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.018,"0.018","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-15 20:00:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"337","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200955","Sample-Routine","WATER","Groundwater",2022-04-27,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370744113225701",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",1.49,"1.49","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-27 20:15:00,NA,"(C-42-14)13cca- 1 WD-22","Well",NA,"15010008",NA,NA,NA,NA,"37.12897220000000","-113.3826110000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3088,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Other aquifers",NA,"Navajo Sandstone (Jurassic)","Unconfined single aquifer","20150818",170.5,"ft",170.5,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"338","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200106","Sample-Routine","WATER","Surface Water",2021-10-29,"11:15:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-10-29 17:15:00,NA,"N1018 6 MI SW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4197.7,"feet",0.1,"feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"339","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100725","Sample-Routine","WATER","Surface Water",2021-03-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.211,"0.211","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-06-07,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-03-25 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"340","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101280","Sample-Routine","WATER","Groundwater",2021-07-13,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404017112020501",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",2.03,"2.03","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-13 15:00:00,NA,"(C- 2- 2) 2cad- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.67150000000000","-112.0348056000000","24000",".5","seconds","Interpolated from MAP.","NAD83",4620,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"19900121",1300,"ft",1320,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"341","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101471","Sample-Routine","WATER","Surface Water",2021-07-29,"10:45:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-29 16:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"342","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101632","Sample-Routine","WATER","Surface Water",2021-08-25,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle","Not Detected","NITROGEN","SUSPENDED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-12-06,"holding time exceededsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-08-25 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"343","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101632","Sample-Routine","WATER","Surface Water",2021-08-25,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",4.06,"4.06","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-25 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"344","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100943","Sample-Routine","WATER","Surface Water",2021-05-05,"13:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-05 19:10:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"345","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200115","Sample-Routine","WATER","Surface Water",2021-11-01,"12:52:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-01 18:52:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"346","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200068","Sample-Routine","WATER","Surface Water",2021-10-21,"15:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.05,"0.050","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-11,"holding time exceededbelow the reporting level but at or above the detection levelsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-10-21 21:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"347","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101633","Sample-Routine","WATER","Surface Water",2021-08-25,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",20.6,"20.6","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-25 15:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"348","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100979","Sample-Routine","WATER","Surface Water",2021-05-20,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",16,"16.0","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-20 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"349","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101057","Sample-Routine","WATER","Surface Water",2021-06-02,"12:05:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-06-02 18:05:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"350","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101175","Sample-Routine","WATER","Surface Water",2021-06-29,"11:00:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-06-29 17:00:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"351","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101238","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-07-06,"10:35:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-07-06 16:35:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"352","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100724","Sample-Routine","WATER","Surface Water",2021-03-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",8,"8.00","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-25 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"353","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101177","Sample-Routine","WATER","Surface Water",2021-06-29,"14:20:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-29 20:20:00,NA,"GSL 4069, 8 MI WEST OF SALTAIR MARINA","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"354","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101255","Sample-Routine","WATER","Surface Water",2021-07-01,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.969,"0.969","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-01 18:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"355","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101200","Sample-Routine","WATER","Surface Water",2021-07-01,"14:15:00","MDT",NA,NA,NA,1.9,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-07-01 20:15:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"356","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200162","Sample-Routine","WATER","Surface Water",2021-11-04,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-04 20:45:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"357","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100922","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-05-05,"10:25:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-05-05 16:25:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"358","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100748","Sample-Routine","WATER","Surface Water",2021-04-08,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-08 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"359","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101174","Sample-Routine","WATER","Groundwater",2021-06-29,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403423111514401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.47,"1.47","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-29 16:30:00,NA,"(D- 3- 1) 8bdd- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.57316667000000","-111.8627778000000","24000","1","seconds","Interpolated from MAP.","NAD83",4548,"feet",5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19550331",606,"ft",657,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"360","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101445","Sample-Routine","WATER","Surface Water",2021-08-10,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.344,"0.344","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-10 20:15:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"361","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201033","Sample-Routine","WATER","Surface Water",2022-05-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, low stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-05-20 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"362","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101545","Sample-Routine","WATER","Groundwater",2021-08-24,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403523111514801",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.46,"1.46","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-24 15:30:00,NA,"(D- 3- 1) 5bda- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.58976667000000","-111.8629417000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4590,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19560710",650,"ft",650,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"363","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101088","Sample-Routine","WATER","Surface Water",2021-06-01,"13:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-01 19:40:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"364","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200781","Quality Control Sample-Field Replicate","WATER","Surface Water",2022-03-31,"15:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",5.46,"5.46","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-31 21:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"365","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101386","Sample-Routine","WATER","Surface Water",2021-07-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",27.1,"27.1","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-28 20:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"366","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200963","Sample-Routine","WATER","Groundwater",2022-04-25,"17:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370646113231901",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-04-25 23:30:00,NA,"(C-42-14)23ddc- 1 WD-11","Well",NA,"15010008",NA,NA,NA,NA,"37.11312150000000","-113.3915060000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3016.6,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010614",108.5,"ft",112,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"367","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100844","Sample-Routine","WATER","Surface Water",2021-04-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-28 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"368","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200210","Sample-Routine","WATER","Surface Water",2021-11-03,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-03 20:15:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"369","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101387","Sample-Routine","WATER","Surface Water",2021-07-28,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.035,"0.035","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-28 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"370","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200959","Sample-Routine","WATER","Surface Water",2022-04-26,"16:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370737113221301",NA,NA,"Not applicable","Routine sample","8010","USGS parameter code 82398","Other","Peristaltic pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.037,0.037,"Numeric","MG/L AS N",NA,"NWIS",2022-04-26 22:15:00,NA,"(C-42-14)24bcd Sand Hollow Res. at boat ramp","Lake, Reservoir, Impoundment",NA,"15010008",NA,NA,NA,NA,"37.12129167000000","-113.3819750000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"371","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101202","Sample-Routine","WATER","Surface Water",2021-07-01,"15:30:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-01 21:30:00,NA,"N1018 6 MI SW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4197.7,"feet",0.1,"feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"372","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101597","Sample-Routine","WATER","Surface Water",2021-08-31,"12:54:00","MDT",NA,NA,NA,1.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-08-31 18:54:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"373","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101132","Sample-Routine","WATER","Surface Water",2021-05-25,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, high stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.13,"0.130","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 19:20:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"374","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101596","Sample-Routine","WATER","Surface Water",2021-08-31,"12:44:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-08-31 18:44:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"375","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101502","Sample-Routine","WATER","Surface Water",2021-08-13,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.76,"0.760","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-13 19:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"376","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101085","Sample-Routine","WATER","Surface Water",2021-06-02,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81",NA,"NITRATE","DISSOLVED",13.6,"13.6","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-02 20:00:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"377","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101254","Sample-Routine","WATER","Surface Water",2021-07-08,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.315,"0.315","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-29,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-07-08 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"378","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101254","Sample-Routine","WATER","Surface Water",2021-07-08,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",21.8,"21.8","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-08 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"379","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101244","Sample-Routine","WATER","Surface Water",2021-07-06,"13:30:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-06 19:30:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"380","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200956","Sample-Routine","WATER","Groundwater",2022-04-27,"12:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370806113223401",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",1.66,"1.66","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-27 18:40:00,NA,"(C-42-14)13acc- 1 WD-21","Well",NA,"15010008",NA,NA,NA,NA,"37.13497220000000","-113.3761389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",2987,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer","20130410",318,"ft",333,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"381","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101347","Sample-Routine","WATER","Groundwater",2021-05-24,"19:50:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370654113213501",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Inertial Pump",NA,"NITRATE","DISSOLVED",0.956,"0.956","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 01:50:00,NA,"(C-42-13)19cdb- 1 WD-12","Well",NA,"15010008",NA,NA,NA,NA,"37.11506615000000","-113.3606443000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3083.7,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19990503",155.5,"ft",155.6,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"382","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101450","Sample-Routine","WATER","Groundwater",2021-08-11,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404059111500401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",6.47,"6.47","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-11 16:30:00,NA,"(D- 1- 1)33ddd- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.68315278000000","-111.8345083000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4490,"feet",5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19640626",657,"ft",664,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"383","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101347","Sample-Routine","WATER","Groundwater",2021-05-24,"19:50:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370654113213501",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Inertial Pump",NA,"NITRATE","DISSOLVED",4.23,"4.23","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 01:50:00,NA,"(C-42-13)19cdb- 1 WD-12","Well",NA,"15010008",NA,NA,NA,NA,"37.11506615000000","-113.3606443000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3083.7,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19990503",155.5,"ft",155.6,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"384","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101543","Quality Control Sample-Field Replicate","WATER","Groundwater",2021-08-31,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404218111560401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-08-31 15:00:00,NA,"(C- 1- 1)27adc-1","Well",NA,"16020204",NA,NA,NA,NA,"40.70500000000000","-111.9344444000000",NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"385","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101629","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-09-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",5.77,"5.77","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-20 20:00:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"386","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101302","Sample-Routine","WATER","Surface Water",2021-07-14,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.113,"0.113","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-14 15:45:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"387","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101592","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-08-31,"10:33:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-08-31 16:33:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"388","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101286","Sample-Routine","WATER","Surface Water",2021-07-07,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-07 20:00:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"389","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101712","Sample-Routine","WATER","Surface Water",2021-07-29,"12:30:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-29 18:30:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"390","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101057","Sample-Routine","WATER","Surface Water",2021-06-02,"12:05:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-02 18:05:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"391","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200796","Sample-Routine","WATER","Surface Water",2022-03-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey-Water Resources Discipline","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",6.74,"6.74","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-24 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"392","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101238","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-07-06,"10:35:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-06 16:35:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"393","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200796","Sample-Routine","WATER","Surface Water",2022-03-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey-Water Resources Discipline","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",29.8,"29.8","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-24 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"394","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200943","Sample-Routine","WATER","Surface Water",2022-04-28,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, low stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.03,"0.030","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-06-06,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-04-28 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"395","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101414","Sample-Routine","WATER","Surface Water",2021-07-30,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-07-30 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"396","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200114","Sample-Routine","WATER","Surface Water",2021-11-01,"12:10:00","MDT",NA,NA,NA,5.9,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-01 18:10:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"397","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200964","Sample-Routine","WATER","Groundwater",2022-04-25,"15:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233202",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible piston pump",NA,"NITRATE","DISSOLVED",18.5,"18.5","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-25 21:45:00,NA,"(C-42-14)23acc- 2 WD16-Deep","Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,301.5,"ft",305,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"398","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101106","Sample-Routine","WATER","Groundwater",2021-06-15,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404100111483201",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",21.7,"21.7","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-15 15:00:00,NA,"(D- 1- 1)35cda- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.68328610000000","-111.8058639000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4790,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19641022",580,"ft",580,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"399","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200970","Sample-Routine","WATER","Surface Water",2022-05-03,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.049,"0.049","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-05-03 16:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"400","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101051","Sample-Routine","WATER","Surface Water",2021-05-27,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.152,"0.152","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-08-13,"sample was warm when received","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-05-27 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"401","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101445","Sample-Routine","WATER","Surface Water",2021-08-10,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.078,"0.078","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-10 20:15:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"402","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101199","Sample-Routine","WATER","Surface Water",2021-07-01,"13:45:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-01 19:45:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"403","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200105","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-10-28,"15:15:00","MDT",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-10-28 21:15:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"404","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200156","Sample-Routine","WATER","Surface Water",2021-11-04,"10:45:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-04 16:45:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"405","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101156","Sample-Routine","WATER","Surface Water",2021-06-23,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",24.1,"24.1","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-23 16:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"406","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100766","Sample-Routine","WATER","Surface Water",2021-04-01,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-04-01 17:30:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"407","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101060","Sample-Routine","WATER","Surface Water",2021-06-02,"13:35:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-06-02 19:35:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"408","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100892","Sample-Routine","WATER","Surface Water",2021-05-06,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.321,"0.321","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-06 16:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"409","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200859","Sample-Routine","WATER","Surface Water",2022-04-14,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.157,"0.157","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-05-26,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-04-14 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"410","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100765","Sample-Routine","WATER","Surface Water",2021-04-02,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-02 17:00:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"411","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200021","Sample-Routine","WATER","Surface Water",2021-10-06,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.366,"0.366","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-06 19:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"412","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101342","Sample-Routine","WATER","Groundwater",2021-05-25,"15:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233202",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible piston pump",NA,"NITRATE","DISSOLVED",19.7,"19.7","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 21:00:00,NA,"(C-42-14)23acc- 2 WD16-Deep","Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,301.5,"ft",305,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"413","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100764","Sample-Routine","WATER","Surface Water",2021-04-03,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-04-03 20:00:00,NA,"WHITE ROCK BAY 0.8 MI W OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4196,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"414","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101056","Sample-Routine","WATER","Surface Water",2021-06-02,"11:50:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-06-02 17:50:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"415","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101752","Sample-Routine","WATER","Surface Water",2021-09-17,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.021,"0.021","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-17 19:15:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"416","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200784","Sample-Routine","WATER","Surface Water",2022-03-30,"10:55:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-03-30 16:55:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"417","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100724","Sample-Routine","WATER","Surface Water",2021-03-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.03,"0.030","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-06-07,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-03-25 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"418","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101349","Sample-Routine","WATER","Groundwater",2021-05-24,"15:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370655113224901",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-05-24 21:30:00,NA,"(C-42-14)24bcd- 1 WD-9","Well",NA,"15010008",NA,NA,NA,NA,"37.12312150000000","-113.3828948000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3066,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010523",155,"ft",158,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"419","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200962","Sample-Routine","WATER","Groundwater",2022-04-26,"09:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370655113224901",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-04-26 15:15:00,NA,"(C-42-14)24bcd- 1 WD-9","Well",NA,"15010008",NA,NA,NA,NA,"37.12312150000000","-113.3828948000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3066,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010523",155,"ft",158,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"420","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200752","Sample-Routine","WATER","Surface Water",2022-03-15,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.081,"0.081","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-15 20:00:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"421","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200041","Sample-Routine","WATER","Surface Water",2021-10-13,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Falling stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.56,"0.560","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-13 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"422","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101712","Sample-Routine","WATER","Surface Water",2021-07-29,"12:30:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-29 18:30:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"423","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200964","Sample-Routine","WATER","Groundwater",2022-04-25,"15:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233202",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible piston pump",NA,"NITRATE","DISSOLVED",4.18,"4.18","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-25 21:45:00,NA,"(C-42-14)23acc- 2 WD16-Deep","Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3000,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,301.5,"ft",305,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"424","USGS-CO","USGS Colorado Water Science Center","nwisco.01.02102146","Sample-Routine","WATER","Bulk deposition",2021-03-22,"12:17:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Colorado Water Science Center","USGS-404456109301800",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.103,"0.103","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"IC032","USGS","Ions, wf, auto IC (NRP & CO)","USGS TWRI 5-A1/1989, p 523","USGS CO WSC Water-Quality Research Lab, Denver",2021-08-03,NA,"Laboratory Reporting Level",0.007,0.007,"Numeric","MG/L AS N",NA,"NWIS",2021-03-22 18:17:00,NA,"GRIZZLY RIDGE SNOW SITE, UT","Land",NA,"14060002",NA,NA,NA,NA,"40.74888889000000","-109.5050000000000",NA,"1","minutes","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",9558,"feet",50,"feet","Global Positioning System.","NAVD88","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"425","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101472","Sample-Routine","WATER","Surface Water",2021-07-29,"11:50:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-29 17:50:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"426","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101132","Sample-Routine","WATER","Surface Water",2021-05-25,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,"Stable, high stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.029,"0.029","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 19:20:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"427","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200115","Sample-Routine","WATER","Surface Water",2021-11-01,"12:52:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-01 18:52:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"428","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101345","Sample-Routine","WATER","Groundwater",2021-05-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370727113233001",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Inertial Pump",NA,"NITRATE","DISSOLVED",4.24,"4.24","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 16:00:00,NA,"(C-42-14)23abc- 1 WD-5","Well",NA,"15010008",NA,NA,NA,NA,"37.12434365000000","-113.3936173000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",2993.9,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19950206",160,"ft",160,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"429","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200960","Sample-Routine","WATER","Groundwater",2022-04-26,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370654113213501",NA,NA,"Not applicable","Routine sample","8010","USGS parameter code 82398","Other","Inertial Pump",NA,"NITRATE","DISSOLVED",0.867,"0.867","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-04-26 20:45:00,NA,"(C-42-13)19cdb- 1 WD-12","Well",NA,"15010008",NA,NA,NA,NA,"37.11506615000000","-113.3606443000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3083.7,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19990503",155.5,"ft",155.6,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"430","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200113","Sample-Routine","WATER","Surface Water",2021-11-01,"11:59:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-01 17:59:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"431","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100724","Sample-Routine","WATER","Surface Water",2021-03-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",1.81,"1.81","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-25 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"432","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200796","Sample-Routine","WATER","Surface Water",2022-03-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey-Water Resources Discipline","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.166,"0.166","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-05-12,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-03-24 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"433","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101177","Sample-Routine","WATER","Surface Water",2021-06-29,"14:20:00","MDT",NA,NA,NA,0.2,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-06-29 20:20:00,NA,"GSL 4069, 8 MI WEST OF SALTAIR MARINA","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"434","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200041","Sample-Routine","WATER","Surface Water",2021-10-13,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Falling stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.044,"0.044","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-04,"holding time exceededbelow the reporting level but at or above the detection levelsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-10-13 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"435","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101346","Sample-Routine","WATER","Groundwater",2021-05-25,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370604113224601",NA,NA,"Not applicable","Routine sample","4040","USGS parameter code 82398","Submersible pump","Submersible centrifugal pump",NA,"NITRATE","DISSOLVED",17,"17.0","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-05-25 15:30:00,NA,"(C-42-14)25cdb- 1","Well",NA,"15010008",NA,NA,NA,NA,"37.10187165000000","-113.3803947000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3066.2,"feet",0.1,"feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010521",118.7,"ft",134,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"436","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200810","Sample-Routine","WATER","Surface Water",2022-04-06,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Falling stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-04-06 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"437","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200119","Sample-Routine","WATER","Surface Water",2021-11-01,"12:45:00","MDT",NA,NA,NA,2.6,"meters",NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-01 18:45:00,NA,"GSL 4069, 8 MI WEST OF SALTAIR MARINA","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"438","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101239","Sample-Routine","WATER","Surface Water",2021-07-06,"10:40:00","MDT",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-06 16:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"439","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200795","Sample-Routine","WATER","Surface Water",2022-03-24,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey-Water Resources Discipline","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.038,"0.038","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-05-12,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-03-24 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"440","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101633","Sample-Routine","WATER","Surface Water",2021-08-25,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.415,"0.415","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-12-06,"holding time exceededsee result laboratory comment","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-08-25 15:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"441","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101472","Sample-Routine","WATER","Surface Water",2021-07-29,"11:50:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-07-29 17:50:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"442","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100856","Sample-Routine","WATER","Surface Water",2021-04-19,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,"Falling stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.183,"0.183","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-04-19 19:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"443","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101631","Sample-Routine","WATER","Surface Water",2021-09-16,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.135,"0.135","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-09-16 17:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"444","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101446","Sample-Routine","WATER","Surface Water",2021-08-10,"11:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",0.408,"0.408","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-08-10 17:15:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"445","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101592","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-08-31,"10:33:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-08-31 16:33:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"446","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101216","Sample-Routine","WATER","Groundwater",2021-07-06,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403821112012400",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",3.45,"3.45","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-07-06 15:45:00,NA,"(C- 2- 2)13cda- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.64144444000000","-112.0156389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4748,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19720720",1385,"ft",1385,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"447","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200041","Sample-Routine","WATER","Surface Water",2021-10-13,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Falling stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",2.48,"2.48","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-10-13 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"448","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100979","Sample-Routine","WATER","Surface Water",2021-05-20,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.155,"0.155","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-08-05,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-05-20 16:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"449","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101081","Sample-Routine","WATER","Groundwater",2021-06-09,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403532112015502",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",3.86,"3.86","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-06-09 17:00:00,NA,"(C- 3- 2) 2abc- 2","Well",NA,"16020204",NA,NA,NA,NA,"40.59248610000000","-112.0321278000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4880,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"19881017",614,"ft",654,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"450","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101714","Sample-Routine","WATER","Surface Water",2021-07-29,"13:15:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-07-29 19:15:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"451","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100781","Sample-Routine","WATER","Surface Water",2021-04-10,"10:10:00","MDT",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-04-10 16:10:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"452","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101597","Sample-Routine","WATER","Surface Water",2021-08-31,"12:54:00","MDT",NA,NA,NA,1.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-08-31 18:54:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"453","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100604","Sample-Routine","WATER","Surface Water",2021-02-25,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.644,"0.644","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-25 20:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"454","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100604","Sample-Routine","WATER","Surface Water",2021-02-25,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.043,"0.043","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-05-13,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-02-25 20:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"455","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100604","Sample-Routine","WATER","Surface Water",2021-02-25,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",2.85,"2.85","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-25 20:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"456","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100459","Sample-Routine","WATER","Surface Water",2021-01-16,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-01-16 20:40:00,NA,"WHITE ROCK BAY 0.8 MI W OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4196,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"457","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100459","Sample-Routine","WATER","Surface Water",2021-01-16,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-01-16 20:40:00,NA,"WHITE ROCK BAY 0.8 MI W OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4196,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902720-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.851,"0.851","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:30:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908281-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.238,"0.238","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:20:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905400-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.23,"0.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:50:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"461","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100632","Sample-Routine","WATER","Surface Water",2021-02-02,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-02-02 19:40:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"462","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100632","Sample-Routine","WATER","Surface Water",2021-02-02,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-02 19:40:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"463","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100690","Sample-Routine","WATER","Surface Water",2021-03-09,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",24.7,"24.7","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-09 21:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"464","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100690","Sample-Routine","WATER","Surface Water",2021-03-09,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",5.58,"5.58","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-09 21:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"465","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100465","Sample-Routine","WATER","Surface Water",2021-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.93,"0.930","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-21 17:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"466","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100465","Sample-Routine","WATER","Surface Water",2021-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.051,"0.051","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-03-19,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-01-21 17:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"467","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100465","Sample-Routine","WATER","Surface Water",2021-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",4.12,"4.12","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-21 17:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"468","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100520","Sample-Routine","WATER","Surface Water",2021-02-01,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,"Stable, low stage","Regulated flow","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.055,"0.055","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-01 22:00:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"469","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100520","Sample-Routine","WATER","Surface Water",2021-02-01,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,"Stable, low stage","Regulated flow","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.241,"0.241","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-01 22:00:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"470","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100556","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-01-06,"10:45:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-01-06 17:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"471","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100556","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-01-06,"10:45:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-01-06 17:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"472","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100507","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-01-25,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",1.48,"1.48","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-25 18:45:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"473","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100507","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-01-25,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",6.54,"6.54","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-25 18:45:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"474","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100616","Sample-Routine","WATER","Surface Water",2021-02-26,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-02-26 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"475","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100616","Sample-Routine","WATER","Surface Water",2021-02-26,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-26 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905750-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.222,"0.222","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:15:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"477","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100631","Sample-Routine","WATER","Surface Water",2021-02-02,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-02-02 19:45:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"478","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100631","Sample-Routine","WATER","Surface Water",2021-02-02,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-02 19:45:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"479","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100515","Sample-Routine","WATER","Surface Water",2021-02-02,"13:00:00","MST",NA,NA,NA,2.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-02-02 20:00:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"480","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100515","Sample-Routine","WATER","Surface Water",2021-02-02,"13:00:00","MST",NA,NA,NA,2.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-02 20:00:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"481","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100645","Sample-Routine","WATER","Surface Water",2021-03-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, low stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81",NA,"NITRATE","DISSOLVED",0.01,"0.010","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-03 18:30:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"482","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100645","Sample-Routine","WATER","Surface Water",2021-03-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, low stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81",NA,"NITRATE","DISSOLVED",0.046,"0.046","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-03 18:30:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"483","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100563","Sample-Routine","WATER","Surface Water",2021-01-06,"13:10:00","MST",NA,NA,NA,2.3,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-01-06 20:10:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"484","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100563","Sample-Routine","WATER","Surface Water",2021-01-06,"13:10:00","MST",NA,NA,NA,2.3,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-01-06 20:10:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-17,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.13,"0.13","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 21:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908350-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.571,"0.571","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 17:30:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903950-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.28,"9.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:00:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"488","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100517","Sample-Routine","WATER","Surface Water",2021-02-02,"13:40:00","MST",NA,NA,NA,1,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-02-02 20:40:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"489","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100517","Sample-Routine","WATER","Surface Water",2021-02-02,"13:40:00","MST",NA,NA,NA,1,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-02 20:40:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"490","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100642","Sample-Routine","WATER","Surface Water",2021-03-01,"12:57:00","MST",NA,NA,NA,2.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-03-01 19:57:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"491","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100642","Sample-Routine","WATER","Surface Water",2021-03-01,"12:57:00","MST",NA,NA,NA,2.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-01 19:57:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"492","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100676","Sample-Routine","WATER","Surface Water",2021-03-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",6.23,"6.23","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-11 18:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"493","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100676","Sample-Routine","WATER","Surface Water",2021-03-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",27.6,"27.6","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-11 18:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"494","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100676","Sample-Routine","WATER","Surface Water",2021-03-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.131,"0.131","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-05-18,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-03-11 18:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"495","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100637","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-03-01,"10:35:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-03-01 17:35:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"496","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100637","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-03-01,"10:35:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-01 17:35:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"497","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100443","Sample-Routine","WATER","Surface Water",2021-01-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.019,"0.019","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-13 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"498","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100443","Sample-Routine","WATER","Surface Water",2021-01-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.085,"0.085","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-13 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"499","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100511","Sample-Routine","WATER","Surface Water",2021-02-02,"10:40:00","MST",NA,NA,NA,7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-02-02 17:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"500","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100511","Sample-Routine","WATER","Surface Water",2021-02-02,"10:40:00","MST",NA,NA,NA,7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-02 17:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"501","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100458","Sample-Routine","WATER","Surface Water",2021-01-16,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.702,"0.702","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-16 17:30:00,NA,"GREAT SALT LAKE 0.07 MI N OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4199,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"502","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100458","Sample-Routine","WATER","Surface Water",2021-01-16,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",3.11,"3.11","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-16 17:30:00,NA,"GREAT SALT LAKE 0.07 MI N OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4199,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"503","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100639","Sample-Routine","WATER","Surface Water",2021-03-01,"11:50:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.039,0.039,"Numeric","MG/L AS N",NA,"NWIS",2021-03-01 18:50:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"504","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100639","Sample-Routine","WATER","Surface Water",2021-03-01,"11:50:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.172,0.172,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-01 18:50:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"505","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100640","Sample-Routine","WATER","Surface Water",2021-03-01,"12:00:00","MST",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-03-01 19:00:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"506","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100640","Sample-Routine","WATER","Surface Water",2021-03-01,"12:00:00","MST",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-01 19:00:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905780-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"17:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.387,"0.387","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 00:15:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.379,"0.379","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 16:50:00,NA,"CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"509","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100605","Sample-Routine","WATER","Surface Water",2021-02-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",6.31,"6.31","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-25 17:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"510","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100605","Sample-Routine","WATER","Surface Water",2021-02-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.119,"0.119","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-05-13,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-02-25 17:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"511","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100605","Sample-Routine","WATER","Surface Water",2021-02-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",27.9,"27.9","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-25 17:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"512","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100553","Sample-Routine","WATER","Surface Water",2021-02-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",1.31,"1.31","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-11 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"513","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100553","Sample-Routine","WATER","Surface Water",2021-02-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.079,"0.079","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-04-01,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-02-11 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"514","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100553","Sample-Routine","WATER","Surface Water",2021-02-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",5.8,"5.80","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-11 18:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"515","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100606","Sample-Routine","WATER","Surface Water",2021-02-25,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-371735110235601",NA,NA,"Not applicable","Not applicable","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81",NA,"NITRATE","DISSOLVED",0.474,"0.474","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-25 19:55:00,NA,"SAN JUAN RIVER AT CLAY HILLS CROSSING, UTAH","Stream",NA,"14080205",NA,NA,NA,NA,"37.29300000000000","-110.3990000000000","24000",".5","seconds","Interpolated from Digital MAP.","NAD83",3703,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"516","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100606","Sample-Routine","WATER","Surface Water",2021-02-25,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-371735110235601",NA,NA,"Not applicable","Not applicable","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81",NA,"NITRATE","DISSOLVED",2.1,"2.10","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-25 19:55:00,NA,"SAN JUAN RIVER AT CLAY HILLS CROSSING, UTAH","Stream",NA,"14080205",NA,NA,NA,NA,"37.29300000000000","-110.3990000000000","24000",".5","seconds","Interpolated from Digital MAP.","NAD83",3703,"feet",4.3,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"517","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100617","Sample-Routine","WATER","Groundwater",2021-02-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403743111544000",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.935,"0.935","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-09 20:15:00,NA,"(C- 2- 1)23dad- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.62818889000000","-111.9120944000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4280,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19720315",391,"ft",391,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"518","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100617","Sample-Routine","WATER","Groundwater",2021-02-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403743111544000",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",4.14,"4.14","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-02-09 20:15:00,NA,"(C- 2- 1)23dad- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.62818889000000","-111.9120944000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4280,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19720315",391,"ft",391,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"519","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100514","Sample-Routine","WATER","Surface Water",2021-02-02,"12:50:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-02-02 19:50:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"520","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100514","Sample-Routine","WATER","Surface Water",2021-02-02,"12:50:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-02 19:50:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"521","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100675","Sample-Routine","WATER","Surface Water",2021-03-11,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",1.74,"1.74","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-11 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"522","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100675","Sample-Routine","WATER","Surface Water",2021-03-11,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.048,"0.048","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-05-18,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-03-11 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"523","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100675","Sample-Routine","WATER","Surface Water",2021-03-11,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",7.68,"7.68","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-11 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"524","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100562","Sample-Routine","WATER","Surface Water",2021-01-06,"13:50:00","MST",NA,NA,NA,1,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-01-06 20:50:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"525","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100562","Sample-Routine","WATER","Surface Water",2021-01-06,"13:50:00","MST",NA,NA,NA,1,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-01-06 20:50:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"526","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100558","Sample-Routine","WATER","Surface Water",2021-01-06,"12:00:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-01-06 19:00:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"527","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100558","Sample-Routine","WATER","Surface Water",2021-01-06,"12:00:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-01-06 19:00:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"528","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100523","Sample-Routine","WATER","Groundwater",2021-02-03,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404315111561501","L-0350106 Numerical result and or metadata revised; see NWQL Technical Memorandum 2022.01",NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.037,0.037,"Numeric","MG/L AS N",NA,"NWIS",2021-02-03 22:30:00,NA,"(C- 1- 1)22acb- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.72042220000000","-111.9371139000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4230,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","20011121",998,"ft",1055,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"529","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100523","Sample-Routine","WATER","Groundwater",2021-02-03,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-404315111561501","L-0350106 Numerical result and or metadata revised; see NWQL Technical Memorandum 2022.01",NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.165,0.165,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-03 22:30:00,NA,"(C- 1- 1)22acb- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.72042220000000","-111.9371139000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4230,"feet",2.5,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","20011121",998,"ft",1055,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"530","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100512","Sample-Routine","WATER","Surface Water",2021-02-02,"11:30:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-02-02 18:30:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"531","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100512","Sample-Routine","WATER","Surface Water",2021-02-02,"11:30:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-02 18:30:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"532","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100421","Sample-Routine","WATER","Surface Water",2021-01-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",5.52,"5.52","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-07 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"533","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100421","Sample-Routine","WATER","Surface Water",2021-01-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.189,"0.189","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-03-18,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-01-07 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"534","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100421","Sample-Routine","WATER","Surface Water",2021-01-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",24.4,"24.4","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-07 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"535","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100643","Sample-Routine","WATER","Surface Water",2021-03-01,"13:36:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.036,0.036,"Numeric","MG/L AS N",NA,"NWIS",2021-03-01 20:36:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"536","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100643","Sample-Routine","WATER","Surface Water",2021-03-01,"13:36:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.162,0.162,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-01 20:36:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"537","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100691","Sample-Routine","WATER","Surface Water",2021-03-09,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",7.68,"7.68","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-09 17:45:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"538","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100691","Sample-Routine","WATER","Surface Water",2021-03-09,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",34,"34.0","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-09 17:45:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"539","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100644","Sample-Routine","WATER","Surface Water",2021-03-01,"13:46:00","MST",NA,NA,NA,1.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-03-01 20:46:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"540","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100644","Sample-Routine","WATER","Surface Water",2021-03-01,"13:46:00","MST",NA,NA,NA,1.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-01 20:46:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"541","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100506","Sample-Routine","WATER","Surface Water",2021-01-27,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",3.08,"3.08","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-27 17:45:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"542","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100506","Sample-Routine","WATER","Surface Water",2021-01-27,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",13.6,"13.6","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-27 17:45:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"543","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100561","Sample-Routine","WATER","Surface Water",2021-01-06,"13:35:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-01-06 20:35:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"544","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100561","Sample-Routine","WATER","Surface Water",2021-01-06,"13:35:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-01-06 20:35:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"545","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100638","Sample-Routine","WATER","Surface Water",2021-03-01,"10:45:00","MST",NA,NA,NA,7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-03-01 17:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"546","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100638","Sample-Routine","WATER","Surface Water",2021-03-01,"10:45:00","MST",NA,NA,NA,7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-01 17:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"12:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.849,"0.849","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905070-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",16.4,"16.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:15:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"549","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100689","Sample-Routine","WATER","Surface Water",2021-03-12,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-03-12 20:00:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"550","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100689","Sample-Routine","WATER","Surface Water",2021-03-12,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-12 20:00:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"551","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100560","Sample-Routine","WATER","Surface Water",2021-01-06,"12:50:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-01-06 19:50:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"552","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100560","Sample-Routine","WATER","Surface Water",2021-01-06,"12:50:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-01-06 19:50:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"553","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101304","Sample-Routine","WATER","Surface Water",2021-03-02,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-371339110395601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.384,"0.384","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-02 21:45:00,NA,"San Juan Arm in the chute","Lake, Reservoir, Impoundment",NA,"14080205",NA,NA,NA,NA,"37.22741667000000","-110.6656556000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3720,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"554","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101304","Sample-Routine","WATER","Surface Water",2021-03-02,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-371339110395601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.7,"1.70","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-03-02 21:45:00,NA,"San Juan Arm in the chute","Lake, Reservoir, Impoundment",NA,"14080205",NA,NA,NA,NA,"37.22741667000000","-110.6656556000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3720,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"555","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100516","Sample-Routine","WATER","Surface Water",2021-02-02,"13:30:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-02-02 20:30:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"556","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100516","Sample-Routine","WATER","Surface Water",2021-02-02,"13:30:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-02 20:30:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"557","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100641","Sample-Routine","WATER","Surface Water",2021-03-01,"12:47:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-03-01 19:47:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"558","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100641","Sample-Routine","WATER","Surface Water",2021-03-01,"12:47:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-03-01 19:47:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"559","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100505","Sample-Routine","WATER","Surface Water",2021-01-27,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",2.46,"2.46","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-27 21:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"560","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100505","Sample-Routine","WATER","Surface Water",2021-01-27,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",10.9,"10.9","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-27 21:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"561","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100510","Sample-Routine","WATER","Surface Water",2021-02-02,"10:30:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2021-02-02 17:30:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"562","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100510","Sample-Routine","WATER","Surface Water",2021-02-02,"10:30:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2021-02-02 17:30:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"563","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100422","Sample-Routine","WATER","Surface Water",2021-01-07,"00:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.792,"0.792","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-07 07:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"564","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100422","Sample-Routine","WATER","Surface Water",2021-01-07,"00:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.054,"0.054","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2021-03-18,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-01-07 07:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"565","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100422","Sample-Routine","WATER","Surface Water",2021-01-07,"00:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",3.51,"3.51","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-01-07 07:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990620-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.107,"0.107","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:40:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C","Sample-Routine","WATER",NA,2021-03-02,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.21,"0.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-02 18:30:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"10:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.391,"0.391","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 17:52:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 18:00:00,NA,"Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908170-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.53,"0.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:15:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.476,"0.476","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:15:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901190-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.475,"0.475","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:00:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901975-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.4,"3.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:00:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949930-0201-4-C","Sample-Routine","WATER",NA,2021-02-01,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.335,"0.335","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-01 17:55:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990376-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.31,"0.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 19:40:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903190-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:50:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905650-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:50:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990555-0120-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-20,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 15:00:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C","Sample-Composite Without Parents","WATER",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190","6 Photic zone samples taken at 1m, 4m, 9m, 12m, 17m, and 20m; Licor 1% depth at 20m; sample time = 15:40",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.281,"0.281","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:40:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901700-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:30:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-26,"09:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-26 16:10:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"582","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996570-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"11:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.35,"1.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 18:43:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903501-0222-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-22,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.1,"2.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 20:30:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,1.44,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.74,"0.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:15:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"585","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996275-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"10:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 17:53:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990680-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.835,"0.835","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 17:25:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4998140-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"10:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 17:36:00,NA,"WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904940-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",15.8,"15.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:30:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901790-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:00:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903260-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.53,"1.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:20:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903950-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.68,"9.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:00:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905000-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908165-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.805,"0.805","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 19:10:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901432-0216-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-16,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.29,"7.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:10:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C","Sample-Routine","WATER",NA,2021-03-31,"09:35:00","MST",NA,NA,NA,4.1,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.333,"0.333","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 16:35:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C","Sample-Routine","WATER",NA,2021-03-19,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.17,"0.17","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-19 20:45:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"13:20:00","MST",NA,NA,NA,2.66,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.582,"0.582","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 20:20:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908500-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 16:40:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905441-0112-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-12,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.382,"0.382","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:30:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903504-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.324,"0.324","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 20:10:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905750-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.193,"0.193","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 00:00:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997300-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"11:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 18:53:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904510-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.36,"2.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:05:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"604","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996275-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"13:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.97,"5.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 20:46:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900510-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.622,"0.622","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 19:30:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903060-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.46,"4.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:45:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990996-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.167,"0.167","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:40:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"608","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995575-0316-LAB","Sample-Routine","WATER",NA,2021-03-16,"14:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.382,"0.382","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-16 21:41:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"14:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.545,"0.545","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 21:49:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902000-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.89,"2.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 17:50:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"15:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.653,"0.653","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 22:10:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904943-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.39,"7.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:00:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-15,"12:00:00","MST",NA,NA,NA,2.08,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.644,"0.644","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"614","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996003-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"12:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.74,"4.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 19:13:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"12:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.653,"0.653","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 19:30:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.582,"0.582","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 20:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.752,"0.752","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:17:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903504-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.528,"0.528","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:20:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-31,"09:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.392,"0.392","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 16:20:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-31,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.38,"0.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 17:40:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C","Sample-Routine","WATER",NA,2021-03-25,"16:25:00","MST",NA,NA,NA,63,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.453,"0.453","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 23:25:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"11:45:00","MST",NA,NA,NA,2.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.631,"0.631","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:45:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",12.5,"12.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:40:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0308-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-08,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905590-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.03,"1.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:45:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.21,"9.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 21:10:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904810-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9,"9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:20:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903080-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.57,"3.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 21:30:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"11:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.685,"0.685","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:45:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"630","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994952-0216-LAB","Sample-Routine","WATER",NA,2021-02-16,"09:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.57,"2.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-16 16:49:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905520-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.91,"9.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:30:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C","Sample-Routine","WATER",NA,2021-03-26,"09:20:00","MST",NA,NA,NA,42.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.455,"0.455","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-26 16:20:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"12:30:00","MST",NA,NA,NA,2.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.703,"0.703","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905630-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.47,"0.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:40:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996850-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"14:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 21:42:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"12:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910626",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.93,"0.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 19:27:00,NA,"Spring Creek 125m upstream of confluence with Main Creek","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4039100000","-111.4570200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0222-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-22,"17:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 00:40:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903080-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.15,"4.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:40:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.69,"9.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 20:10:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904770-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",27.9,"27.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:35:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904940-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.9,"11.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:50:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"12:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.708,"0.708","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-5984855-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"08:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.43,"4.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 15:20:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900510-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.608,"0.608","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 19:40:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.324,"0.324","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 17:00:00,NA,"LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.423,"0.423","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 19:45:00,NA,"Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905590-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.779,"0.779","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:20:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-18,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 23:30:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904726-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.61,"1.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:00:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.538,"0.538","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 22:30:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901700-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.44,"1.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:30:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908130-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.467,"0.467","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 18:10:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904110-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.51,"2.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 16:30:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:50:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.26,"3.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 20:40:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901180-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.24,"1.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 16:50:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990620-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.133,"0.133","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:40:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990376-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.258,"0.258","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:50:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.584,"0.584","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 20:00:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C","Sample-Routine","WATER",NA,2021-03-25,"16:20:00","MST",NA,NA,NA,30,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 23:20:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904810-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.37,"9.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:20:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5913210-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 21:30:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"09:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.284,"0.284","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 16:27:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"10:50:00","MST",NA,NA,NA,2.89,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.599,"0.599","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:50:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990640-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.774,"0.774","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:15:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908165-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.658,"0.658","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 19:10:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-25,"11:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.171,"0.171","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 18:03:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901790-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.67,"1.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:00:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901225-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.08,"2.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 17:20:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.83,"3.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:50:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905750-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.354,"0.354","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 21:10:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900470-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 19:30:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.8,"10.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:40:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903260-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:45:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990680-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.447,"0.447","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 16:30:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0208-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-08,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"14:00:00","MST",NA,NA,NA,2.23,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.636,"0.636","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 21:00:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"678","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996540-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"10:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.4,"10.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 17:18:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905090-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",18,"18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:15:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902900-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.35,"1.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:00:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-27,"08:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.352,"0.352","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 15:45:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905520-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",18,"18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:10:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905000-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.979,"0.979","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905631-0310-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-10,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.395,"0.395","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:05:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908500-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.735,"0.735","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:50:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902940-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.444,"0.444","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 21:30:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.735,"0.735","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:15:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"688","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995210-0316-LAB","Sample-Routine","WATER",NA,2021-03-16,"11:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.88,"8.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-16 18:31:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0216-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-16,"17:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-17 00:45:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903200-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:40:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-25,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-25 18:00:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905740-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.195,"0.195","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:50:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902050-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.94,"1.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 18:40:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996870-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 21:25:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-31,"09:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.736,"0.736","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 16:20:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.45,"3.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:00:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.5,"5.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:00:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901980-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:10:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.93,"4.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:30:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904800-0112-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-12,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.859,"0.859","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:10:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990620-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 19:00:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-31,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.355,"0.355","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 17:00:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 19:20:00,NA,"San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905200-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.2,"0.2","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 16:30:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905650-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.543,"0.543","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:20:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904990-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:00:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-5984855-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.85,"3.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 17:00:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903699-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.98,"1.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:30:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"10:30:00","MST",NA,NA,NA,2.99,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:30:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990376-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.23,"0.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:50:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4998400-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"10:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 17:16:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0210-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 21:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990700-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.204,"0.204","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 18:30:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-24,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 17:00:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903190-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.66,"1.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:50:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903500-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.09,"2.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 20:20:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.3,"10.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 20:00:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"13:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.189,"0.189","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 20:17:00,NA,"MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905650-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.467,"0.467","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:40:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903400-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.62,"1.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:30:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905200-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.184,"0.184","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 16:30:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901600-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.34,"1.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 18:55:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901100-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 17:15:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901600-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 18:55:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.73,"7.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:00:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.332,"0.332","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 17:30:00,NA,"Logan River below bridge on Golf Course Road","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905050-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",12.5,"12.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:30:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904810-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.7,"10.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:50:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905200-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.639,"0.639","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:00:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-31,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.16,"0.16","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:30:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904241-0113-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-13,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.19,"2.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:40:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990700-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.154,"0.154","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:15:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.726,"0.726","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 20:00:00,NA,"WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C","Sample-Routine","WATER",NA,2021-03-17,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.94,"6.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 17:20:00,NA,"Dry Ck Near Utah Lake-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"12:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.662,"0.662","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 19:30:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908170-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.895,"0.895","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 19:30:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.474,"0.474","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 19:45:00,NA,"Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4906400-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:50:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990555-0316-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-16,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.086,"0.086","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 15:45:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0113-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-13,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 22:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903260-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.59,"1.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:20:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903060-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.26,"5.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 21:40:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901190-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.467,"0.467","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:00:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-24,"11:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.423,"0.423","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 18:24:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.621,"0.621","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:40:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902720-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.979,"0.979","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:20:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904870-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.87,"1.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 22:05:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990373-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.909,"0.909","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 16:20:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0216-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-16,"17:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-17 00:45:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904241-0310-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.2,"2.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:20:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903190-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.88,"1.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:15:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904310-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.65,"6.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:00:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904943-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.91,"7.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:00:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.8,"2.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:30:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901100-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:30:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"756","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995222-0112-LAB","Sample-Routine","WATER",NA,2021-01-12,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.99,"4.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-12 17:50:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903950-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.85,"9.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:00:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905640-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:30:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C","Sample-Routine","WATER",NA,2021-03-31,"10:10:00","MST",NA,NA,NA,5.2,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.638,"0.638","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 17:10:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0308-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-10,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 15:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908170-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.328,"0.328","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:30:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900510-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.524,"0.524","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 22:00:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902941-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.604,"0.604","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 22:00:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0406-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-06,"17:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 00:45:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0308-4/1-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-08,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903820-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:50:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-5910273-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"11:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 18:27:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905631-0505-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-05,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.647,"0.647","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:40:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904840-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.37,"3.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:00:00,NA,"DITCH AB EA MILLER SC-12","Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-5906850-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.366,"0.366","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 16:50:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905580-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.77,"0.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:40:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904940-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",22,"22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:30:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905740-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"17:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.129,"0.129","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 00:35:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:45:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"13:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.648,"0.648","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 20:20:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4958750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:15:00,NA,"FISHER CK AT MOUTH","River/Stream",NA,"14030004",NA,NA,NA,NA,"38.7433200000","-109.1351100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990376-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 19:00:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.48,"2.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 22:40:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C","Sample-Routine","WATER",NA,2021-03-07,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-07 20:15:00,NA,"Oak Creek above Oak Creek Dam","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908697-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.637,"0.637","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 18:00:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903191-0112-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-12,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:00:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990997-0223-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-23,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.18,"0.18","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:45:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905301-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.175,"0.175","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 16:35:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904740-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",21.1,"21.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:40:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0111-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-11,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 22:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.54,"1.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 18:25:00,NA,"Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-24,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 17:00:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904800-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:05:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904726-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.38,"5.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:40:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.65,"1.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 22:15:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902050-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.81,"1.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:30:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.51,"3.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:00:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"793","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4917712-0216-LAB","Sample-Routine","WATER",NA,2021-02-16,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.04,"2.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-16 17:05:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C","Sample-Routine","WATER",NA,2021-01-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.31,"4.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-25 17:30:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903723-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",14.3,"14.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:35:00,NA,"Richmond WWTP outfall 002","Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905040-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.233,"0.233","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:15:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997250-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"12:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 19:22:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"798","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994952-0316-LAB","Sample-Routine","WATER",NA,2021-03-16,"08:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.89,"2.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-16 15:42:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.37,"2.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 22:25:00,NA,"SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.97,"2.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 22:00:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905780-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.262,"0.262","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 21:30:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"802","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995043-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.93,"5.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 17:24:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900511-0210-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-10,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.622,"0.622","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 20:00:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905520-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",17.5,"17.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:10:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904810-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.57,"8.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:50:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904770-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",32.3,"32.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:15:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C","Sample-Routine","WATER",NA,2021-03-17,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.4,"11.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 18:30:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903510-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:30:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905052-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.61,"1.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:10:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902040-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.92,"1.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 18:10:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901790-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 17:50:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902940-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.801,"0.801","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:50:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"813","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996003-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"14:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.89,"3.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 21:56:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"814","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995467-0316-LAB","Sample-Routine","WATER",NA,2021-03-16,"15:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.86,"2.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-16 22:51:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903723-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",25.2,"25.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:30:00,NA,"Richmond WWTP outfall 002","Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902050-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.93,"1.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 18:30:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902700-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:00:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C","Sample-Routine","WATER",NA,2021-03-03,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-03 19:00:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.692,"0.692","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:15:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903510-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.26,"0.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:40:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"12:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.273,"0.273","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 19:23:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900511-0113-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-13,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.683,"0.683","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 19:40:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0223-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-23,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 20:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"824","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996560-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",28.4,"28.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 16:00:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990650-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.337,"0.337","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 18:50:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904900-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.08,"3.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:45:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.124,"0.124","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 17:10:00,NA,"LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908745-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.834,"0.834","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:20:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996890-0324-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-24,"14:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 21:29:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C","Sample-Routine","WATER",NA,2021-03-22,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.84,"3.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-22 16:40:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.672,"0.672","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 20:20:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.146,"0.146","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 22:00:00,NA,"N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"833","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996022-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"14:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.98,"2.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 21:28:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905400-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.488,"0.488","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:20:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-22,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-22 17:35:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-27,"08:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.339,"0.339","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 15:45:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903501-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.03,"2.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:35:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905052-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.83,"1.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:50:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-15,"16:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 23:40:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-16,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.171,"0.171","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-17 00:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908165-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:40:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902900-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.718,"0.718","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 20:45:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-19,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 23:30:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990996-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.179,"0.179","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:40:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905590-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.952,"0.952","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 20:10:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0113-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-13,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 22:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C","Sample-Routine","WATER",NA,2021-03-25,"09:00:00","MST",NA,NA,NA,0.66,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.85,"0.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 16:00:00,NA,"SAN JUAN R AB LAKE POWELL","River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905670-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:20:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901431-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.55,"3.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:10:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903030-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.44,"1.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:40:00,NA,"NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903820-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 16:45:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905631-0210-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-10,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.567,"0.567","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:10:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908744-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.152,"0.152","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 16:15:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905400-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.252,"0.252","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:50:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-15,"12:00:00","MST",NA,NA,NA,2.08,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.636,"0.636","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.57,"9.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:00:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903820-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.45,"1.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:50:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"11:00:00","MST",NA,NA,NA,1.57,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.14,"1.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:00:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"859","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200225","Sample-Routine","WATER","Surface Water",2021-11-30,"12:25:00","MST",NA,NA,NA,1.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.078,0.078,"Numeric","MG/L AS N",NA,"NWIS",2021-11-30 19:25:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"860","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200225","Sample-Routine","WATER","Surface Water",2021-11-30,"12:25:00","MST",NA,NA,NA,1.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.343,0.343,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-30 19:25:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"861","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200244","Sample-Routine","WATER","Surface Water",2021-11-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-11-19 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"862","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200244","Sample-Routine","WATER","Surface Water",2021-11-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-19 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905070-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",24.5,"24.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:00:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903400-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.66,"1.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:50:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.602,"0.602","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:24:00,NA,"MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"866","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200325","Sample-Routine","WATER","Surface Water",2021-12-29,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.93,"0.930","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-29 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"867","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200325","Sample-Routine","WATER","Surface Water",2021-12-29,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",4.12,"4.12","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-29 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.388,"0.388","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 18:30:00,NA,"Logan R @ 1000 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904250-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.85,"1.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:00:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990996-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:00:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901225-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:20:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"872","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996680-0112-LAB","Sample-Routine","WATER",NA,2021-01-12,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.556,"0.556","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-12 20:10:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.853,"0.853","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 17:00:00,NA,"CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"874","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200200","Sample-Routine","WATER","Surface Water",2021-11-23,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",2.52,"2.52","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-11-23 17:15:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"875","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200200","Sample-Routine","WATER","Surface Water",2021-11-23,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",11.1,"11.1","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-11-23 17:15:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901200-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.37,"2.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 17:05:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C","Sample-Routine","WATER",NA,2021-03-25,"16:15:00","MST",NA,NA,NA,10,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.337,"0.337","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 23:15:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905670-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.534,"0.534","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:00:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"879","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200242","Sample-Routine","WATER","Surface Water",2021-12-02,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.922,"0.922","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-02 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"880","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200242","Sample-Routine","WATER","Surface Water",2021-12-02,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.039,"0.039","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-24,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-12-02 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"881","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200242","Sample-Routine","WATER","Surface Water",2021-12-02,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",4.08,"4.08","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-02 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0113-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-13,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 22:15:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-18,"13:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:36:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"884","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200265","Sample-Routine","WATER","Surface Water",2021-12-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",5.96,"5.96","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-09 19:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"885","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200265","Sample-Routine","WATER","Surface Water",2021-12-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.348,"0.348","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-03-09,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-12-09 19:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"886","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200265","Sample-Routine","WATER","Surface Water",2021-12-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",26.4,"26.4","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-09 19:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"887","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200178","Sample-Routine","WATER","Surface Water",2021-11-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,"Stable, high stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-11-10 17:15:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"888","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200178","Sample-Routine","WATER","Surface Water",2021-11-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,"Stable, high stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-10 17:15:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905590-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1,"1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 20:10:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.26,"1.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 22:00:00,NA,"SAN PITCH R AB MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949855-0222-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-22,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 17:40:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902000-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.79,"1.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:00:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902050-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.86,"1.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 18:40:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"894","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200224","Sample-Routine","WATER","Surface Water",2021-11-30,"12:22:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.078,0.078,"Numeric","MG/L AS N",NA,"NWIS",2021-11-30 19:22:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"895","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200224","Sample-Routine","WATER","Surface Water",2021-11-30,"12:22:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.344,0.344,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-30 19:22:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"896","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200254","Sample-Routine","WATER","Surface Water",2021-12-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-12-03 18:30:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"897","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200254","Sample-Routine","WATER","Surface Water",2021-12-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-12-03 18:30:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.03,"1.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:00:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904965-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.55,"3.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:50:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0112-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-12,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"901","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996020-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"12:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.58,"3.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 19:06:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C","Sample-Routine","WATER",NA,2021-03-03,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-03 21:45:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"903","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200243","Sample-Routine","WATER","Surface Water",2021-12-02,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",6.77,"6.77","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-02 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"904","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200243","Sample-Routine","WATER","Surface Water",2021-12-02,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.186,"0.186","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-24,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-12-02 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"905","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200243","Sample-Routine","WATER","Surface Water",2021-12-02,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",30,"30.0","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-02 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"906","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200220","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-11-30,"10:10:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.078,0.078,"Numeric","MG/L AS N",NA,"NWIS",2021-11-30 17:10:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"907","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200220","Quality Control Sample-Field Replicate","WATER","Surface Water",2021-11-30,"10:10:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.343,0.343,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-30 17:10:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904320-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.653,"0.653","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:50:00,NA,"CHERRY CK @ U91 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9376100000","-111.8138100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"909","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995075-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.47,"2.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 17:50:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903190-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 22:00:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904720-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.86,"3.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 21:15:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904310-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.9,"6.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:00:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904720-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.06,"6.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:55:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:45:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.336,"0.336","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 16:30:00,NA,"Logan River at Water Lab lower bridge","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905940-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.28,"3.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:20:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904990-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:20:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,1.44,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.689,"0.689","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:15:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-31,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.132,"0.132","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:35:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"920","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200266","Sample-Routine","WATER","Surface Water",2021-12-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Rising stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",0.438,"0.438","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-09 17:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"921","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200266","Sample-Routine","WATER","Surface Water",2021-12-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Rising stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.784,"0.784","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-03-09,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2021-12-09 17:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"922","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200266","Sample-Routine","WATER","Surface Water",2021-12-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Rising stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",1.94,"1.94","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-09 17:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"12:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.586,"0.586","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 19:31:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0308-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-10,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 15:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903200-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.75,"1.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:10:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.68,"9.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:00:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-24,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.26,"4.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 16:20:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.8,"0.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:15:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"929","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200221","Sample-Routine","WATER","Surface Water",2021-11-30,"10:20:00","MST",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-30 17:20:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"930","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200221","Sample-Routine","WATER","Surface Water",2021-11-30,"10:20:00","MST",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-30 17:20:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C","Sample-Routine","WATER",NA,2021-03-31,"10:10:00","MST",NA,NA,NA,5.2,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.342,"0.342","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 17:10:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901432-0216-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-16,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.02,"7.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:10:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.517,"0.517","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 19:15:00,NA,"LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905580-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.693,"0.693","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:40:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"935","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200222","Sample-Routine","WATER","Surface Water",2021-11-30,"11:36:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-30 18:36:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"936","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200222","Sample-Routine","WATER","Surface Water",2021-11-30,"11:36:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-30 18:36:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"937","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200226","Sample-Routine","WATER","Surface Water",2021-11-30,"13:03:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.077,0.077,"Numeric","MG/L AS N",NA,"NWIS",2021-11-30 20:03:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"938","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200226","Sample-Routine","WATER","Surface Water",2021-11-30,"13:03:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.342,0.342,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-30 20:03:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"13:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.642,"0.642","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 20:20:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903723-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",24.4,"24.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:30:00,NA,"Richmond WWTP outfall 002","Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905700-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.559,"0.559","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 21:50:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905631-0310-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-10,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.347,"0.347","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:05:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-31,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.713,"0.713","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 17:40:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.79,"3.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 16:20:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C","Sample-Routine","WATER",NA,2021-03-24,"16:30:00","MST",NA,NA,NA,51,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.441,"0.441","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-24 23:30:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908744-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.422,"0.422","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 15:50:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990620-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:30:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903507-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.323,"0.323","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:50:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901730-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:40:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"950","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200223","Sample-Routine","WATER","Surface Water",2021-11-30,"11:41:00","MST",NA,NA,NA,5.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2021-11-30 18:41:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"951","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200223","Sample-Routine","WATER","Surface Water",2021-11-30,"11:41:00","MST",NA,NA,NA,5.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2021-11-30 18:41:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"952","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200285","Sample-Routine","WATER","Surface Water",2021-12-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2021-12-16 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"953","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200285","Sample-Routine","WATER","Surface Water",2021-12-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2021-12-16 19:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"10:00:00","MST",NA,NA,NA,1.27,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.68,"0.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:00:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"955","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996566-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"10:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 17:38:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C","Sample-Routine","WATER",NA,2021-03-31,"10:50:00","MST",NA,NA,NA,4.2,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.363,"0.363","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 17:50:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905540-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",39.9,"39.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:20:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902040-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:10:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"12:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.378,"0.378","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 19:17:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"960","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200274","Sample-Routine","WATER","Groundwater",2021-12-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403029112043401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.65,"1.65","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-08 19:30:00,NA,"(C- 3- 2)33cdd- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.50818056000000","-112.0728110000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5315,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined single aquifer","19920130",182,"ft",186,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"961","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200274","Sample-Routine","WATER","Groundwater",2021-12-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-403029112043401",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",7.29,"7.29","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-12-08 19:30:00,NA,"(C- 3- 2)33cdd- 1","Well",NA,"16020204",NA,NA,NA,NA,"40.50818056000000","-112.0728110000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5315,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined single aquifer","19920130",182,"ft",186,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900511-0310-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-10,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.531,"0.531","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 22:05:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.87,"1.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 19:40:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"964","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996680-0316-LAB","Sample-Routine","WATER",NA,2021-03-16,"12:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.315,"0.315","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-16 19:53:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.181,"0.181","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 18:00:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904965-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.36,"3.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:25:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"967","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200199","Sample-Routine","WATER","Surface Water",2021-11-23,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",1.79,"1.79","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-11-23 19:40:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"968","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200199","Sample-Routine","WATER","Surface Water",2021-11-23,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",7.93,"7.93","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2021-11-23 19:40:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"969","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200555","Sample-Routine","WATER","Surface Water",2022-02-23,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403149111290300",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.153,"0.153","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 21:15:00,NA,"SNAKE CREEK NEAR HOT POTS NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.53023230000000","-111.4849116000000","24000","1","seconds","Interpolated from MAP.","NAD83",5710,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"970","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200555","Sample-Routine","WATER","Surface Water",2022-02-23,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403149111290300",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.677,"0.677","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 21:15:00,NA,"SNAKE CREEK NEAR HOT POTS NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.53023230000000","-111.4849116000000","24000","1","seconds","Interpolated from MAP.","NAD83",5710,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"971","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200567","Sample-Routine","WATER","Surface Water",2022-02-28,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10155200",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-02-28 20:45:00,NA,"PROVO RIV AT RIV ROAD BRIDGE NR HEBER CITY, UT","Stream",NA,"16020203",270,"sq mi",NA,NA,"40.55439805000000","-111.4332426000000","24000","1","seconds","Interpolated from MAP.","NAD83",5691.59,"feet",0.09,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"972","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200567","Sample-Routine","WATER","Surface Water",2022-02-28,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10155200",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-02-28 20:45:00,NA,"PROVO RIV AT RIV ROAD BRIDGE NR HEBER CITY, UT","Stream",NA,"16020203",270,"sq mi",NA,NA,"40.55439805000000","-111.4332426000000","24000","1","seconds","Interpolated from MAP.","NAD83",5691.59,"feet",0.09,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"973","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200798","Sample-Routine","WATER","Surface Water",2022-03-11,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Grab sample","Not Detected","NITROGEN","SUSPENDED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-04-26,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-03-11 17:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903260-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:45:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:30:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"976","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200406","Sample-Routine","WATER","Surface Water",2022-01-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",6.3,"6.30","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-14 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"977","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200406","Sample-Routine","WATER","Surface Water",2022-01-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.236,"0.236","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-03-28,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-01-14 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"978","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200406","Sample-Routine","WATER","Surface Water",2022-01-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",27.9,"27.9","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-14 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"979","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200546","Sample-Routine","WATER","Surface Water",2022-02-03,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",1.37,"1.37","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-03 17:45:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"980","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200546","Sample-Routine","WATER","Surface Water",2022-02-03,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",6.07,"6.07","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-03 17:45:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"981","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200371","Sample-Routine","WATER","Surface Water",2022-01-10,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, low stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2022-01-10 21:25:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"982","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200371","Sample-Routine","WATER","Surface Water",2022-01-10,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,"Stable, low stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-10 21:25:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; N TO S FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"983","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200845","Sample-Routine","WATER","Groundwater",2022-01-17,"17:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-01-18 00:20:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"984","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200845","Sample-Routine","WATER","Groundwater",2022-01-17,"17:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-18 00:20:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"985","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200370","Sample-Routine","WATER","Surface Water",2022-01-06,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",3.73,"3.73","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-06 18:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"986","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200370","Sample-Routine","WATER","Surface Water",2022-01-06,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",16.5,"16.5","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-06 18:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"987","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200487","Sample-Routine","WATER","Surface Water",2022-02-02,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403234111295700",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.113,"0.113","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-02 18:00:00,NA,"SNAKE CREEK AT CANYON MOUTH NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.54273200000000","-111.4999131000000","24000","1","seconds","Interpolated from MAP.","NAD83",5915,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"988","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200487","Sample-Routine","WATER","Surface Water",2022-02-02,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403234111295700",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.502,"0.502","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-02 18:00:00,NA,"SNAKE CREEK AT CANYON MOUTH NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.54273200000000","-111.4999131000000","24000","1","seconds","Interpolated from MAP.","NAD83",5915,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"989","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200485","Sample-Routine","WATER","Groundwater",2022-02-02,"12:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403101111295802",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.555,"0.555","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-02 19:52:00,NA,"(D- 3- 4)33acb- 2","Well",NA,"16020203",NA,NA,NA,NA,"40.51718889000000","-111.4989000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5948,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)","Confined single aquifer","20131118",1010,"ft",1010,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"990","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200485","Sample-Routine","WATER","Groundwater",2022-02-02,"12:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403101111295802",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",2.46,"2.46","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-02 19:52:00,NA,"(D- 3- 4)33acb- 2","Well",NA,"16020203",NA,NA,NA,NA,"40.51718889000000","-111.4989000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5948,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)","Confined single aquifer","20131118",1010,"ft",1010,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"991","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200843","Sample-Routine","WATER","Groundwater",2022-01-18,"16:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-01-18 23:10:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"992","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200843","Sample-Routine","WATER","Groundwater",2022-01-18,"16:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-18 23:10:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"993","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200576","Sample-Routine","WATER","Surface Water",2022-03-01,"10:15:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.12,0.12,"Numeric","MG/L AS N",NA,"NWIS",2022-03-01 17:15:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"994","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200576","Sample-Routine","WATER","Surface Water",2022-03-01,"10:15:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.531,0.531,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-01 17:15:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"995","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200552","Sample-Routine","WATER","Groundwater",2022-02-23,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403101111295802",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.569,"0.569","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 20:30:00,NA,"(D- 3- 4)33acb- 2","Well",NA,"16020203",NA,NA,NA,NA,"40.51718889000000","-111.4989000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5948,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)","Confined single aquifer","20131118",1010,"ft",1010,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"996","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200552","Sample-Routine","WATER","Groundwater",2022-02-23,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403101111295802",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",2.52,"2.52","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 20:30:00,NA,"(D- 3- 4)33acb- 2","Well",NA,"16020203",NA,NA,NA,NA,"40.51718889000000","-111.4989000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5948,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)","Confined single aquifer","20131118",1010,"ft",1010,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903510-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.299,"0.299","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:30:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908350-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.538,"0.538","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 17:30:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"999","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200372","Sample-Routine","WATER","Surface Water",2022-01-10,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, low stage","Not applicable","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.078,0.078,"Numeric","MG/L AS N",NA,"NWIS",2022-01-10 21:15:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1000","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200372","Sample-Routine","WATER","Surface Water",2022-01-10,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,"Stable, low stage","Not applicable","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-95 plastic bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.345,0.345,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-10 21:15:00,NA,"GSL BREACH 6 MILES E OF LAKESIDE, UT; S TO N FLOW","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",4216.93,"feet",0.1,"feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1001","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200799","Sample-Routine","WATER","Surface Water",2022-03-11,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, low stage","Routine sample","15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity","US DH-81",NA,"NITROGEN","SUSPENDED",0.195,"0.195","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-04-26,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-03-11 16:30:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1002","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200401","Sample-Routine","WATER","Surface Water",2022-01-11,"12:12:00","MST",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-01-11 19:12:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1003","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200401","Sample-Routine","WATER","Surface Water",2022-01-11,"12:12:00","MST",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-11 19:12:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1004","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200587","Sample-Routine","WATER","Surface Water",2022-02-25,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.01,0.01,"Numeric","MG/L AS N",NA,"NWIS",2022-02-25 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1005","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200587","Sample-Routine","WATER","Surface Water",2022-02-25,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.044,0.044,"Numeric","MG/L ASNO3",NA,"NWIS",2022-02-25 20:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1006","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200839","Sample-Routine","WATER","Groundwater",2022-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-01-21 17:00:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1007","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200839","Sample-Routine","WATER","Groundwater",2022-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-21 17:00:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1008","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200462","Sample-Routine","WATER","Surface Water",2022-01-31,"12:02:00","MST",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2022-01-31 19:02:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1009","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200462","Sample-Routine","WATER","Surface Water",2022-01-31,"12:02:00","MST",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-31 19:02:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1010","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200526","Sample-Routine","WATER","Surface Water",2022-02-17,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",5.08,"5.08","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-17 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1011","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200526","Sample-Routine","WATER","Surface Water",2022-02-17,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITROGEN","SUSPENDED",0.215,"0.215","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-04-12,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-02-17 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1012","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200526","Sample-Routine","WATER","Surface Water",2022-02-17,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",22.5,"22.5","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-17 19:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1013","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200500","Sample-Routine","WATER","Surface Water",2022-02-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.012,"0.012","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-08 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1014","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200500","Sample-Routine","WATER","Surface Water",2022-02-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10172200",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.053,"0.053","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-08 18:00:00,NA,"RED BUTTE CREEK AT FORT DOUGLAS, NEAR SLC, UT","Stream",NA,"16020204",7.25,"sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83",5403.38,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1015","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200582","Sample-Routine","WATER","Surface Water",2022-03-01,"13:15:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.118,0.118,"Numeric","MG/L AS N",NA,"NWIS",2022-03-01 20:15:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1016","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200582","Sample-Routine","WATER","Surface Water",2022-03-01,"13:15:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.521,0.521,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-01 20:15:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1017","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200488","Sample-Routine","WATER","Surface Water",2022-02-02,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403213111290600",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.203,"0.203","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-02 19:15:00,NA,"SNAKE CREEK BELOW PINE CREEK NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.53689880000000","-111.4857453000000","24000","1","seconds","Interpolated from MAP.","NAD83",5750,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1018","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200488","Sample-Routine","WATER","Surface Water",2022-02-02,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403213111290600",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.898,"0.898","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-02 19:15:00,NA,"SNAKE CREEK BELOW PINE CREEK NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.53689880000000","-111.4857453000000","24000","1","seconds","Interpolated from MAP.","NAD83",5750,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1019","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200577","Sample-Routine","WATER","Surface Water",2022-03-01,"10:30:00","MST",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.12,0.12,"Numeric","MG/L AS N",NA,"NWIS",2022-03-01 17:30:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1020","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200577","Sample-Routine","WATER","Surface Water",2022-03-01,"10:30:00","MST",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.531,0.531,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-01 17:30:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C","Sample-Routine","WATER",NA,2021-03-24,"13:45:00","MST",NA,NA,NA,91.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.445,"0.445","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-24 20:45:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990987-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.13,"3.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 18:00:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1023","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200581","Sample-Routine","WATER","Surface Water",2022-03-01,"12:35:00","MST",NA,NA,NA,2,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.12,0.12,"Numeric","MG/L AS N",NA,"NWIS",2022-03-01 19:35:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1024","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200581","Sample-Routine","WATER","Surface Water",2022-03-01,"12:35:00","MST",NA,NA,NA,2,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.531,0.531,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-01 19:35:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990640-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.894,"0.894","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 17:45:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902940-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.516,"0.516","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 22:40:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901180-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:00:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1028","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200398","Sample-Routine","WATER","Surface Water",2022-01-11,"10:40:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2022-01-11 17:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1029","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200398","Sample-Routine","WATER","Surface Water",2022-01-11,"10:40:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-11 17:40:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1030","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200569","Sample-Routine","WATER","Surface Water",2022-02-28,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10156000",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.72,"0.720","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-28 21:45:00,NA,"SNAKE CREEK NEAR CHARLESTON, UT","Stream",NA,"16020203",31.8,"sq mi",NA,NA,"40.48523320000000","-111.4671312000000","24000","1","seconds","Interpolated from MAP.","NAD83",5426.64,"feet",0.09,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1031","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200569","Sample-Routine","WATER","Surface Water",2022-02-28,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10156000",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",3.19,"3.19","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-28 21:45:00,NA,"SNAKE CREEK NEAR CHARLESTON, UT","Stream",NA,"16020203",31.8,"sq mi",NA,NA,"40.48523320000000","-111.4671312000000","24000","1","seconds","Interpolated from MAP.","NAD83",5426.64,"feet",0.09,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1032","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200459","Quality Control Sample-Field Replicate","WATER","Surface Water",2022-01-31,"10:45:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.077,0.077,"Numeric","MG/L AS N",NA,"NWIS",2022-01-31 17:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1033","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200459","Quality Control Sample-Field Replicate","WATER","Surface Water",2022-01-31,"10:45:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.339,0.339,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-31 17:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1034","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200579","Sample-Routine","WATER","Surface Water",2022-03-01,"11:40:00","MST",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.12,0.12,"Numeric","MG/L AS N",NA,"NWIS",2022-03-01 18:40:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1035","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200579","Sample-Routine","WATER","Surface Water",2022-03-01,"11:40:00","MST",NA,NA,NA,6,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.531,0.531,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-01 18:40:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1036","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200578","Sample-Routine","WATER","Surface Water",2022-03-01,"11:30:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.12,0.12,"Numeric","MG/L AS N",NA,"NWIS",2022-03-01 18:30:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1037","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200578","Sample-Routine","WATER","Surface Water",2022-03-01,"11:30:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.531,0.531,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-01 18:30:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1038","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200566","Sample-Routine","WATER","Surface Water",2022-02-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010060",NA,NA,"Stable, low stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81",NA,"NITRATE","DISSOLVED",0.017,"0.017","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-15 20:00:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1039","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200566","Sample-Routine","WATER","Surface Water",2022-02-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010060",NA,NA,"Stable, low stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81",NA,"NITRATE","DISSOLVED",0.074,"0.074","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-15 20:00:00,NA,"Bear R Bay Outflow at Causeway Brg nr Warren, UT","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83",4210,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1040","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200430","Sample-Routine","WATER","Surface Water",2022-01-26,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.034,"0.034","Numeric","MG/L AS N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-26 18:45:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1041","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200430","Sample-Routine","WATER","Surface Water",2022-01-26,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,"Stable, low stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-95 plastic bottle",NA,"NITRATE","DISSOLVED",0.149,"0.149","Numeric","MG/L ASNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-26 18:45:00,NA,"GREEN RIVER NEAR GREENDALE, UT","Stream",NA,"14040106",19400,"sq mi",15100,"sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83",5594.21,"feet",0.12,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1042","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200840","Sample-Routine","WATER","Groundwater",2022-01-20,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-01-20 17:10:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1043","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200840","Sample-Routine","WATER","Groundwater",2022-01-20,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-20 17:10:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1044","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200589","Sample-Routine","WATER","Groundwater",2022-03-02,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403001111293201",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.135,"0.135","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-02 19:50:00,NA,"(D- 4- 4) 4add-S1","Spring",NA,"16020203",NA,NA,NA,NA,"40.50023327000000","-111.4929664000000","24000","1","seconds","Interpolated from MAP.","NAD83",5720,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1045","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200589","Sample-Routine","WATER","Groundwater",2022-03-02,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403001111293201",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.597,"0.597","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-02 19:50:00,NA,"(D- 4- 4) 4add-S1","Spring",NA,"16020203",NA,NA,NA,NA,"40.50023327000000","-111.4929664000000","24000","1","seconds","Interpolated from MAP.","NAD83",5720,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1046","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200841","Sample-Routine","WATER","Groundwater",2022-01-19,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-01-19 22:00:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1047","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200841","Sample-Routine","WATER","Groundwater",2022-01-19,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-19 22:00:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901975-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.86,"2.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:00:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"11:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.275,"0.275","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:38:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-5984855-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"08:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.03,"5.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 15:20:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",10.6,"10.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:40:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910302-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"12:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 19:02:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908200-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.159,"0.159","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:35:00,NA,"GENES CK @ U-16 XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1054","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200586","Sample-Routine","WATER","Surface Water",2022-03-01,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",0.904,"0.904","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-01 19:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1055","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200586","Sample-Routine","WATER","Surface Water",2022-03-01,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",4,"4.00","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-03-01 19:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1056","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200838","Sample-Routine","WATER","Groundwater",2022-01-22,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-01-22 16:15:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1057","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200838","Sample-Routine","WATER","Groundwater",2022-01-22,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-22 16:15:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1058","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200521","Sample-Routine","WATER","Groundwater",2022-02-16,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403237111293001",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.375,"0.375","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-16 19:20:00,NA,"(D- 3- 4)21daa-S1","Spring",NA,"16020203",NA,NA,NA,NA,"40.54361944000000","-111.4916000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5903,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1059","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200521","Sample-Routine","WATER","Groundwater",2022-02-16,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403237111293001",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.66,"1.66","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-16 19:20:00,NA,"(D- 3- 4)21daa-S1","Spring",NA,"16020203",NA,NA,NA,NA,"40.54361944000000","-111.4916000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5903,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1060","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200465","Sample-Routine","WATER","Surface Water",2022-01-31,"13:29:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.09,"0.090","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-31 20:29:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1061","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200465","Sample-Routine","WATER","Surface Water",2022-01-31,"13:29:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.397,"0.397","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-31 20:29:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1062","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200550","Sample-Routine","WATER","Groundwater",2022-02-23,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403216111294601",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.365,"0.365","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 17:50:00,NA,"(D- 3- 4)21dcd-S1","Spring",NA,"16020203",NA,NA,NA,NA,"40.53773217000000","-111.4968572000000","24000","1","seconds","Interpolated from MAP.","NAD83",5870,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1063","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200550","Sample-Routine","WATER","Groundwater",2022-02-23,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403216111294601",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.61,"1.61","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 17:50:00,NA,"(D- 3- 4)21dcd-S1","Spring",NA,"16020203",NA,NA,NA,NA,"40.53773217000000","-111.4968572000000","24000","1","seconds","Interpolated from MAP.","NAD83",5870,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1064","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200369","Sample-Routine","WATER","Surface Water",2022-01-06,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",1.95,"1.95","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-06 20:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1065","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200369","Sample-Routine","WATER","Surface Water",2022-01-06,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",8.63,"8.63","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-06 20:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1066","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200499","Sample-Routine","WATER","Surface Water",2022-02-10,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",1.08,"1.08","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-10 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1067","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200499","Sample-Routine","WATER","Surface Water",2022-02-10,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","50","USGS parameter code 82398","Point sample","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",4.8,"4.80","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-10 20:00:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1068","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200402","Sample-Routine","WATER","Surface Water",2022-01-11,"13:35:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.038,0.038,"Numeric","MG/L AS N",NA,"NWIS",2022-01-11 20:35:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1069","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200402","Sample-Routine","WATER","Surface Water",2022-01-11,"13:35:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.169,0.169,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-11 20:35:00,NA,"GSL 2767, 4 MI W OF N TIP OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1070","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200463","Sample-Routine","WATER","Surface Water",2022-01-31,"12:40:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.077,0.077,"Numeric","MG/L AS N",NA,"NWIS",2022-01-31 19:40:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1071","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200463","Sample-Routine","WATER","Surface Water",2022-01-31,"12:40:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.34,0.34,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-31 19:40:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1072","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200842","Sample-Routine","WATER","Groundwater",2022-01-19,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-01-19 15:45:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1073","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200842","Sample-Routine","WATER","Groundwater",2022-01-19,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-19 15:45:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1074","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200400","Sample-Routine","WATER","Surface Water",2022-01-11,"12:11:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.038,0.038,"Numeric","MG/L AS N",NA,"NWIS",2022-01-11 19:11:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1075","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200400","Sample-Routine","WATER","Surface Water",2022-01-11,"12:11:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.17,0.17,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-11 19:11:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1076","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200489","Sample-Routine","WATER","Surface Water",2022-02-02,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403149111290300",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.159,"0.159","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-02 20:45:00,NA,"SNAKE CREEK NEAR HOT POTS NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.53023230000000","-111.4849116000000","24000","1","seconds","Interpolated from MAP.","NAD83",5710,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1077","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200489","Sample-Routine","WATER","Surface Water",2022-02-02,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403149111290300",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.705,"0.705","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-02 20:45:00,NA,"SNAKE CREEK NEAR HOT POTS NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.53023230000000","-111.4849116000000","24000","1","seconds","Interpolated from MAP.","NAD83",5710,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1078","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200844","Sample-Routine","WATER","Groundwater",2022-01-18,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-01-18 16:00:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1079","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200844","Sample-Routine","WATER","Groundwater",2022-01-18,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,"Not applicable","Routine sample","8040","USGS parameter code 82398","Spigot","Other","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-18 16:00:00,NA,"(C-41-13)25cab- 2","Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",3120,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515",237.4,"ft",522,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905700-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.354,"0.354","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:00:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.25,"2.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 22:40:00,NA,"Silver Ck Ab Cnfl/ San Pitch @ U117 Xing","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4758000000","-111.5994100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1082","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200427","Quality Control Sample-Field Replicate","WATER","Surface Water",2022-01-25,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81",NA,"NITRATE","DISSOLVED",1.61,"1.61","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-25 18:45:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1083","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200427","Quality Control Sample-Field Replicate","WATER","Surface Water",2022-01-25,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,"Stable, normal stage","Routine sample","20","USGS parameter code 82398","Equal discharge increment (edi)","US DH-81",NA,"NITRATE","DISSOLVED",7.12,"7.12","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-25 18:45:00,NA,"GSL FARMINGTON BAY OUTFLOW AT CAUSEWAY BRIDGE","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1084","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200565","Sample-Routine","WATER","Surface Water",2022-02-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",4.96,"4.96","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-16 18:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1085","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200565","Sample-Routine","WATER","Surface Water",2022-02-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,"Stable, normal stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",22,"22.0","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-16 18:30:00,NA,"GOGGIN DRAIN NEAR MAGNA UTAH","Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4194.01,"feet",0.18,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1086","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200399","Sample-Routine","WATER","Surface Water",2022-01-11,"10:45:00","MST",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.08,0.08,"Numeric","MG/L AS N",NA,"NWIS",2022-01-11 17:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1087","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200399","Sample-Routine","WATER","Surface Water",2022-01-11,"10:45:00","MST",NA,NA,NA,6.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.354,0.354,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-11 17:45:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"14:00:00","MST",NA,NA,NA,2.23,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.626,"0.626","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 21:00:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C","Sample-Routine","WATER",NA,2021-03-29,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.387,"0.387","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-29 19:55:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.845,"0.845","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:20:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1091","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200580","Sample-Routine","WATER","Surface Water",2022-03-01,"12:25:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.04,0.04,"Numeric","MG/L AS N",NA,"NWIS",2022-03-01 19:25:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1092","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200580","Sample-Routine","WATER","Surface Water",2022-03-01,"12:25:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.177,0.177,"Numeric","MG/L ASNO3",NA,"NWIS",2022-03-01 19:25:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1093","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200460","Sample-Routine","WATER","Surface Water",2022-01-31,"10:55:00","MST",NA,NA,NA,6.7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.077,0.077,"Numeric","MG/L AS N",NA,"NWIS",2022-01-31 17:55:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1094","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200460","Sample-Routine","WATER","Surface Water",2022-01-31,"10:55:00","MST",NA,NA,NA,6.7,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.343,0.343,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-31 17:55:00,NA,"GSL 3510, 6 MI WEST OF ANTELOPE ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1095","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200553","Sample-Routine","WATER","Surface Water",2022-02-23,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403234111295700",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.115,"0.115","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 18:00:00,NA,"SNAKE CREEK AT CANYON MOUTH NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.54273200000000","-111.4999131000000","24000","1","seconds","Interpolated from MAP.","NAD83",5915,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1096","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200553","Sample-Routine","WATER","Surface Water",2022-02-23,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403234111295700",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.508,"0.508","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 18:00:00,NA,"SNAKE CREEK AT CANYON MOUTH NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.54273200000000","-111.4999131000000","24000","1","seconds","Interpolated from MAP.","NAD83",5915,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C","Sample-Routine","WATER",NA,2021-06-17,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.846,"0.846","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 00:00:00,NA,"Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905750-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.309,"0.309","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:40:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1099","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200405","Sample-Routine","WATER","Surface Water",2022-01-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",1.23,"1.23","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-14 20:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1100","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200405","Sample-Routine","WATER","Surface Water",2022-01-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle","Not Detected","NITROGEN","SUSPENDED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-03-28,NA,"Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-01-14 20:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1101","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200405","Sample-Routine","WATER","Surface Water",2022-01-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10168000",NA,NA,"Stable, normal stage","Routine sample","70","USGS parameter code 82398","Grab sample (dip)","Open-Mouth Bottle",NA,"NITRATE","DISSOLVED",5.44,"5.44","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-01-14 20:30:00,NA,"LITTLE COTTONWOOD CREEK @ JORDAN RIVER NR SLC","Stream",NA,"16020204",46,"sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83",4254.24,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1102","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200568","Sample-Routine","WATER","Surface Water",2022-02-28,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10155500",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.178,"0.178","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-28 21:30:00,NA,"PROVO RIVER NEAR CHARLESTON, UT","Stream",NA,"16020203",359,"sq mi",NA,NA,"40.48412210000000","-111.4635198000000","24000","1","seconds","Interpolated from MAP.","NAD83",5427.04,"feet",0.09,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1103","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200568","Sample-Routine","WATER","Surface Water",2022-02-28,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10155500",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.789,"0.789","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-28 21:30:00,NA,"PROVO RIVER NEAR CHARLESTON, UT","Stream",NA,"16020203",359,"sq mi",NA,NA,"40.48412210000000","-111.4635198000000","24000","1","seconds","Interpolated from MAP.","NAD83",5427.04,"feet",0.09,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1104","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200527","Sample-Routine","WATER","Surface Water",2022-02-17,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",1.59,"1.59","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-17 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1105","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200527","Sample-Routine","WATER","Surface Water",2022-02-17,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITROGEN","SUSPENDED",0.051,"0.051","Numeric","MG/L",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,"USGS-National Water Quality Lab, Denver, CO",2022-04-12,"below the reporting level but at or above the detection level","Long Term Method Detection Level",0.03,0.03,"Numeric","MG/L",NA,"NWIS",2022-02-17 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1106","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200527","Sample-Routine","WATER","Surface Water",2022-02-17,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)","U.S. Geological Survey","USGS-10171000",NA,NA,"Stable, normal stage","Routine sample","10","USGS parameter code 82398","Equal width increment (ewi)","US DH-81 with Teflon cap and nozzle",NA,"NITRATE","DISSOLVED",7.06,"7.06","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-17 17:00:00,NA,"JORDAN RIVER @ 1700 SOUTH @ SALT LAKE CITY, UT","Stream",NA,"16020204",3438,"sq mi",3183,"sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4222.64,"feet",0.13,"feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1107","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200554","Sample-Routine","WATER","Surface Water",2022-02-23,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403213111290600",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.212,"0.212","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 20:15:00,NA,"SNAKE CREEK BELOW PINE CREEK NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.53689880000000","-111.4857453000000","24000","1","seconds","Interpolated from MAP.","NAD83",5750,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1108","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200554","Sample-Routine","WATER","Surface Water",2022-02-23,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403213111290600",NA,NA,"Stable, normal stage","Routine sample","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.939,"0.939","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-23 20:15:00,NA,"SNAKE CREEK BELOW PINE CREEK NEAR MIDWAY","Stream",NA,"16020203",NA,NA,NA,NA,"40.53689880000000","-111.4857453000000","24000","1","seconds","Interpolated from MAP.","NAD83",5750,"feet",20,"feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1109","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200520","Sample-Routine","WATER","Groundwater",2022-02-16,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403238111292801",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.332,"0.332","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-16 18:35:00,NA,"(D- 3- 4)21add-S1","Spring",NA,"16020203",NA,NA,NA,NA,"40.54385000000000","-111.4912500000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5899,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1110","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200520","Sample-Routine","WATER","Groundwater",2022-02-16,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403238111292801",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.47,"1.47","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-16 18:35:00,NA,"(D- 3- 4)21add-S1","Spring",NA,"16020203",NA,NA,NA,NA,"40.54385000000000","-111.4912500000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5899,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1111","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200464","Sample-Routine","WATER","Surface Water",2022-01-31,"12:55:00","MST",NA,NA,NA,2,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.077,0.077,"Numeric","MG/L AS N",NA,"NWIS",2022-01-31 19:55:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1112","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200464","Sample-Routine","WATER","Surface Water",2022-01-31,"12:55:00","MST",NA,NA,NA,2,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.339,0.339,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-31 19:55:00,NA,"GSL 2267, 1 MI NW OF FREMONT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1113","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200461","Sample-Routine","WATER","Surface Water",2022-01-31,"11:50:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.077,0.077,"Numeric","MG/L AS N",NA,"NWIS",2022-01-31 18:50:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1114","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200461","Sample-Routine","WATER","Surface Water",2022-01-31,"11:50:00","MST",NA,NA,NA,0.5,"meters",NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,"Not applicable","Routine sample","USGS","USGS","USGS","Unknown","Not Detected","NITRATE","DISSOLVED",NA,NA,"ND or NA",NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,"Historical Lower Reporting Limit",0.343,0.343,"Numeric","MG/L ASNO3",NA,"NWIS",2022-01-31 18:50:00,NA,"GSL 2565, NW OF HAT ISLAND","Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83",4200,"feet",10,"feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1115","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200564","Sample-Routine","WATER","Surface Water",2022-02-16,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",6.31,"6.31","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-16 22:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1116","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200564","Sample-Routine","WATER","Surface Water",2022-02-16,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,"Stable, low stage","Routine sample","40","USGS parameter code 82398","Multiple verticals","US DH-81",NA,"NITRATE","DISSOLVED",27.9,"27.9","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-16 22:00:00,NA,"WEBER RIVER NEAR PLAIN CITY, UT","Stream",NA,"16020102",2081,"sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83",4200.22,"feet",0.01,"feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA +"1117","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200490","Sample-Routine","WATER","Groundwater",2022-02-09,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403102111295801",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",0.244,"0.244","Numeric","MG/L AS N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-09 16:55:00,NA,"(D- 3- 4)33acb- 3","Well",NA,"16020203",NA,NA,NA,NA,"40.51731944000000","-111.4987806000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5939,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Park City Formation or Group","Mixed (confined and unconfined) multiple aquifers","19950424",404,"ft",404,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1118","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200490","Sample-Routine","WATER","Groundwater",2022-02-09,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403102111295801",NA,NA,"Not applicable","Not applicable","USGS","USGS","USGS","Unknown",NA,"NITRATE","DISSOLVED",1.08,"1.08","Numeric","MG/L ASNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm","NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",2022-02-09 16:55:00,NA,"(D- 3- 4)33acb- 3","Well",NA,"16020203",NA,NA,NA,NA,"40.51731944000000","-111.4987806000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83",5939,"feet",1.6,"feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Park City Formation or Group","Mixed (confined and unconfined) multiple aquifers","19950424",404,"ft",404,"ft",NA,NA,NA,NA,NA,NA,NA,NA +"1119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905700-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.299,"0.299","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 21:00:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-31,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.639,"0.639","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 17:00:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.578,"0.578","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:15:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904965-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.93,"3.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:30:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.3,"9.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 21:10:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901600-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:50:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.123,"0.123","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:00:00,NA,"INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1126","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996190-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"09:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.33,"5.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 16:44:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.115,"0.115","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:00:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.67,"1.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 22:15:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905670-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"16:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.528,"0.528","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 23:20:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902000-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.96,"1.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 17:50:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.594,"0.594","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:50:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"10:00:00","MST",NA,NA,NA,1.27,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.605,"0.605","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:00:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901730-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.66,"1.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:40:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904340-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.08,"2.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:40:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905520-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.25,"7.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:55:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.89,"1.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 19:40:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.38,"3.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 20:40:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902050-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.84,"1.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 18:30:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"12:15:00","MST",NA,NA,NA,1.657,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.695,"0.695","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:15:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904965-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.15,"3.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:50:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"13:00:00","MST",NA,NA,NA,2.97,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.588,"0.588","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 20:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.76,"8.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 22:30:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990650-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.268,"0.268","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:20:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908165-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.307,"0.307","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:00:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.094,"0.094","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:00:00,NA,"ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903770-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.24,"2.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:50:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904990-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:40:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901730-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.67,"1.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:40:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908745-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.404,"0.404","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 21:10:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903723-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",14.2,"14.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:35:00,NA,"Richmond WWTP outfall 002","Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.69,"1.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 19:20:00,NA,"San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904965-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.42,"3.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:25:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901600-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:50:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900510-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.588,"0.588","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 19:40:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.66,"9.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 21:00:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.538,"0.538","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:25:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905090-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",19.1,"19.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:15:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904943-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.02,"7.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:20:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904840-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.43,"3.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:00:00,NA,"DITCH AB EA MILLER SC-12","Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905580-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.965,"0.965","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 21:00:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-25,"13:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 20:43:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904241-0223-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-23,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.83,"1.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:00:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1163","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996100-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"11:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.25,"8.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 18:04:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904810-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",10.4,"10.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:50:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-16,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 01:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901225-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.52,"1.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:20:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902720-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.828,"0.828","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:30:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901980-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.33,"1.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:20:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905050-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",12.9,"12.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:30:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902720-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:20:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990987-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:10:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4998130-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"10:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 17:46:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C","Sample-Routine","WATER",NA,2021-06-03,"10:55:00","MST",NA,NA,NA,13.03,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.136,"0.136","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:55:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1174","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996540-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"13:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.94,"6.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 20:17:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904943-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.26,"6.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:35:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904720-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.48,"2.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:15:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905040-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.446,"0.446","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:30:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0111-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-11,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.48,"2.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 22:40:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908744-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.207,"0.207","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 16:00:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903400-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.58,"1.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:30:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903510-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.282,"0.282","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:40:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1183","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996022-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"11:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.18,"4.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 18:44:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.61,"2.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:20:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0113-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-13,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 22:15:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.92,"4.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:30:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903500-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.8,"1.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:30:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C","Sample-Routine","WATER",NA,2021-03-26,"12:00:00","MST",NA,NA,NA,0.97,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952917","This sampling event was originally meant to be sampled at ""4952370- COLORADO R AB DARK CANYON"" as part of cooperator sampling conducted by the Bureau of Reclamation; however, due to lower water levels, the actual sample was taken at a site ~15 miles away from 4952370. This sample site (i.e., 5952917) was created to capture the data from this sampling event. Site was sampled like a river (i.e., grab sample as ooposed to the typical depth integrated sample for lake sites) due to the low water levels.",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.529,"0.529","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-26 19:00:00,NA,"Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-23,"17:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 00:21:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903723-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",21.1,"21.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:15:00,NA,"Richmond WWTP outfall 002","Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-10,"14:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.804,"0.804","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 21:22:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-25,"11:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.177,"0.177","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 18:03:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904770-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",37.9,"37.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:40:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-15,"13:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.439,"0.439","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 20:22:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990376-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.312,"0.312","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 19:40:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902720-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 20:15:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905440-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.398,"0.398","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:20:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903200-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.69,"1.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:40:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1199","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4917712-0316-LAB","Sample-Routine","WATER",NA,2021-03-16,"15:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.568,"0.568","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-16 22:24:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902940-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.52,"0.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 22:40:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"16:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.549,"0.549","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 23:51:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949920-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.233,"0.233","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 17:20:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4958750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.102,"0.102","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:15:00,NA,"FISHER CK AT MOUTH","River/Stream",NA,"14030004",NA,NA,NA,NA,"38.7433200000","-109.1351100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905940-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.52,"3.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:20:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-15,"13:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.466,"0.466","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 20:22:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.01,"3.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:30:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"11:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.316,"0.316","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:38:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903504-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.503,"0.503","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:10:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903507-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.461,"0.461","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:00:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905630-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.514,"0.514","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:40:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-15,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 23:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"12:30:00","MST",NA,NA,NA,2.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.905,"0.905","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902710-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",17.7,"17.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:15:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990680-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.802,"0.802","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 16:30:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1215","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995043-0112-LAB","Sample-Routine","WATER",NA,2021-01-12,"09:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.33,"6.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-12 16:58:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.37,"0.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 19:30:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"10:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.366,"0.366","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 17:52:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C","Sample-Routine","WATER",NA,2021-01-15,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.407,"0.407","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 18:40:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-16,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 01:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.466,"0.466","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:17:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901975-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.68,"2.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:10:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.12,"1.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:00:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.392,"0.392","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:15:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997675-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"11:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 18:29:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"13:00:00","MST",NA,NA,NA,2.97,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.624,"0.624","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 20:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901200-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.55,"2.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 17:05:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904240-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.21,"2.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:00:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1228","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996410-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.909,"0.909","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 19:30:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C","Sample-Routine","WATER",NA,2021-03-25,"16:15:00","MST",NA,NA,NA,10,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.433,"0.433","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 23:15:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903501-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.68,"1.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:35:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904810-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.6,"6.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:50:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-19,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.191,"0.191","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 23:30:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908160-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.271,"0.271","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:45:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901980-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.27,"1.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:20:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949890-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.249,"0.249","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:00:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1236","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996560-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",25,"25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 18:55:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0310-4/1-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-10,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905780-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.326,"0.326","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:40:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.677,"0.677","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:30:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901431-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.41,"4.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:10:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908170-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.377,"0.377","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:15:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908200-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.201,"0.201","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:35:00,NA,"GENES CK @ U-16 XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.776,"0.776","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:00:00,NA,"E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990987-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.17,"3.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 18:00:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901431-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.48,"5.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:00:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1246","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996410-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 16:30:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4906400-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.351,"0.351","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:50:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905052-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.8,"1.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:50:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4998400-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"10:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 17:12:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.762,"0.762","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:20:00,NA,"SAN PITCH R @ US 89 XING N OF FAIRVIEW","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6382900000","-111.4465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-22,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.916,"0.916","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:15:00,NA,"E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 18:25:00,NA,"Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902900-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.781,"0.781","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:00:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"11:30:00","MST",NA,NA,NA,1.44,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.934,"0.934","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:30:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900511-0310-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-10,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.526,"0.526","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 22:05:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C","Sample-Routine","WATER",NA,2021-03-17,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.36,"6.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 17:20:00,NA,"Dry Ck Near Utah Lake-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904900-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.39,"3.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:45:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904940-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",18,"18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:15:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902941-0111-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-11,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.425,"0.425","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 21:40:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908500-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.508,"0.508","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:50:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990360-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.265,"0.265","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:50:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904943-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.3,"7.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:20:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.444,"0.444","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 19:30:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905540-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",43.4,"43.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 16:50:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905740-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"17:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.117,"0.117","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 00:35:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903820-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.41,"1.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 16:45:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.89,"3.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 21:00:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901190-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.464,"0.464","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:40:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.586,"0.586","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 20:00:00,NA,"WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904940-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",15.2,"15.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:30:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905590-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.674,"0.674","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:20:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901225-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 17:00:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"12:15:00","MST",NA,NA,NA,2.67,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.73,"0.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:15:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990640-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.582,"0.582","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 16:50:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908130-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.375,"0.375","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 18:10:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949892-0201-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-01,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.39,"0.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-01 17:35:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902710-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",17.4,"17.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:45:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901180-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 17:20:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904310-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.987,"0.987","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 19:00:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905441-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.259,"0.259","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 23:00:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905640-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.34,"1.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:30:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903191-0222-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-22,"15:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.46,"1.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 22:10:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904740-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",13.8,"13.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:40:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905520-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.61,"8.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:55:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.96,"1.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 22:40:00,NA,"Silver Ck Ab Cnfl/ San Pitch @ U117 Xing","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4758000000","-111.5994100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905040-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.359,"0.359","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:40:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905000-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C","Sample-Routine","WATER",NA,2021-01-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.473,"0.473","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 20:00:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905700-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"16:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.188,"0.188","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 23:20:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.76,"1.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 22:50:00,NA,"SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902900-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.551,"0.551","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 22:00:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0223-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-23,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 20:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901975-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.71,"2.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:10:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1294","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995043-0316-LAB","Sample-Routine","WATER",NA,2021-03-16,"09:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7,"7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-16 16:19:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-02,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.391,"0.391","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 18:35:00,NA,"Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C","Sample-Routine","WATER",NA,2021-01-25,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.24,"4.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-25 17:15:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0112-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-12,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1298","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996410-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 16:30:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-15,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 21:30:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905000-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.13,"3.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 22:00:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"13:20:00","MST",NA,NA,NA,2.66,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.598,"0.598","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 20:20:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903950-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.7,"10.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:10:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1304","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996570-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"08:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.35,"2.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 15:44:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905630-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.68,"0.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:00:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904724-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.03,"2.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:40:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1307","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996190-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.82,"8.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 16:45:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4997330-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 17:57:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4906400-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.148,"0.148","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 22:30:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0310-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-10,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 22:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905050-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",13.3,"13.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:20:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.28,"8.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:30:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 20:45:00,NA,"San Pitch R Bl Fairview WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-24,"11:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 18:24:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905200-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.161,"0.161","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 16:30:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908165-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.481,"0.481","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:40:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901790-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:10:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903510-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.316,"0.316","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:55:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905750-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.2,"0.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 00:00:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.78,"1.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 17:24:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.917,"0.917","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:30:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905440-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.262,"0.262","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:40:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-22,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.787,"0.787","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:15:00,NA,"E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905780-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"17:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.212,"0.212","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 00:15:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-02,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 20:00:00,NA,"Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901050-0216-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-16,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.27,"1.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:40:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:45:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901975-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.12,"3.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:30:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905540-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",40.1,"40.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:05:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908744-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.189,"0.189","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 16:00:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904770-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",28,"28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:35:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904943-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.13,"6.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:35:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"13:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 20:30:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904250-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.9,"1.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:00:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.579,"0.579","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:30:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990650-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.321,"0.321","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 18:50:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908350-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.383,"0.383","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 18:00:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905630-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.395,"0.395","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:00:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1339","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995467-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"13:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.34,"4.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 20:11:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903770-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.18,"2.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:50:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C","Sample-Routine","WATER",NA,2021-03-25,"16:20:00","MST",NA,NA,NA,30,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.412,"0.412","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 23:20:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905670-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.534,"0.534","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:00:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-27,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 21:30:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0310-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-10,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 22:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903200-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 22:20:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.53,"8.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 22:30:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903500-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.75,"1.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:30:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903699-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.87,"1.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:30:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.524,"0.524","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:15:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.324,"0.324","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 17:00:00,NA,"LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"12:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.874,"0.874","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 19:56:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905631-0113-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-13,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.457,"0.457","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:50:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904990-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:20:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1354","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4917712-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.3,"3.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 19:45:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-5984855-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.76,"7.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 16:15:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.49,"7.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:00:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908168-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.331,"0.331","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:30:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903400-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.47,"1.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 20:40:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905052-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.81,"1.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:10:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.302,"0.302","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:12:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.497,"0.497","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 21:30:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900511-0113-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-13,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.636,"0.636","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 19:40:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0309-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-09,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902040-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.56,"1.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:10:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903191-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:20:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-31,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.459,"0.459","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 18:10:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949892-0222-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-22,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.216,"0.216","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:15:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.43,"9.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:00:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904110-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.43,"2.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 16:45:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903060-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.36,"4.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:45:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905050-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",12,"12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-25,"16:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.369,"0.369","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 23:00:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903030-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.09,"3.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:40:00,NA,"NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904720-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.77,"2.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:15:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-23,"17:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 00:21:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904250-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.16,"2.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:25:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C","Sample-Routine","WATER",NA,2021-03-02,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.269,"0.269","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-02 21:30:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904920-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.52,"2.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:00:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"12:30:00","MST",NA,NA,NA,2.69,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.668,"0.668","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 19:30:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902940-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.779,"0.779","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:50:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901600-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2,"2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 18:50:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900470-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.879,"0.879","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 21:40:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901432-0111-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-11,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.62,"4.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:15:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-18,"11:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.26,"0.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:41:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4998130-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"10:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 17:36:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-5984855-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.2,"4.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 17:00:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902040-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.67,"1.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 18:20:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.74,"4.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 17:40:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905090-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",16.9,"16.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:10:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949890-0201-4-C","Sample-Routine","WATER",NA,2021-02-01,"10:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.362,"0.362","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-01 17:17:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905301-0209-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-09,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.446,"0.446","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 16:40:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0111-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-11,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905050-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",12.5,"12.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908744-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.138,"0.138","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 16:15:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904920-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.18,"2.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:45:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905301-0209-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-09,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.631,"0.631","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 16:40:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905630-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.607,"0.607","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:00:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905050-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",13.5,"13.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:20:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996830-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"14:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 21:52:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1400","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996550-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"09:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",26.8,"26.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 16:12:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-24,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.49,"4.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 16:20:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949855-0201-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-01,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-01 16:45:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1403","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996560-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"08:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",29.7,"29.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 15:56:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905040-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.405,"0.405","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:30:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-24,"13:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.345,"0.345","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-24 20:30:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903501-0222-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-22,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.14,"2.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 20:30:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"14:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.275,"0.275","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:16:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0309-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-09,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C","Sample-Routine","WATER",NA,2021-03-07,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-07 20:15:00,NA,"Oak Creek above Oak Creek Dam","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990360-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.26,"0.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:50:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905540-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",42.6,"42.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 16:50:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:45:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1413","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995210-0112-LAB","Sample-Routine","WATER",NA,2021-01-12,"11:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-12 18:49:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902941-0216-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-16,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.499,"0.499","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 22:45:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"13:10:00","MST",NA,NA,NA,2.551,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.789,"0.789","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 20:10:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.13,"0.13","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 21:45:00,NA,"Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900510-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.784,"0.784","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 19:30:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-18,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 23:30:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908170-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.584,"0.584","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 19:30:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904900-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.23,"3.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:45:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903200-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.61,"1.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 22:20:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-18,"11:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.299,"0.299","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:41:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905740-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.337,"0.337","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 21:50:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901200-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.94,"1.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:45:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901980-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.46,"1.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:10:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908697-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.33,"0.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:10:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C","Sample-Routine","WATER",NA,2021-01-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.416,"0.416","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 20:00:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"11:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.597,"0.597","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:45:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901980-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:45:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-27,"14:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 21:15:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903507-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.546,"0.546","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:15:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1432","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996550-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"12:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",21.8,"21.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 19:13:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904490-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:55:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902000-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.89,"1.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 17:50:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905780-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.312,"0.312","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 21:30:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,0.95,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.643,"0.643","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:40:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903699-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.16,"2.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:00:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901975-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:30:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-27,"14:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 21:15:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905301-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.155,"0.155","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 16:35:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949700-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.25,"0.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:10:00,NA,"MAMMOTH CK AT US89 XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990555-0316-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-16,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 15:45:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990997-0316-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-16,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.129,"0.129","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:55:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1444","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996570-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"08:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.26,"2.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 15:47:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904990-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:00:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990555-0120-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-20,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 15:00:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:40:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904110-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.51,"2.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 16:45:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"12:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.377,"0.377","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 19:17:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-25,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-25 18:00:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990650-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.261,"0.261","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:30:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908350-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 17:40:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.79,"7.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:30:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904920-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.79,"2.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:00:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905940-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.03,"4.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:00:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C","Sample-Routine","WATER",NA,2021-06-03,"10:55:00","MST",NA,NA,NA,13.03,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.154,"0.154","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:55:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.25,"2.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:20:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"14:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.477,"0.477","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 21:49:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905631-0113-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-13,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.476,"0.476","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:50:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908697-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.428,"0.428","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 18:00:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908200-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.405,"0.405","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 16:30:00,NA,"GENES CK @ U-16 XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905200-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.162,"0.162","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 16:30:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902700-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.15,"1.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:45:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4996830-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"13:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 20:13:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"14:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.54,"0.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:33:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C","Sample-Routine","WATER",NA,2021-03-24,"13:45:00","MST",NA,NA,NA,91.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.409,"0.409","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-24 20:45:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908350-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.337,"0.337","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 18:00:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990360-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 19:25:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C","Sample-Routine","WATER",NA,2021-03-02,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.155,"0.155","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-02 18:30:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.738,"0.738","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:00:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905040-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.201,"0.201","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:15:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C","Sample-Routine","WATER",NA,2021-03-03,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-03 21:45:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901050-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.41,"1.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 17:20:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903820-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 16:20:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900511-0210-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-10,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 20:00:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905441-0112-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-12,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.331,"0.331","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:30:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903507-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.312,"0.312","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:50:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5913460-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 21:00:00,NA,"MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901100-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.18,"1.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:30:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904250-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.31,"2.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:15:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901790-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.28,"1.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 17:50:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C","Sample-Routine","WATER",NA,2021-03-27,"09:15:00","MST",NA,NA,NA,36,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.394,"0.394","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 16:15:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904770-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",36.7,"36.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:40:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905670-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.665,"0.665","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:40:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903500-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.12,"2.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 20:20:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903510-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.413,"0.413","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:55:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903190-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.52,"1.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 22:00:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903191-0222-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-22,"15:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.46,"1.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 22:10:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990650-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.328,"0.328","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:50:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904250-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.43,"2.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:25:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904250-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.32,"2.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:15:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990997-0316-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-16,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.15,"0.15","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:55:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.07,"5.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 17:40:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905540-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",40.8,"40.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:05:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1495","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996540-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"10:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.07,"9.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 17:19:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908160-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.615,"0.615","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 19:50:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.67,"0.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:00:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901431-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.8,"5.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:00:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-25,"13:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.173,"0.173","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 20:43:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C","Sample-Routine","WATER",NA,2021-01-15,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.429,"0.429","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 21:10:00,NA,"SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902700-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 20:00:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902700-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.27,"1.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:45:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904241-0113-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-13,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.22,"2.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:40:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905070-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",24.8,"24.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 16:40:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C","Sample-Routine","WATER",NA,2021-06-24,"12:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.202,"0.202","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-24 19:49:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"1506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990997-0420-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-20,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.124,"0.124","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:20:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1507","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995222-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.917,"0.917","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 18:15:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-5910250-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 18:50:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"11:30:00","MST",NA,NA,NA,1.44,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.646,"0.646","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:30:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902050-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.65,"1.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:30:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904870-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.8,"1.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 22:05:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902941-0111-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-11,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.55,"0.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 21:40:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905301-0112-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-12,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.313,"0.313","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:10:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901432-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.04,"7.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:10:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-5906850-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.438,"0.438","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 16:50:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990700-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:00:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C","Sample-Routine","WATER",NA,2021-06-01,"14:30:00","MST",NA,NA,NA,13.06,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.386,"0.386","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:30:00,NA,"HYRUM RES MIDLAKE 02","Lake",NA,"16010203",NA,NA,NA,NA,"41.6193800000","-111.8593800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990555-0223-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-23,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 15:45:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 21:30:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901432-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.88,"6.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:10:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-04-23,"17:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-24 00:50:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.68,"2.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:30:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:50:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.422,"0.422","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 20:00:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902900-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.627,"0.627","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 20:45:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901700-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.62,"1.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:20:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"10:30:00","MST",NA,NA,NA,2.99,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.605,"0.605","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:30:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C","Sample-Routine","WATER",NA,2021-03-17,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.5,"11.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 18:30:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.17,"0.17","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:30:00,NA,"N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.1,"6.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:00:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900470-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.89,"0.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 21:40:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908745-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.51,"0.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 22:15:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905200-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.385,"0.385","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:00:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"13:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.277,"0.277","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 20:50:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.577,"0.577","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:00:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.263,"0.263","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:30:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949583",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 16:45:00,NA,"Deer Creek above Mountain Spring Fork and below BLM/USFS boundary","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0005700000","-112.0554900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0308-4/1-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-08,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905090-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",18.7,"18.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:50:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901190-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.494,"0.494","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:10:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.77,"1.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 22:50:00,NA,"SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904310-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.499,"0.499","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 20:25:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 18:46:00,NA,"SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990360-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.288,"0.288","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:40:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1545","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996550-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"09:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",25.4,"25.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 16:12:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.36,"4.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 16:10:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990680-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.292,"0.292","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 16:55:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.477,"0.477","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 18:15:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904724-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.27,"2.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:40:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-22,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-22 17:35:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-01,"13:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-01 20:27:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0505-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-05,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"10:15:00","MST",NA,NA,NA,1.206,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.27,"1.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:15:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.765,"0.765","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:15:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"13:30:00","MST",NA,NA,NA,1.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 20:30:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.95,"9.95","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 20:00:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1557","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995222-0316-LAB","Sample-Routine","WATER",NA,2021-03-16,"10:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.04,"2.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-16 17:03:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.152,"0.152","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 17:10:00,NA,"LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"13:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.516,"0.516","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:12:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1560","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996566-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"10:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.76,"8.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 17:32:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901431-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.21,"6.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:00:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-10,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-11 00:00:00,NA,"San Pitch River NPS QAQC Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5913630-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"13:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 20:26:00,NA,"PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-24,"12:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 19:34:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904240-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.13,"2.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:00:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905650-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.508,"0.508","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:40:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1567","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996100-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"11:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.95,"0.95","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 18:12:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904241-0310-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.13,"2.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:20:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908280-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.316,"0.316","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:45:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905000-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904240-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.8,"1.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:50:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905440-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.29,"0.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:40:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905640-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:35:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900470-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 19:10:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:00:00,NA,"ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905750-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.283,"0.283","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 21:10:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990360-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.254,"0.254","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:40:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.143,"0.143","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 22:00:00,NA,"INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-5906850-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.28,"0.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 16:30:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.631,"0.631","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:35:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1581","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995575-0112-LAB","Sample-Routine","WATER",NA,2021-01-12,"14:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.636,"0.636","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-12 21:37:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908745-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.581,"0.581","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 22:15:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996780-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"15:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 22:16:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990987-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:10:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904920-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.83,"1.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:45:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4948002-0222-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-22,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4948002",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 22:00:00,NA,"BLM Richfield QA/QC Equipment Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905440-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"15:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.198,"0.198","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 22:55:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C","Sample-Routine","WATER",NA,2021-01-15,"14:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.446,"0.446","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 21:24:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904300-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.264,"0.264","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:55:00,NA,"HIGH CK @ U91 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.503,"0.503","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 20:40:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1591","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996566-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.83,"8.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 20:30:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905940-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.54,"3.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:20:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904800-0209-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-09,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.58,"1.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:10:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-07,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 22:15:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.329,"0.329","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 17:30:00,NA,"Logan River below bridge on Golf Course Road","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904900-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.23,"3.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:45:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990680-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.843,"0.843","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 17:25:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903400-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.51,"1.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 20:40:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.67,"0.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 21:00:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.381,"0.381","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 18:30:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905440-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.597,"0.597","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:00:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C","Sample-Routine","WATER",NA,2021-06-15,"12:05:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.637,"0.637","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:05:00,NA,"CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C","Sample-Routine","WATER",NA,2021-03-27,"11:00:00","MST",NA,NA,NA,0.58,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.567,"0.567","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 18:00:00,NA,"ESCALANTE R AB LAKE POWELL","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.15,"2.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 22:25:00,NA,"SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.55,"0.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:00:00,NA,"DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902040-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 18:20:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903030-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.09,"3.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:40:00,NA,"NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905625-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.482,"0.482","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:10:00,NA,"Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"13:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.899,"0.899","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 20:40:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C","Sample-Routine","WATER",NA,2021-03-22,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.75,"3.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-22 17:25:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903080-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.44,"4.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:40:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-24,"16:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.38,"0.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-24 23:15:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"13:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.862,"0.862","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 20:40:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903504-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.441,"0.441","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:10:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C","Sample-Routine","WATER",NA,2021-03-31,"11:20:00","MST",NA,NA,NA,3.6,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.461,"0.461","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 18:20:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C","Sample-Routine","WATER",NA,2021-03-22,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.84,"3.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-22 16:40:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904726-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.09,"4.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:35:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901050-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.35,"1.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 17:20:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904840-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.39,"2.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:20:00,NA,"DITCH AB EA MILLER SC-12","Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901730-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:40:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904490-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.47,"1.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:00:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908745-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.443,"0.443","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 21:10:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905540-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",41,"41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 16:20:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990996-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.139,"0.139","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:40:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:30:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 20:45:00,NA,"San Pitch R Bl Fairview WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.757,"0.757","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:20:00,NA,"SAN PITCH R @ US 89 XING N OF FAIRVIEW","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6382900000","-111.4465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-24,"12:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 19:34:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990373-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.533,"0.533","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 16:35:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904510-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.33,"3.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:10:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904240-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.77,"1.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:50:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908744-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.341,"0.341","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 15:50:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901190-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.449,"0.449","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:40:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-31,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:35:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996810-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"15:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 22:03:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904240-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.38,"2.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:55:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"13:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.221,"0.221","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 20:17:00,NA,"MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1638","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996003-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"12:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.54,"3.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 19:21:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901700-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.91,"1.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:20:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0503-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-03,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901730-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.412,"0.412","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:15:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902710-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",13.9,"13.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:00:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902941-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.385,"0.385","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 22:50:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908500-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.03,"1.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 16:40:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.753,"0.753","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:15:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900470-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 19:10:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-02,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 20:00:00,NA,"Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.06,"3.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:50:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990650-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.186,"0.186","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:20:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1650","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995210-0216-LAB","Sample-Routine","WATER",NA,2021-02-16,"12:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.39,"8.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-16 19:41:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905750-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.322,"0.322","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:40:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.617,"0.617","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 21:00:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903400-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.51,"1.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:50:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905670-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.713,"0.713","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:40:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904320-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:50:00,NA,"CHERRY CK @ U91 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9376100000","-111.8138100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904490-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.54,"1.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:00:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0112-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-12,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904240-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.22,"2.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:55:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.687,"0.687","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 20:00:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.8,"4.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 20:20:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903190-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.19,"1.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:45:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908100-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.651,"0.651","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:15:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0406-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-06,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.105,"0.105","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 18:30:00,NA,"Oak Creek above Oak Creek Dam","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1665","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4917712-0413-LAB","Sample-Routine","WATER",NA,2021-04-13,"14:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.1,"2.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-13 21:23:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905052-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:15:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949700-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.148,"0.148","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 16:50:00,NA,"MAMMOTH CK AT US89 XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-29,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.175,"0.175","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 18:40:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.386,"0.386","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 20:35:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-29,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.228,"0.228","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 18:40:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904241-0407-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-07,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.14,"1.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:45:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1672","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995222-0511-LAB","Sample-Routine","WATER",NA,2021-05-11,"10:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.561,"0.561","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-11 17:32:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-12,"19:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-13 02:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4930290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.665,"0.665","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 23:00:00,NA,"SAN RAFAEL R AT U24 XING","River/Stream",NA,"14060009",NA,NA,NA,NA,"38.8597500000","-110.3718700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",15,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990620-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.143,"0.143","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:05:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4900751-0622-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-22,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:20:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-26,"10:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 17:43:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.227,"0.227","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 19:45:00,NA,"MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"13:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.726,"0.726","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 20:00:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.289,"0.289","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 18:20:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903507-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.685,"0.685","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:35:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905200-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.379,"0.379","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:45:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0405-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-05,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.362,"0.362","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:00:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.22,"3.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:10:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996870-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"14:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 21:03:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"14:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901690",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.229,"0.229","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:40:00,NA,"HYRUM RES 03 NEAR UPPER END","Lake",NA,"16010203",NA,NA,NA,NA,"41.6125500000","-111.8519700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903191-0406-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:40:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902700-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.82,"1.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:55:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C","Sample-Routine","WATER",NA,2021-06-21,"16:10:00","MST",NA,NA,NA,30,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.421,"0.421","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 23:10:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-03,"10:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4905800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.294,"0.294","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:05:00,NA,"PORCUPINE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"16010203",NA,NA,NA,NA,"41.5177200000","-111.7324400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4930290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.404,"0.404","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 23:00:00,NA,"SAN RAFAEL R AT U24 XING","River/Stream",NA,"14060009",NA,NA,NA,NA,"38.8597500000","-110.3718700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",15,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905090-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",16.9,"16.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:50:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904740-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",15.8,"15.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:15:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4900751-0621-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-21,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.091,"0.091","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.582,"0.582","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:00:00,NA,"CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.03,"2.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 18:20:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902900-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.419,"0.419","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:05:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.523,"0.523","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:00:00,NA,"CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904965-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.839,"0.839","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:20:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901700-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.956,"0.956","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:55:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946000-0602-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-02,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 16:10:00,NA,"San Pitch River NPS QAQC Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:30:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946756-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.801,"0.801","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:30:00,NA,"San Pitch R Bl Fairview WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-17,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.135,"0.135","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 22:45:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-27,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 21:00:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-21,"13:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:31:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1709","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996190-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.76,"8.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 16:55:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C","Sample-Routine","WATER",NA,2021-05-19,"08:30:00","MST",NA,NA,NA,6.101,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.247,"0.247","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 15:30:00,NA,"FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-25,"14:59:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 21:59:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1712","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996570-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"08:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.93,"1.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 15:43:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C","Sample-Routine","WATER",NA,2021-06-17,"09:30:00","MST",NA,NA,NA,61.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.536,"0.536","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-17 16:30:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990373-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.459,"0.459","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 16:10:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-29,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:50:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905740-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.426,"0.426","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 22:45:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 20:30:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-26,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 17:00:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908280-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.12,"1.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:20:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.43,"0.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 20:35:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",24.9,"24.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 21:30:00,NA,"OREM WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994650-0501-4-C","Sample-Routine","WATER",NA,2021-05-01,"08:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-01 15:48:00,NA,"DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-28,"15:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.917,"0.917","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 22:15:00,NA,"MATT WARNER RES AB DAM","Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908281-0621-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-21,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.341,"0.341","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:00:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990376-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.419,"0.419","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:30:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990700-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.197,"0.197","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:40:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901975-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.09,"3.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:45:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-12,"19:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 02:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903820-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.596,"0.596","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 17:20:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904965-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 19:00:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905137-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.25,"0.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:30:00,NA,"Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1732","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996003-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"12:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.66,"3.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 19:51:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.672,"0.672","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:15:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.302,"0.302","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:00:00,NA,"LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"1735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905580-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 20:00:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"11:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.194,"0.194","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 18:22:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905540-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",36.5,"36.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 16:30:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.59,"3.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 18:30:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 22:00:00,NA,"INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905520-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.59,"7.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 17:40:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904965-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:20:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210527-4995730-0527-4-C","Sample-Routine","WATER",NA,2021-05-27,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-27 17:57:00,NA,"SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905301-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.196,"0.196","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:50:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"11:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.798,"0.798","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 18:17:00,NA,"Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"1745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-23,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 20:10:00,NA,"UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902900-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.361,"0.361","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:00:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908350-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.572,"0.572","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:45:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902050-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:25:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.3,"10.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 19:05:00,NA,"DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Other;Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.265,"0.265","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:30:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-21,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.268,"0.268","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:10:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901050-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.646,"0.646","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:15:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901100-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:40:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905700-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.444,"0.444","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:30:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996850-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"14:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 21:21:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904510-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.74,"2.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:25:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901600-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.49,"0.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:45:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:35:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.482,"0.482","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:35:00,NA,"NEWTON RES UPPER LAKE 03","Lake",NA,"16010202",NA,NA,NA,NA,"41.9121500000","-111.9930100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905142-0622-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-22,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.279,"0.279","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:30:00,NA,"Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990555-0622-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-22,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.116,"0.116","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 15:45:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.156,"0.156","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 22:45:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904740-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.88,"5.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 20:00:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"14:35:00","MST",NA,NA,NA,2.414,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.723,"0.723","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:35:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901200-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.12,"2.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:40:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-12,"19:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 02:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"14:10:00","MST",NA,NA,NA,2.895,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.8,"0.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-29,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.502,"0.502","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 18:10:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996830-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"14:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 21:33:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.408,"0.408","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:45:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901180-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 16:50:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904900-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.59,"2.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:20:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905940-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.73,"3.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:00:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210629-4995730-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"10:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-29 17:41:00,NA,"SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"11:10:00","MST",NA,NA,NA,1.857,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.534,"0.534","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 18:10:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903501-0518-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-18,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.535,"0.535","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:25:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903190-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 22:35:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-27-C","Sample-Routine","WATER",NA,2021-06-02,"10:02:00","MST",NA,NA,NA,25,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 17:02:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.621,"0.621","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0517-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-17,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.175,"0.175","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"17:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.708,"0.708","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 00:05:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:30:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908160-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.504,"0.504","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 21:00:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C","Sample-Composite Without Parents","WATER",NA,2021-06-21,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088","7 Photic zone samples taken at 1m, 5m, 8m, 12m, 16m, 20m and 24m; licor 1% depth at 24m; sample time = 13:40; vandorn; field data collected using YSI EXO3",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.228,"0.228","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:40:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.752,"0.752","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:00:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903200-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.14,"1.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 22:00:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C","Sample-Routine","WATER",NA,2021-06-03,"08:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4944302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 15:31:00,NA,"Salina Creek bl confluence with Beaver Creek","River/Stream",NA,"16030003",NA,NA,NA,NA,"38.9348300000","-111.5384600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"1787","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202106011153:SR","Sample-Routine","WATER",NA,2021-06-01,"11:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-WRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-06-17,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 18:53:00,NA,"Whiterocks River 2","River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NONE","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"1788","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994952-0511-LAB","Sample-Routine","WATER",NA,2021-05-11,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-11 15:57:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C","Sample-Routine","WATER",NA,2021-06-01,"10:25:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.364,"0.364","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:25:00,NA,"MANTUA RES S MIDLAKE 02","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900470-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:00:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"11:00:00","MST",NA,NA,NA,2.766,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.598,"0.598","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 18:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905940-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.68,"2.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:30:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5913460-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"13:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 20:49:00,NA,"MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-27,"10:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.41,"0.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 17:45:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-21,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:05:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901600-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.462,"0.462","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:50:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-12,"19:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-13 02:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901190-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.394,"0.394","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:30:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902000-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.41,"5.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:20:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0505-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-05,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.299,"0.299","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 17:00:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1802","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996003-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"13:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.16,"2.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 20:24:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"14:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:50:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904340-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"12:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:28:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-29,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 22:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902900-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.363,"0.363","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:55:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.466,"0.466","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 17:00:00,NA,"CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908100-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 22:30:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-29-C","Sample-Routine","WATER",NA,2021-06-15,"11:36:00","MST",NA,NA,NA,36,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 18:36:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905050-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.44,"2.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:20:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997670-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"11:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 18:24:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905770-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.28,"1.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:40:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0608-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-08,"16:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.102,"0.102","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 23:05:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.411,"0.411","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 19:45:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-27-C","Sample-Routine","WATER",NA,2021-06-16,"09:44:00","MST",NA,NA,NA,11,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 16:44:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-21,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.488,"0.488","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:45:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908100-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.425,"0.425","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:00:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904770-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",34.2,"34.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 18:00:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949855-0419-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-19,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service;National Park Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-19 21:00:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990987-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.09,"2.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:15:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901432-0517-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-17,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.02,"4.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 19:20:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C","Sample-Routine","WATER",NA,2021-05-07,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-07 18:30:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908200-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.29,"0.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:30:00,NA,"GENES CK @ U-16 XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.68,"9.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 22:40:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902000-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.41,"3.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:40:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.317,"0.317","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 21:00:00,NA,"WHITE R AB CNFL AB BITTER CK","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9699700000","-109.4109500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"12:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.605,"0.605","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:55:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905740-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.559,"0.559","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:20:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-17,"09:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.435,"0.435","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-17 16:00:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905640-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 19:00:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903510-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.254,"0.254","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:43:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.659,"0.659","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:45:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.272,"0.272","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:07:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.653,"0.653","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 20:00:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0405-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-05,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.83,"2.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 21:30:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904724-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.1,"10.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:35:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1838","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996550-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"09:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",23.6,"23.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 16:21:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902700-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.33,"2.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 20:00:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904310-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.504,"0.504","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 20:25:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-26,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.21,"3.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 15:40:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.618,"0.618","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 20:10:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901730-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.462,"0.462","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 20:40:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C","Sample-Routine","WATER",NA,2021-04-23,"14:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.683,"0.683","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 21:56:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-05-10,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 19:30:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.524,"0.524","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:45:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903950-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.98,"3.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:00:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905090-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.2,"11.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:50:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908160-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.2,"0.2","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:30:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"12:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.27,"1.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 19:02:00,NA,"Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210430-4995710-0430-4-C","Sample-Routine","WATER",NA,2021-04-30,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-30 17:57:00,NA,"DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-12,"10:20:00","MST",NA,NA,NA,1.877,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.562,"0.562","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:20:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-27,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.252,"0.252","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 21:10:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0611-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-11,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-11 16:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"13:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.625,"0.625","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 20:00:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901225-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.39,"4.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:30:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903080-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.21,"5.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:51:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997330-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 17:50:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908697-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.502,"0.502","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:00:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.558,"0.558","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990997-0622-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-22,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:05:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1862","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996020-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.49,"5.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 19:35:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901980-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.503,"0.503","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:30:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1864","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4917712-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"13:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.05,"3.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 20:47:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"1865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901930-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.42,"0.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:00:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C","Sample-Routine","WATER",NA,2021-06-01,"14:30:00","MST",NA,NA,NA,13.06,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.378,"0.378","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:30:00,NA,"HYRUM RES MIDLAKE 02","Lake",NA,"16010203",NA,NA,NA,NA,"41.6193800000","-111.8593800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903030-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.601,"0.601","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:10:00,NA,"NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901790-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.489,"0.489","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:10:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-23,"15:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.632,"0.632","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 22:02:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C","Sample-Routine","WATER",NA,2021-06-03,"11:00:00","MST",NA,NA,NA,24.52,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.233,"0.233","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 18:00:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905580-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.993,"0.993","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:40:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"11:00:00","MST",NA,NA,NA,2.553,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.622,"0.622","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:00:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.748,"0.748","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:05:00,NA,"MUD CREEK AB SCOFIELD RES","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"13:10:00","MST",NA,NA,NA,2.551,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.79,"0.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 20:10:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.34,"0.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 21:00:00,NA,"WHITE R AB CNFL AB BITTER CK","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9699700000","-109.4109500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908170-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.386,"0.386","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:30:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901190-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.531,"0.531","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:10:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-03,"10:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4905800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.291,"0.291","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:05:00,NA,"PORCUPINE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"16010203",NA,NA,NA,NA,"41.5177200000","-111.7324400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905441-0406-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-06,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.31,"0.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:15:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908100-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.72,"0.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 21:15:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926290-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.378,"0.378","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 20:30:00,NA,"CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904330-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.308,"0.308","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 19:15:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904241-0519-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-19,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.406,"0.406","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 17:45:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-21,"15:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.433,"0.433","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:15:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904965-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.46,"1.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:20:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-24,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.2,"0.2","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 18:30:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-25,"11:32:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.228,"0.228","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 18:32:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908152-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.64,"0.64","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:20:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903504-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.328,"0.328","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:30:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0607-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-07,"19:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 02:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-27-C","Sample-Routine","WATER",NA,2021-05-06,"09:18:00","MST",NA,NA,NA,26,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 16:18:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902700-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.63,"2.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:15:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C","Sample-Routine","WATER",NA,2021-05-26,"08:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 15:30:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.408,"0.408","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 19:45:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"12:50:00","MST",NA,NA,NA,2.751,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.749,"0.749","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:50:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905000-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.785,"0.785","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:10:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901790-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.812,"0.812","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 16:35:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990997-0420-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-20,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.094,"0.094","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:20:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990376-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.317,"0.317","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 18:20:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901730-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.648,"0.648","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:45:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1901","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-RKD:202105261247:SR","Sample-Routine","WATER",NA,2021-05-26,"12:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-RKD",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-05-26 19:47:00,NA,"Rock Creek","River/Stream","Knights Diversion below 3rd bridge.","14060003",NA,NA,NA,NA,"40.3110798300","-110.4938520000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"1902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.275,"0.275","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:24:00,NA,"Logan R @ 1000 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"1903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908745-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.376,"0.376","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:20:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926350-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"16:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.421,"0.421","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 23:05:00,NA,"CHALK CK AT US189 XING","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-27,"09:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.48,"0.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 16:55:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Other;Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.737,"0.737","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 18:00:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908280-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.243,"0.243","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:15:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"09:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4999102",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.233,"0.233","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 16:44:00,NA,"Nebo Creek 55 meters ab National Forest Boundary","River/Stream",NA,"16020202",NA,NA,NA,NA,"39.8694700000","-111.5856300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"1909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-23-C","Sample-Routine","WATER",NA,2021-06-16,"10:19:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 17:19:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-20,"11:06:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-20 18:06:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C","Sample-Routine","WATER",NA,2021-05-26,"08:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.19,"3.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 15:30:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C","Sample-Routine","WATER",NA,2021-06-17,"09:30:00","MST",NA,NA,NA,61.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.465,"0.465","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-17 16:30:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905400-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.268,"0.268","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:00:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905630-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.332,"0.332","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:30:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905052-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.55,"1.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:15:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903699-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.718,"0.718","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 17:55:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990680-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.257,"0.257","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 16:30:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905520-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.46,"4.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:10:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990555-0622-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-22,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 15:45:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.43,"9.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:30:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.19,"1.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 22:30:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908168-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.194,"0.194","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:40:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904965-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.832,"0.832","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 19:00:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903191-0406-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.41,"1.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:40:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"11:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.88,"1.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 18:08:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4953205-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.255,"0.255","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 20:30:00,NA,"N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904940-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",19.3,"19.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:00:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:20:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"13:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.418,"0.418","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 20:29:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904726-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.36,"4.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:35:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-28,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 17:10:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.571,"0.571","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 18:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901930-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.05,"1.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:35:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996810-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"15:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 22:14:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926360-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.299,"0.299","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 20:55:00,NA,"CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"12:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.638,"0.638","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:25:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.123,"0.123","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 16:15:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903500-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.72,"1.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:00:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903180-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:35:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903507-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.336,"0.336","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:25:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908745-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.817,"0.817","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 22:25:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901050-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.506,"0.506","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:15:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904770-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",37.9,"37.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 16:40:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"11:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 18:20:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901730-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.628,"0.628","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:15:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903260-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.973,"0.973","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:40:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949900-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"09:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.13,"0.13","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 16:05:00,NA,"ASAY CK AT US89 XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.5841500000","-112.4766000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-27,"11:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:18:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"1949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905770-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.53,"1.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:40:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C","Sample-Routine","WATER",NA,2021-06-16,"12:10:00","MST",NA,NA,NA,48.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.554,"0.554","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 19:10:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:50:00","MST",NA,NA,NA,8.94,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.47,"0.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:50:00,NA,"NEWTON RES MIDLAKE 02","Lake",NA,"16010202",NA,NA,NA,NA,"41.9066000000","-111.9830100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901100-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.867,"0.867","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:55:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949583",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.129,"0.129","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 16:45:00,NA,"Deer Creek above Mountain Spring Fork and below BLM/USFS boundary","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0005700000","-112.0554900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905700-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.267,"0.267","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:00:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902900-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.608,"0.608","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 22:00:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0611-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-11,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-11 16:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908280-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.442,"0.442","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 19:30:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904740-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.4,"9.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:00:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902710-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",13,"13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:00:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C","Sample-Routine","WATER",NA,2021-03-19,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.177,"0.177","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-19 20:45:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-19,"08:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.263,"0.263","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 15:00:00,NA,"FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994550-0502-4-C","Sample-Routine","WATER",NA,2021-05-02,"15:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.088,"0.088","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-02 22:10:00,NA,"PARIA R AT OLD TOWN SITE","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-04,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.185,"0.185","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-05 00:00:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905000-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:30:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905441-0608-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-08,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.231,"0.231","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:00:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905540-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",38,"38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 17:50:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902700-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:00:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901431-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.81,"6.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:00:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"14:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901690",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.266,"0.266","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:40:00,NA,"HYRUM RES 03 NEAR UPPER END","Lake",NA,"16010203",NA,NA,NA,NA,"41.6125500000","-111.8519700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-23,"12:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4940730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.645,"0.645","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 19:55:00,NA,"UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"16030006",NA,NA,NA,NA,"37.5166400000","-113.8716400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-29-C","Sample-Routine","WATER",NA,2021-05-06,"09:23:00","MST",NA,NA,NA,33.8,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 16:23:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905301-0112-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-12,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.319,"0.319","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:10:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"12:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.297,"0.297","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 19:23:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.51,"5.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 18:20:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-14,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908130-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.278,"0.278","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 18:50:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:00:00,NA,"INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 18:46:00,NA,"SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901790-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:10:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C","Sample-Routine","WATER",NA,2021-01-25,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.16,"4.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-25 17:15:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990987-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2,"2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:40:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908350-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.597,"0.597","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:45:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.98,"1.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:20:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C","Sample-Routine","WATER",NA,2021-06-18,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.907,"0.907","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 19:30:00,NA,"ESCALANTE R AB LAKE POWELL","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.704,"0.704","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 22:45:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.79,"0.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:40:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903699-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.22,"2.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:00:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904800-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.28,"1.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:05:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.14,"4.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 16:45:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905520-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.1,"10.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:30:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C","Sample-Routine","WATER",NA,2021-04-23,"08:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.344,"0.344","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 15:49:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.35,"3.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 17:00:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902940-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.567,"0.567","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:30:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C","Sample-Routine","WATER",NA,2021-06-19,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.322,"0.322","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-19 17:15:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-28,"15:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.928,"0.928","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 22:40:00,NA,"MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"10:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.259,"0.259","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 17:32:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"1997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904110-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.39,"2.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 16:20:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"1998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.539,"0.539","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 22:30:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"1999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0519-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-19,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 01:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990700-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.163,"0.163","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:15:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C","Sample-Routine","WATER",NA,2021-06-14,"12:10:00","MST",NA,NA,NA,6.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.424,"0.424","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:10:00,NA,"NEWTON RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990650-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.253,"0.253","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:40:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",24.5,"24.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 21:30:00,NA,"OREM WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904241-0609-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-09,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.12,"1.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 18:30:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"13:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.532,"0.532","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 20:25:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"14:45:00","MST",NA,NA,NA,2.395,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.556,"0.556","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:45:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C","Sample-Routine","WATER",NA,2021-06-28,"15:30:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.91,"0.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 22:30:00,NA,"MATT WARNER RES AB DAM","Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905670-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 21:30:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901190-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.351,"0.351","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:30:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903501-0622-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-22,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.75,"1.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:15:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-27-C","Sample-Routine","WATER",NA,2021-06-16,"10:23:00","MST",NA,NA,NA,11,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 17:23:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990555-0518-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-18,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 15:00:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904510-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.23,"3.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:10:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908160-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.431,"0.431","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 19:50:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901225-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 17:00:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905188-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.729,"0.729","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:45:00,NA,"Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900470-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.547,"0.547","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 20:15:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905052-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.86,"1.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:40:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902040-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.63,"2.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:35:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.221,"0.221","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 18:45:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996890-0727-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-27,"14:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 21:01:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.358,"0.358","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 16:30:00,NA,"Logan River at Water Lab lower bridge","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904965-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.98,"3.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:30:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.1,"0.1","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:00:00,NA,"N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"11:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.47,"1.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 18:51:00,NA,"Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905740-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.497,"0.497","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 22:45:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905040-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.704,"0.704","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 17:30:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908140-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.229,"0.229","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:15:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904340-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3,"3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:20:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-5906850-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.548,"0.548","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 17:10:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4997300-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"11:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 18:09:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C","Sample-Routine","WATER",NA,2021-05-19,"08:30:00","MST",NA,NA,NA,6.101,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.255,"0.255","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 15:30:00,NA,"FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"15:10:00","MST",NA,NA,NA,1.949,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.679,"0.679","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 22:10:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-23-C","Sample-Routine","WATER",NA,2021-05-26,"10:05:00","MST",NA,NA,NA,7,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 17:05:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.686,"0.686","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-26,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 17:00:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904800-0406-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-06,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.01,"1.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:35:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905750-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.304,"0.304","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 22:00:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C","Sample-Routine","WATER",NA,2021-06-01,"10:25:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.285,"0.285","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:25:00,NA,"MANTUA RES S MIDLAKE 02","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996780-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"15:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 22:03:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901200-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.02,"2.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:40:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926352-0614-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-14,"15:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.35,"1.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 22:51:00,NA,"CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"2043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905441-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.198,"0.198","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 23:00:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990360-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.352,"0.352","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 19:25:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0208-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-08,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903770-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.2,"2.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:40:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C","Sample-Routine","WATER",NA,2021-06-23,"13:00:00","MST",NA,NA,NA,5.98,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4940730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.625,"0.625","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 20:00:00,NA,"UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"16030006",NA,NA,NA,NA,"37.5166400000","-113.8716400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-21,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.427,"0.427","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:40:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903950-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.945,"0.945","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 19:30:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905400-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.931,"0.931","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:40:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949533",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.269,"0.269","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 22:30:00,NA,"Deep Creek at Road Crossing 1.3 miles above confluence w/Pine Creek","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0472700000","-112.0197700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-04-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-14 22:00:00,NA,"BLM Moab Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902941-0517-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-17,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.448,"0.448","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:40:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904920-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.31,"2.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:45:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908280-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.732,"0.732","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 19:30:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.51,"1.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:30:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2057","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996100-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"11:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.147,"0.147","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 18:52:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908168-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.193,"0.193","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:40:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905200-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.223,"0.223","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 15:50:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904310-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.902,"0.902","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 19:00:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905780-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.171,"0.171","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:40:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904840-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.37,"2.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 17:20:00,NA,"DITCH AB EA MILLER SC-12","Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.42,"9.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 20:10:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",12.4,"12.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:40:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949920-0201-4-C","Sample-Routine","WATER",NA,2021-02-01,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.404,"0.404","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-01 16:30:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904770-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",32.6,"32.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:15:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C","Sample-Routine","WATER",NA,2021-06-03,"08:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4944302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.263,"0.263","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 15:31:00,NA,"Salina Creek bl confluence with Beaver Creek","River/Stream",NA,"16030003",NA,NA,NA,NA,"38.9348300000","-111.5384600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901190-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.522,"0.522","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:10:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990650-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.263,"0.263","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:30:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0112-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-12,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.097,"0.097","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.562,"0.562","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 17:00:00,NA,"CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.312,"0.312","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:41:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904740-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",18.1,"18.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:20:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905400-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.412,"0.412","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:30:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910020-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"13:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.3,"2.3","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 20:36:00,NA,"LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904340-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.38,"2.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:20:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901180-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 16:50:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.466,"0.466","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 20:20:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0308-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-08,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990373-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 16:20:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"12:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.567,"0.567","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 19:31:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904110-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.67,"2.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 16:30:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903200-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.71,"1.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:10:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"13:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.03,"1.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 20:30:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-5910302-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"11:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 18:18:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904920-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2,"2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:45:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990987-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.8,"1.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:40:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-16,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-17 00:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.84,"1.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 17:24:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0517-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-17,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-29,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.499,"0.499","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:20:00,NA,"PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905040-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.328,"0.328","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 17:40:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990555-0223-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-23,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 15:45:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903723-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903723",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",21.1,"21.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:15:00,NA,"Richmond WWTP outfall 002","Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C","Sample-Routine","WATER",NA,2021-03-27,"11:00:00","MST",NA,NA,NA,0.58,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.714,"0.714","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 18:00:00,NA,"ESCALANTE R AB LAKE POWELL","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:45:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"12:15:00","MST",NA,NA,NA,2.67,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.714,"0.714","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:15:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905750-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.203,"0.203","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:15:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-15,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 21:30:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.498,"0.498","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 19:15:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.899,"0.899","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:20:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.939,"0.939","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 19:15:00,NA,"LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C","Sample-Routine","WATER",NA,2021-03-24,"16:30:00","MST",NA,NA,NA,51,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.436,"0.436","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Filter reseampled on 3/25/2021 at 10:00 hrs",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-24 23:30:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-31,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:30:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990376-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.247,"0.247","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 19:00:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905540-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",45.7,"45.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 16:30:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-23,"14:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.512,"0.512","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 21:49:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.596,"0.596","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903504-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.318,"0.318","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 20:10:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C","Sample-Routine","WATER",NA,2021-03-02,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.236,"0.236","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-02 21:30:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905740-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.199,"0.199","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 20:50:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.37,"0.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 18:30:00,NA,"Logan R @ 1000 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4996780-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 20:30:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990700-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.187,"0.187","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:20:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0407-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-07,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.327,"0.327","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 22:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.672,"0.672","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:00:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903950-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.18,"9.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:00:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-26-C","Sample-Routine","WATER",NA,2021-06-02,"09:58:00","MST",NA,NA,NA,19,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 16:58:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.637,"0.637","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 20:00:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.84,"3.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 16:20:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.454,"0.454","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 18:15:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990700-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.253,"0.253","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 18:30:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908350-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.941,"0.941","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 17:40:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905400-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.353,"0.353","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:20:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908160-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.307,"0.307","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:45:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"12:30:00","MST",NA,NA,NA,2.69,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.661,"0.661","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 19:30:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990620-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.207,"0.207","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:30:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C","Sample-Routine","WATER",NA,2021-01-15,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 18:40:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.401,"0.401","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:41:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0209-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-09,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2131","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996275-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"10:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.27,"5.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 17:58:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.1,"6.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 18:20:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.311,"0.311","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 22:00:00,NA,"COMB WASH BL FISH CK","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3841600000","-109.6684600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.539,"0.539","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:00:00,NA,"DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990640-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.734,"0.734","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:15:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904940-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",17.8,"17.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:15:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-24,"16:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-24 23:15:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901200-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.97,"1.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:10:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905650-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.43,"0.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:20:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.94,"2.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:30:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905050-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.9,"11.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901700-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.771,"0.771","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:55:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.6,"0.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:01:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.4,"5.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 18:15:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C","Sample-Routine","WATER",NA,2021-06-01,"10:00:00","MST",NA,NA,NA,4.95,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.359,"0.359","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:00:00,NA,"MANTUA RES AB DAM 01","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2146","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996022-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"12:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.91,"2.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 19:07:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.949,"0.949","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:40:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C","Sample-Routine","WATER",NA,2021-02-02,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.53,"1.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 18:00:00,NA,"Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"11:45:00","MST",NA,NA,NA,2.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.663,"0.663","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:45:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905090-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",16.7,"16.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 17:10:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903770-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.16,"2.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:40:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990640-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.542,"0.542","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 16:50:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902040-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.17,"2.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 18:10:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"13:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.286,"0.286","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:12:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905070-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",19.8,"19.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:40:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903191-0112-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-12,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.78,"1.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:00:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:15:00,NA,"BLM Moab Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990640-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.798,"0.798","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 17:45:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910273-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"12:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 19:11:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901180-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.44,"1.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 17:20:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905700-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.332,"0.332","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 21:00:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2162","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995075-0316-LAB","Sample-Routine","WATER",NA,2021-03-16,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.16,"3.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-16 16:47:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901100-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 17:15:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C","Sample-Routine","WATER",NA,2021-03-17,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.36,"0.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 19:20:00,NA,"Powell Slough WMA South Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2635300000","-111.7404600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990373-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.03,"1.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 17:00:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C","Sample-Routine","WATER",NA,2021-03-26,"09:20:00","MST",NA,NA,NA,42.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.387,"0.387","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-26 16:20:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.686,"0.686","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.793,"0.793","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 21:00:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-25,"16:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 23:00:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990620-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.227,"0.227","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 19:00:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903699-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.57,"2.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:10:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-27,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 21:30:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903190-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.18,"1.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:45:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C","Sample-Routine","WATER",NA,2021-06-30,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908703",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.186,"0.186","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 17:15:00,NA,"Blacksmith Fork AB SR101 road crossing at mile post 10 (UT09ST-103)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6207000000","-111.7591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905400-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.455,"0.455","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:30:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904340-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.32,"2.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:20:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"12:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.841,"0.841","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 19:56:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904740-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",19.9,"19.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:40:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"12:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.28,"0.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 19:24:00,NA,"SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904490-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.83,"0.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:25:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-26,"11:24:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 18:24:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990650-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.331,"0.331","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:40:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"13:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.766,"0.766","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 20:20:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",10.3,"10.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:50:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905650-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.904,"0.904","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 17:50:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905070-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",27.6,"27.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:00:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.277,"0.277","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 20:00:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905631-0210-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-10,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.607,"0.607","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 18:10:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0111-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-01-11,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 22:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990997-0518-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-18,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.235,"0.235","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:25:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.226,"0.226","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:07:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.14,"4.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 16:45:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2193","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995575-0216-LAB","Sample-Routine","WATER",NA,2021-02-16,"09:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.375,"0.375","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-16 16:18:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C","Sample-Routine","WATER",NA,2021-03-31,"11:20:00","MST",NA,NA,NA,3.6,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.404,"0.404","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 18:20:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.63,"0.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 20:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904241-0223-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-23,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.84,"1.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:00:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904300-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.472,"0.472","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:10:00,NA,"HIGH CK @ U91 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:30:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2199","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996100-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"13:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.891,"0.891","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 20:58:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902000-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.74,"1.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 19:00:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.46,"4.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 16:10:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-02,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.369,"0.369","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-02 18:35:00,NA,"Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905441-0209-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-09,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.227,"0.227","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:50:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-26,"09:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.394,"0.394","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-26 16:10:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2205","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994952-0112-LAB","Sample-Routine","WATER",NA,2021-01-12,"09:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.7,"3.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-12 16:38:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902700-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.54,"1.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 20:00:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903504-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.663,"0.663","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:20:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.803,"0.803","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 21:00:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904940-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",21.5,"21.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:30:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902720-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 20:15:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:00:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946840-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.348,"0.348","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 16:15:00,NA,"San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905940-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.59,"3.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:50:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949630-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.085,"0.085","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:40:00,NA,"SEVIER R AT U12 XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7494200000","-112.3749200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-29-C","Sample-Routine","WATER",NA,2021-05-26,"11:07:00","MST",NA,NA,NA,34.7,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 18:07:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5913630-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"13:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 20:41:00,NA,"PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2217","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996540-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"10:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",13.2,"13.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 17:49:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C","Sample-Routine","WATER",NA,2021-06-16,"12:10:00","MST",NA,NA,NA,48.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.447,"0.447","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 19:10:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"12:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.781,"0.781","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:25:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-16,"10:17:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 17:17:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908160-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.304,"0.304","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:50:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-24,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.271,"0.271","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 18:30:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905650-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.622,"0.622","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:30:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C","Sample-Routine","WATER",NA,2021-05-06,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-06 22:00:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2225","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995043-0615-LAB","Sample-Routine","WATER",NA,2021-06-15,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4,"4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-15 16:35:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.499,"0.499","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 20:30:00,NA,"DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2227","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996680-0511-LAB","Sample-Routine","WATER",NA,2021-05-11,"13:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.275,"0.275","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-11 20:17:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901200-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.65,"3.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:25:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903080-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:15:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996850-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"14:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 21:54:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904310-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.647,"0.647","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 20:20:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908745-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.369,"0.369","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:20:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.72,"1.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 19:40:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C","Sample-Routine","WATER",NA,2021-06-18,"12:20:00","MST",NA,NA,NA,34.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.386,"0.386","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 19:20:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-22,"12:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.37,"0.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:40:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.779,"0.779","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:15:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908130-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.201,"0.201","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:00:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990620-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 18:00:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905590-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.979,"0.979","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:45:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917390-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"11:45:00","MST",NA,NA,NA,2.746,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.78,"0.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:45:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"10:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.17,"0.17","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 17:28:00,NA,"Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997670-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"11:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 18:26:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905630-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.485,"0.485","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:40:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901431-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.18,"6.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:05:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0503-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-03,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-03,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 22:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-28,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 18:15:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904510-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.96,"4.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:45:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"14:10:00","MST",NA,NA,NA,2.435,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.645,"0.645","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.22,"4.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 17:00:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"13:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.8,"0.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 20:15:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2252","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202106011153:SR","Sample-Routine","WATER",NA,2021-06-01,"11:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-WRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-06-01 18:53:00,NA,"Whiterocks River 2","River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"2253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.47,"1.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:00:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"09:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.426,"0.426","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 16:50:00,NA,"MANTUA RES AB DAM 01","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C","Sample-Routine","WATER",NA,2021-04-25,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.209,"0.209","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-25 21:00:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904900-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.54,"2.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:20:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"15:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.707,"0.707","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 22:10:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903699-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:55:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903950-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:40:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903770-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 20:05:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:00:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990555-0420-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-20,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 15:00:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-24,"13:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 20:41:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908281-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.999,"0.999","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:30:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.28,"6.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 19:55:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997675-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"11:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 18:19:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.103,"0.103","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 22:15:00,NA,"INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903060-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.57,"4.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 22:00:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.469,"0.469","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 20:30:00,NA,"DEER CK AB CNFL/ E FK SEVIER R","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:45:00,NA,"N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2271","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995075-0112-LAB","Sample-Routine","WATER",NA,2021-01-12,"10:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.57,"3.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-12 17:31:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-17,"09:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.579,"0.579","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-17 16:00:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903507-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.506,"0.506","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:15:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-24,"13:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.376,"0.376","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-24 20:30:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.119,"0.119","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 21:45:00,NA,"Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-18,"13:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:36:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"16:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.378,"0.378","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 23:50:00,NA,"SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904510-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.65,"2.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:05:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910250-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"12:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 19:31:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"10:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.274,"0.274","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 17:32:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C","Sample-Routine","WATER",NA,2021-03-25,"16:25:00","MST",NA,NA,NA,63,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.429,"0.429","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 23:25:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903400-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.887,"0.887","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:05:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.381,"0.381","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 20:35:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902941-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.699,"0.699","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 22:00:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904900-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.28,"3.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:40:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-10,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-11 00:00:00,NA,"San Pitch River NPS QAQC Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:45:00,NA,"N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.537,"0.537","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 21:30:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908165-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.366,"0.366","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:00:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901600-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.8,"1.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 18:50:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901200-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.21,"2.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:45:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2292","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996680-0216-LAB","Sample-Routine","WATER",NA,2021-02-16,"11:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.452,"0.452","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-16 18:22:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-5910160-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"12:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 19:43:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.89,"9.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 21:00:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904720-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.03,"4.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 21:15:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"16:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.609,"0.609","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 23:51:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901180-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 16:00:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-03,"10:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.205,"0.205","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:45:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.529,"0.529","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 16:50:00,NA,"CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904800-0112-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-12,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.909,"0.909","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:10:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903507-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.467,"0.467","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 19:00:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2302","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996022-0317-LAB","Sample-Routine","WATER",NA,2021-03-17,"11:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.97,"2.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-03-17 18:49:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905200-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.233,"0.233","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:08:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4997250-0126-4-C","Sample-Routine","WATER",NA,2021-01-26,"11:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-02-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-01-26 18:42:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0310-4/1-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-10,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901432-0111-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-01-11,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.27,"4.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:15:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904510-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.39,"2.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:25:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903820-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.56,"1.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 16:20:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905440-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.426,"0.426","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 20:20:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949930-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.152,"0.152","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:40:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901225-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.2,"2.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 17:20:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.66,"2.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:20:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-10,"14:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.778,"0.778","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 21:22:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-17,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 21:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903190-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:15:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C","Sample-Routine","WATER",NA,2021-01-15,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.406,"0.406","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 21:10:00,NA,"SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900510-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.535,"0.535","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 22:00:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902050-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.02,"2.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:40:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-18,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.342,"0.342","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 18:50:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"12:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910626",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.888,"0.888","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 19:27:00,NA,"Spring Creek 125m upstream of confluence with Main Creek","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4039100000","-111.4570200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"14:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.578,"0.578","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:33:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-5984855-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.76,"8.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 16:15:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C","Sample-Routine","WATER",NA,2021-03-22,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.8,"3.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-22 17:25:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904900-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.27,"3.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 18:40:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905640-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:35:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905670-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"16:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.493,"0.493","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 23:20:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-5906850-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 17:10:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908745-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.611,"0.611","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 21:20:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905940-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.13,"4.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:00:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905700-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"16:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.177,"0.177","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 23:20:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C","Sample-Routine","WATER",NA,2021-03-03,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-03 19:00:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901600-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.704,"0.704","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:05:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.12,"3.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:50:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-23-C","Sample-Routine","WATER",NA,2021-05-20,"11:09:00","MST",NA,NA,NA,11,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-20 18:09:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903060-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.88,"4.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 21:40:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C","Sample-Routine","WATER",NA,2021-01-15,"14:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.435,"0.435","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-15 21:24:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"13:40:00","MST",NA,NA,NA,1.67,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.11,"2.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 20:40:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908280-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.256,"0.256","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:15:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C","Sample-Routine","WATER",NA,2021-02-24,"09:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.277,"0.277","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-24 16:27:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.105,"0.105","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 22:00:00,NA,"N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902940-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.526,"0.526","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 21:30:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:00:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990373-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.636,"0.636","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 16:35:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905580-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.967,"0.967","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 21:00:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4903150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.459,"0.459","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:30:00,NA,"NEWTON RES UPPER LAKE 03","Lake",NA,"16010202",NA,NA,NA,NA,"41.9121500000","-111.9930100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908165-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.486,"0.486","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:45:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4906400-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.272,"0.272","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:30:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.36,"2.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 19:20:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905400-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.874,"0.874","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:30:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-23,"14:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.51,"0.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 21:49:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.546,"0.546","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 18:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904300-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.481,"0.481","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 18:10:00,NA,"HIGH CK @ U91 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.361,"0.361","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 22:00:00,NA,"COMB WASH BL FISH CK","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3841600000","-109.6684600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-30,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933972",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.272,"0.272","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 16:30:00,NA,"WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970","River/Stream","Replicate of 4933970","14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0608-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-08,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 15:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4906400-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.152,"0.152","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 22:30:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"14:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.227,"0.227","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:16:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926361-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"14:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.257,"0.257","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 21:28:00,NA,"Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902710-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",15,"15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:45:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"13:40:00","MST",NA,NA,NA,1.67,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.65,"1.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 20:40:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-15,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.713,"0.713","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 19:15:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904340-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.72,"2.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:20:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900470-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 19:30:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905440-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"15:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.21,"0.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 22:55:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.81,"3.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 18:50:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.15,"0.15","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 18:00:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908170-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.756,"0.756","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:10:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210331-4995710-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"10:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-31 17:42:00,NA,"DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990700-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:00:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997330-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"11:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 18:08:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908168-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.15,"1.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 19:30:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904800-0209-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-09,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.41,"1.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:10:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903699-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.86,"2.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 17:10:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903080-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.64,"3.64","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 21:30:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.52,"1.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 17:55:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990997-0223-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-23,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.148,"0.148","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:45:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903950-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.77,"9.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 19:10:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901980-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:45:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C","Sample-Routine","WATER",NA,2021-03-17,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.416,"0.416","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-17 19:20:00,NA,"Powell Slough WMA South Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2635300000","-111.7404600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"16:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.367,"0.367","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 23:50:00,NA,"SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0209-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-09,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905740-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.401,"0.401","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 21:50:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.61,"3.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 21:30:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C","Sample-Routine","WATER",NA,2021-03-29,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.233,"0.233","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-29 19:55:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4906400-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.32,"0.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:30:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990996-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.146,"0.146","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 17:40:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905090-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",19.2,"19.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:50:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904726-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:00:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904990-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 20:00:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.558,"0.558","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 20:10:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901200-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.08,"2.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:10:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905000-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 18:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C","Sample-Routine","WATER",NA,2021-03-26,"12:00:00","MST",NA,NA,NA,0.97,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952917","This sampling event was originally meant to be sampled at ""4952370- COLORADO R AB DARK CANYON"" as part of cooperator sampling conducted by the Bureau of Reclamation; however, due to lower water levels, the actual sample was taken at a site ~15 miles away from 4952370. This sample site (i.e., 5952917) was created to capture the data from this sampling event. Site was sampled like a river (i.e., grab sample as ooposed to the typical depth integrated sample for lake sites) due to the low water levels.",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.533,"0.533","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-26 19:00:00,NA,"Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2394","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996020-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.65,"4.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 21:45:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904990-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 18:40:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905940-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.53,"3.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:20:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C","Sample-Routine","WATER",NA,2021-03-25,"09:00:00","MST",NA,NA,NA,0.66,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.607,"0.607","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-25 16:00:00,NA,"SAN JUAN R AB LAKE POWELL","River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905441-0209-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-09,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.299,"0.299","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:50:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2399","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996020-0113-LAB","Sample-Routine","WATER",NA,2021-01-13,"11:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.85,"4.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-01-13 18:59:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905625-0113-4-C","Sample-Routine","WATER",NA,2021-01-13,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905625",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.56,"0.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-13 18:10:00,NA,"Little Bear River at 4700 S xing below RR bridge","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904340-0223-4-C","Sample-Routine","WATER",NA,2021-02-23,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.83,"1.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 18:40:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"12:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4995580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.293,"0.293","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 19:24:00,NA,"SPANISH FORK R AB UTAH L (LAKESHORE)","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-30,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933972",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.26,"0.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 16:30:00,NA,"WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970","River/Stream","Replicate of 4933970","14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0222-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-22,"17:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-23 00:40:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905630-0310-4-C","Sample-Routine","WATER",NA,2021-03-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.382,"0.382","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-10 19:00:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905070-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",28.1,"28.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 16:40:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210331-4995730-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-31 17:45:00,NA,"SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904490-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 18:55:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908168-0111-4-C","Sample-Routine","WATER",NA,2021-01-11,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.21,"0.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-11 19:30:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C","Sample-Routine","WATER",NA,2021-02-25,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.532,"0.532","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-25 20:40:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904740-0209-4-C","Sample-Routine","WATER",NA,2021-02-09,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",18.2,"18.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-09 19:20:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.9,"9.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 20:00:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C","Sample-Routine","WATER",NA,2021-01-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.28,"4.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-25 17:30:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210331-4995600-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"09:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-31 16:37:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,0.95,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.691,"0.691","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:40:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908170-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.313,"0.313","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 20:30:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.679,"0.679","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 18:40:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C","Sample-Routine","WATER",NA,2021-01-19,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.84,"3.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-19 21:00:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905052-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.53,"1.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:20:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"13:30:00","MST",NA,NA,NA,1.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.53,"1.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 20:30:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-27,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.602,"0.602","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:10:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C","Sample-Routine","WATER",NA,2021-03-31,"09:35:00","MST",NA,NA,NA,4.1,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.348,"0.348","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 16:35:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904740-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",16.4,"16.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:40:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0210-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-02-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 21:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990680-0316-4-C","Sample-Routine","WATER",NA,2021-03-16,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.273,"0.273","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 16:55:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4948870-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"09:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.458,"0.458","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:58:00,NA,"OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C","Sample-Routine","WATER",NA,2021-03-18,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.551,"0.551","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 19:15:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902710-0216-4-C","Sample-Routine","WATER",NA,2021-02-16,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",15.3,"15.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 21:15:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-15,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 23:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-03-31,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.354,"0.354","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 18:10:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908281-0308-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-08,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.255,"0.255","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:20:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901930-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.427,"0.427","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:00:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C","Sample-Routine","WATER",NA,2021-03-31,"10:50:00","MST",NA,NA,NA,4.2,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.623,"0.623","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 17:50:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908168-0208-4-C","Sample-Routine","WATER",NA,2021-02-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.445,"0.445","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-08 19:30:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C","Sample-Routine","WATER",NA,2021-03-31,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953205",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.107,"0.107","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-31 21:30:00,NA,"N FK MULE CYN CK AB HIGHWAY","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C","Sample-Routine","WATER",NA,2021-02-10,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.24,"1.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-10 22:00:00,NA,"SAN PITCH R AB MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C","Sample-Routine","WATER",NA,2021-03-16,"10:50:00","MST",NA,NA,NA,2.89,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.609,"0.609","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-16 17:50:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C","Sample-Routine","WATER",NA,2021-03-27,"09:15:00","MST",NA,NA,NA,36,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.354,"0.354","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-27 16:15:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901050-0216-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-16,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.24,"1.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 18:40:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908280-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.213,"0.213","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 19:15:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-18 20:15:00,NA,"BLM Moab Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997670-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"11:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 18:37:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902941-0216-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-02-16,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.556,"0.556","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-16 22:45:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903260-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.906,"0.906","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:55:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990373-0120-4-C","Sample-Routine","WATER",NA,2021-01-20,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.05,"1.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-20 17:00:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905400-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.723,"0.723","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:40:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2447","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996190-0217-LAB","Sample-Routine","WATER",NA,2021-02-17,"12:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.53,"5.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-02-17 19:46:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C","Sample-Routine","WATER",NA,2021-02-22,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.805,"0.805","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-02-22 19:00:00,NA,"E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905052-0309-4-C","Sample-Routine","WATER",NA,2021-03-09,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 17:20:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903191-0309-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-03-09,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.56,"1.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-09 21:20:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910160-0324-4-C","Sample-Routine","WATER",NA,2021-03-24,"13:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","CUWCD","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-04-05,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-03-24 20:11:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902000-0308-4-C","Sample-Routine","WATER",NA,2021-03-08,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.74,"2.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-08 17:50:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905070-0112-4-C","Sample-Routine","WATER",NA,2021-01-12,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",21.3,"21.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-01-12 16:40:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C","Sample-Routine","WATER",NA,2021-03-15,"11:00:00","MST",NA,NA,NA,1.57,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-03-15 18:00:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.459,"0.459","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 18:30:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903500-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.665,"0.665","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:43:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902710-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",22.3,"22.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:15:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.229,"0.229","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 18:00:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905650-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.769,"0.769","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:00:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-03,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 23:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0406-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-06,"17:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 00:45:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.217,"0.217","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:35:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0607-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-07,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.119,"0.119","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:15:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"17:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.789,"0.789","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 00:05:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0608-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-08,"16:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 23:05:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C","Sample-Routine","WATER",NA,2021-06-03,"10:50:00","MST",NA,NA,NA,8.03,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.115,"0.115","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:50:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.265,"0.265","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:40:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C","Sample-Routine","WATER",NA,2021-05-27,"11:20:00","MST",NA,NA,NA,5.19,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.562,"0.562","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:20:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.225,"0.225","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:00:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904510-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.63,"2.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:15:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.787,"0.787","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:35:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908500-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.553,"0.553","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 16:15:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904724-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.57,"2.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:40:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901225-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.28,"3.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:35:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949533",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.095,"0.095","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 22:30:00,NA,"Deep Creek at Road Crossing 1.3 miles above confluence w/Pine Creek","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0472700000","-112.0197700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908165-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.551,"0.551","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:45:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C","Sample-Routine","WATER",NA,2021-06-01,"14:00:00","MST",NA,NA,NA,11.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.349,"0.349","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:00:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.914,"0.914","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:30:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.712,"0.712","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:13:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C","Sample-Routine","WATER",NA,2021-04-23,"10:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.538,"0.538","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 17:08:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901431-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.74,"4.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:05:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904840-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.61,"3.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 16:50:00,NA,"DITCH AB EA MILLER SC-12","Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-30,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 15:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908165-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.617,"0.617","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 20:00:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902940-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.385,"0.385","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:50:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:30:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905200-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.337,"0.337","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:08:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"10:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.307,"0.307","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:35:00,NA,"MANTUA RES N MIDLAKE 03","Lake",NA,"16010204",NA,NA,NA,NA,"41.5082700000","-111.9299400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900511-0505-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-05,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.577,"0.577","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 20:40:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904110-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.19,"2.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 16:20:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908140-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.211,"0.211","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:15:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-5906850-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.272,"0.272","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 16:30:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990360-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.437,"0.437","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 18:10:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-29,"10:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.395,"0.395","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:05:00,NA,"PELICAN LAKE 01 W MIDLAKE","Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"10:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",97.1,"97.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 17:29:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"13:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.366,"0.366","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:37:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-16,"10:48:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 17:48:00,NA,"DEER CREEK RES UPPER END 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2498","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996190-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.76,"6.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 17:05:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903500-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.52,"0.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:26:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901431-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.93,"5.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:20:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926355-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"13:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.305,"0.305","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 20:33:00,NA,"South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"2502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 21:30:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"16:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.342,"0.342","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 23:15:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905198-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"08:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.118,"0.118","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 15:30:00,NA,"Logan River at Water Lab lower bridge","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.108,"0.108","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 22:45:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.98,"9.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:50:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"11:00:00","MST",NA,NA,NA,2.766,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.587,"0.587","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 18:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.88,"9.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:50:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"16:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.235,"0.235","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 23:15:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904810-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 18:15:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-23,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.682,"0.682","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 20:10:00,NA,"UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"14:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.35,"0.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 21:38:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902940-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.572,"0.572","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 22:40:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"09:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.825,"0.825","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 16:30:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C","Sample-Routine","WATER",NA,2021-04-23,"10:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.508,"0.508","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 17:08:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.451,"0.451","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 17:35:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-25,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.406,"0.406","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 18:05:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903699-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.693,"0.693","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 17:55:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C","Sample-Routine","WATER",NA,2021-06-16,"10:20:00","MST",NA,NA,NA,89,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.43,"0.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 17:20:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905301-0504-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-04,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.303,"0.303","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:00:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-27-C","Sample-Routine","WATER",NA,2021-06-09,"10:38:00","MST",NA,NA,NA,6,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-22,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-09 17:38:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"13:25:00","MST",NA,NA,NA,1.299,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.543,"0.543","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 20:25:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901050-0517-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-17,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.45,"1.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:50:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C","Sample-Routine","WATER",NA,2021-06-01,"10:00:00","MST",NA,NA,NA,4.95,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.424,"0.424","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:00:00,NA,"MANTUA RES AB DAM 01","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.468,"0.468","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 17:00:00,NA,"CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"15:10:00","MST",NA,NA,NA,1.908,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.873,"0.873","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 22:10:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901950-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.393,"0.393","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:40:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.392,"0.392","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:00:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-22-C","Sample-Routine","WATER",NA,2021-05-06,"09:10:00","MST",NA,NA,NA,3,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 16:10:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.458,"0.458","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 17:40:00,NA,"CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"11:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.282,"0.282","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 18:22:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908280-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.961,"0.961","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:20:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-17,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 22:45:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"10:45:00","MST",NA,NA,NA,2.405,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.53,"0.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:45:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.276,"0.276","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 17:00:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990700-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.19,"0.19","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:40:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905040-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.474,"0.474","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:50:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905590-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:30:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.33,"2.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:00:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C","Sample-Routine","WATER",NA,2021-06-22,"12:55:00","MST",NA,NA,NA,6.99,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.312,"0.312","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:55:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902040-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.75,"3.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:35:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.62,"3.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 17:00:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C","Sample-Routine","WATER",NA,2021-04-12,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.088,"0.088","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:00:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908500-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.95,"0.95","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:45:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995251",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",19.6,"19.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 21:55:00,NA,"Orem WRF GW OUTFALL-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2768800000","-111.7440100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C","Sample-Routine","WATER",NA,2021-05-27,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.41,"1.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:25:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904240-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.418,"0.418","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:40:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2548","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994952-0413-LAB","Sample-Routine","WATER",NA,2021-04-13,"08:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-13 15:52:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-28,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 17:10:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-28-C","Sample-Routine","WATER",NA,2021-05-26,"10:16:00","MST",NA,NA,NA,31,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 17:16:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994650-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"08:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 15:20:00,NA,"DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-07,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955791",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 22:15:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790","River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2553","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996410-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.591,"0.591","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 16:47:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-29,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.594,"0.594","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 21:35:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903080-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.19,"5.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:51:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C","Sample-Routine","WATER",NA,2021-05-25,"12:15:00","MST",NA,NA,NA,40.06,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.221,"0.221","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 19:15:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C","Sample-Routine","WATER",NA,2021-05-26,"10:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4955312",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.201,"0.201","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 17:09:00,NA,"Oak Creek 0.25 mile ab diversion in Capitol Reef National Park","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0840100000","-111.1409800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904770-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",37.5,"37.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 16:40:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-21,"13:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.095,"0.095","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:31:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-10,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-11 01:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908350-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.766,"0.766","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:10:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901790-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.427,"0.427","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:10:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901225-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.877,"0.877","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:50:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.72,"1.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 19:40:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905000-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.658,"0.658","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990640-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.637,"0.637","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:00:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904250-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 17:25:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-5984855-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.96,"3.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 16:45:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4905770-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.368,"0.368","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 22:15:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2570","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995467-0413-LAB","Sample-Routine","WATER",NA,2021-04-13,"14:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.41,"1.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-13 21:49:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.547,"0.547","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:45:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-10,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.185,"0.185","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 21:45:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-24-C","Sample-Routine","WATER",NA,2021-06-02,"09:50:00","MST",NA,NA,NA,13,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 16:50:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-03,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 23:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904810-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.91,"1.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 17:15:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C","Sample-Routine","WATER",NA,2021-05-25,"13:50:00","MST",NA,NA,NA,47.14,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.206,"0.206","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 20:50:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904740-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.86,"5.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 20:00:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901980-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.673,"0.673","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:10:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-23-C","Sample-Routine","WATER",NA,2021-06-15,"10:14:00","MST",NA,NA,NA,8,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 17:14:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901930-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.632,"0.632","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:20:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908160-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.189,"0.189","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:30:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902941-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.434,"0.434","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 23:00:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990987-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.36,"2.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:40:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926203-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.333,"0.333","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 19:45:00,NA,"Huff Ck at Flat Rock","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904870-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.39,"4.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:20:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.616,"0.616","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 20:00:00,NA,"E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905700-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:30:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210511-4936420-0511-29-C","Sample-Routine","WATER",NA,2021-05-11,"10:30:00","MST",NA,NA,NA,20,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-11 17:30:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-26-C","Sample-Routine","WATER",NA,2021-05-06,"09:17:00","MST",NA,NA,NA,20,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 16:17:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926360-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.296,"0.296","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:20:00,NA,"CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"2591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0405-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-05,"17:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 00:33:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904726-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.16,"5.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:40:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-24,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-24 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.9,"11.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 20:25:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.696,"0.696","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:40:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904110-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.922,"0.922","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 17:30:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"12:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.293,"0.293","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 19:32:00,NA,"MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905740-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.426,"0.426","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 22:15:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905400-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.641,"0.641","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:30:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904340-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"12:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.12,"1.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:28:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210506-5937650-0506-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-06,"12:29:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 19:29:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990640-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.424,"0.424","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 16:45:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902040-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.34,"4.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:35:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902700-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.21,"2.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 20:00:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901600-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.558,"0.558","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:45:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.742,"0.742","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:25:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-12,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.702,"0.702","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:20:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2608","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4917712-0511-LAB","Sample-Routine","WATER",NA,2021-05-11,"15:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.58,"4.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-11 22:41:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-29,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.421,"0.421","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 18:10:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",16.2,"16.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 21:00:00,NA,"OREM WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990680-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.237,"0.237","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 16:30:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:50:00","MST",NA,NA,NA,8.94,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.424,"0.424","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:50:00,NA,"NEWTON RES MIDLAKE 02","Lake",NA,"16010202",NA,NA,NA,NA,"41.9066000000","-111.9830100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908165-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.667,"0.667","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:20:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997675-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"11:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 18:17:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901431-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.79,"4.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 19:15:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.02,"2.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 18:20:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C","Sample-Routine","WATER",NA,2021-05-01,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.763,"0.763","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-01 20:15:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.258,"0.258","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:35:00,NA,"FISH CK AB SCOFIELD RES","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.839,"0.839","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:30:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0406-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-06,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908170-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.797,"0.797","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:10:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-21,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996906",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.38,"0.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:40:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905","River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"11:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 18:51:00,NA,"Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905090-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.61,"6.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:00:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"14:50:00","MST",NA,NA,NA,2.053,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.915,"0.915","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:50:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904250-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.44,"0.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 17:40:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.03,"4.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 18:30:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900510-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 20:45:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926380-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"08:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.253,"0.253","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 15:58:00,NA,"CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"2630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-18,"18:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.132,"0.132","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-19 01:35:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903191-0518-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-18,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:50:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904340-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 19:25:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"10:40:00","MST",NA,NA,NA,1.793,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.784,"0.784","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:40:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"13:00:00","MST",NA,NA,NA,2.541,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.66,"0.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 20:00:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2635","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996550-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"09:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",20,"20","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 16:04:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903260-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:40:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901180-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.974,"0.974","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:10:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901975-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.84,"2.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 16:55:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903180-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:35:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905000-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.861,"0.861","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:10:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.728,"0.728","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:45:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5910160-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"13:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 20:01:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.559,"0.559","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:01:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905740-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.255,"0.255","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:20:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-29,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.509,"0.509","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:00:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C","Sample-Routine","WATER",NA,2021-04-02,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-02 19:00:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"13:50:00","MST",NA,NA,NA,0.929,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.52,"0.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 20:50:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-12,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.727,"0.727","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:50:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905630-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:00:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C","Sample-Routine","WATER",NA,2021-05-25,"12:15:00","MST",NA,NA,NA,40.06,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.217,"0.217","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 19:15:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997300-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 18:40:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905440-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.254,"0.254","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:50:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4953193-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953193",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.104,"0.104","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 21:00:00,NA,"ARCH CK 1 MI AB CANYON MOUTH","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"13:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.268,"0.268","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 20:50:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903507-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.369,"0.369","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:00:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-01,"14:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.26,"0.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:10:00,NA,"HYRUM RES AB DAM 01 Replicate of 5901670","Lake","Replicate of 5901670","16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4903140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.528,"0.528","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:45:00,NA,"NEWTON RES MIDLAKE 02","Lake",NA,"16010202",NA,NA,NA,NA,"41.9066000000","-111.9830100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904990-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.951,"0.951","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:50:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C","Sample-Routine","WATER",NA,2021-04-23,"14:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.653,"0.653","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 21:56:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-25,"13:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.269,"0.269","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 20:20:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4955252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 15:50:00,NA,"Johnson Creek headwaters above Cooley Gulch and ab Johnson Creek Rd xing","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.8281400000","-109.4833400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901700-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.612,"0.612","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:40:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908130-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.258,"0.258","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:20:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946750-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.819,"0.819","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:15:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4949070-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.534,"0.534","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 20:05:00,NA,"OTTER CK AT U62 XING N OF KOOSHAREM","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5641400000","-111.8493600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996890-0623-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-23,"14:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 21:07:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901432-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.83,"5.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:25:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 20:30:00,NA,"BITTER CREEK AT MOUTH","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9702400000","-109.4123500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908140-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.278,"0.278","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:30:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908140-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.213,"0.213","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 18:30:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905078-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:30:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904940-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.7,"11.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:50:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926350-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"15:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.33,"1.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 22:51:00,NA,"CHALK CK AT US189 XING","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"2674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903200-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.52,"1.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 23:00:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.211,"0.211","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 18:00:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908350-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.425,"0.425","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 17:40:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908281-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.302,"0.302","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:20:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"12:55:00","MST",NA,NA,NA,3.007,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.522,"0.522","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:55:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"10:45:00","MST",NA,NA,NA,2.066,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.802,"0.802","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:45:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.6,"11.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 20:25:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905780-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.31,"0.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:55:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926355-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.31,"0.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:28:00,NA,"South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-22-C","Sample-Routine","WATER",NA,2021-05-26,"10:03:00","MST",NA,NA,NA,2,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 17:03:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"09:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.873,"0.873","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 16:55:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.37,"1.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 20:30:00,NA,"BITTER CREEK AT MOUTH","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9702400000","-109.4123500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904870-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.502,"0.502","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 20:20:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.143,"0.143","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 18:30:00,NA,"Oak Creek above Oak Creek Dam","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-27,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.619,"0.619","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:50:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-28,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 17:30:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903770-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.546,"0.546","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 19:45:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997330-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 17:56:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990650-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.271,"0.271","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:50:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908152-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.761,"0.761","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:40:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.261,"0.261","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 18:20:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"12:15:00","MST",NA,NA,NA,2.655,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.857,"0.857","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:15:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-29,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:50:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905640-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.37,"1.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:20:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"10:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.59,"0.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 17:10:00,NA,"CUTLER RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"14:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.646,"0.646","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:30:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904870-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.27,"4.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:20:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904900-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.933,"0.933","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:00:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2702","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995575-0511-LAB","Sample-Routine","WATER",NA,2021-05-11,"14:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.149,"0.149","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-11 21:23:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-5984855-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.72,"3.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 16:45:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-09,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.16,"0.16","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 20:20:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2705","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995575-0615-LAB","Sample-Routine","WATER",NA,2021-06-15,"15:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)","Below Reporting Limit","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-15 22:55:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-21,"17:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.126,"0.126","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 00:40:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"13:15:00","MST",NA,NA,NA,1.197,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.964,"0.964","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 20:15:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905078-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.264,"0.264","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:30:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997330-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"11:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 18:18:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990996-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.25,"0.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:20:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"10:15:00","MST",NA,NA,NA,1.911,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.57,"0.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4932402-0629-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-29,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4932402",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 23:00:00,NA,"BLM Price Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4932810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.408,"0.408","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:30:00,NA,"PRICE R AB WILLOW CK (PRICE R COAL)","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7347800000","-110.8725300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"10:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 17:46:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"10:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.549,"0.549","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:45:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4900751-0621-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-21,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"10:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.095,"0.095","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 17:44:00,NA,"LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904340-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 19:40:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900510-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.637,"0.637","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:30:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 22:15:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908697-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.174,"0.174","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 18:10:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990987-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.72,"2.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:00:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905050-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.78,"6.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 17:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-14,"11:10:00","MST",NA,NA,NA,2.019,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.706,"0.706","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:10:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:30:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4944252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.32,"0.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 16:20:00,NA,"Mammoth Creek 0.1 mile bl Mammoth Creek Road crossing","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6271100000","-112.6431000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903820-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.604,"0.604","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 17:10:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-12,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.631,"0.631","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:20:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"13:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.549,"0.549","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 20:25:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C","Sample-Routine","WATER",NA,2021-05-02,"11:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.263,"0.263","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-02 18:57:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910250-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 19:20:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-29,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 23:30:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"12:25:00","MST",NA,NA,NA,1.764,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.945,"0.945","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:25:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-26,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.227,"0.227","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 17:40:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990373-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.604,"0.604","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:30:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904943-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.61,"3.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:20:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901100-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:55:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"11:00:00","MST",NA,NA,NA,2.553,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.656,"0.656","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:00:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901790-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.693,"0.693","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 16:35:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902720-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.75,"2.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:55:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908100-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.7,"0.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 21:15:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4905640-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 23:00:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910160-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 20:05:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C","Sample-Routine","WATER",NA,2021-06-15,"12:05:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.553,"0.553","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:05:00,NA,"CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C","Sample-Routine","WATER",NA,2021-05-19,"08:15:00","MST",NA,NA,NA,104.41,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.299,"0.299","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 15:15:00,NA,"FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904250-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:25:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946980-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:26:00,NA,"SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903030-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:40:00,NA,"NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C","Sample-Routine","WATER",NA,2021-05-26,"10:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4955312",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.147,"0.147","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 17:09:00,NA,"Oak Creek 0.25 mile ab diversion in Capitol Reef National Park","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0840100000","-111.1409800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904490-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.879,"0.879","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:25:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908500-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.573,"0.573","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 16:15:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.132,"0.132","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 17:00:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"10:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.01,"2.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 17:56:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.144,"0.144","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 22:45:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926355-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.278,"0.278","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 21:55:00,NA,"South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903510-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.243,"0.243","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 19:15:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.712,"0.712","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 18:30:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903180-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 20:10:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"12:10:00","MST",NA,NA,NA,1.009,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.786,"0.786","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:10:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 20:15:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904940-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.56,"5.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 19:45:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.65,"0.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:15:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900511-0407-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-07,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.666,"0.666","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:40:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902000-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.84,"7.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:10:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"13:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.711,"0.711","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:40:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.867,"0.867","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:13:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-21,"17:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 00:45:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"12:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.831,"0.831","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:20:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.97,"1.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:20:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908745-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.362,"0.362","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:30:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2771","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4917712-0817-LAB","Sample-Routine","WATER",NA,2021-08-17,"16:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.46,"3.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-17 23:05:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902710-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.4,"9.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:40:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4951850-0502-4-C","Sample-Routine","WATER",NA,2021-05-02,"13:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.098,"0.098","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-02 20:28:00,NA,"PARIA R AT US89 XING","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949702-0407-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-07,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949702",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.166,"0.166","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 16:55:00,NA,"MAMMOTH CK AT US89 XING Replicate of 4949700","River/Stream","Replicate of 4949700","16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0519-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-19,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 01:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901050-0517-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-17,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:50:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901975-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.59,"2.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:20:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904940-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.9,"5.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 19:45:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904920-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.57,"5.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:47:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2780","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996003-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"12:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.96,"2.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 19:42:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"12:15:00","MST",NA,NA,NA,1.657,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.727,"0.727","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:15:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903507-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.56,"0.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:35:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-10,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-11 01:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904810-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.34,"1.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 18:15:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"14:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.302,"0.302","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 21:31:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901180-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.3,"2.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:55:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.584,"0.584","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 20:00:00,NA,"E FK SEVIER R AB CNFL/ DEER CK","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2788","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996540-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"10:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.6,"10.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 17:28:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-21,"10:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.274,"0.274","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 17:55:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904300-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.183,"0.183","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 18:45:00,NA,"HIGH CK @ U91 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C","Sample-Routine","WATER",NA,2021-09-15,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",18.8,"18.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 19:15:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2792","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995075-0511-LAB","Sample-Routine","WATER",NA,2021-05-11,"10:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.98,"2.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-11 17:07:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.48,"2.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 21:50:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904770-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",19.3,"19.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 17:00:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905780-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.328,"0.328","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:55:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905301-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.206,"0.206","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:50:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.564,"0.564","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:33:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4998130-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 17:57:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4949040-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.48,"0.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:40:00,NA,"OTTER CK AT CR XING NE OF KOOSHAREM","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5202600000","-111.8638000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990373-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.517,"0.517","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 16:10:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"10:15:00","MST",NA,NA,NA,1.337,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.15,"1.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:15:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904330-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.414,"0.414","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 21:10:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2803","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996680-0413-LAB","Sample-Routine","WATER",NA,2021-04-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.381,"0.381","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-13 20:00:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905630-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.514,"0.514","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:40:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-29,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.506,"0.506","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:40:00,NA,"PELICAN LAKE 02 E MIDLAKE","Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990700-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.17,"0.17","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:20:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C","Sample-Routine","WATER",NA,2021-04-12,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:00:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"12:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.558,"0.558","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:05:00,NA,"NEWTON RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.764,"0.764","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 20:30:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C","Sample-Routine","WATER",NA,2021-09-05,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.137,"0.137","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-05 21:00:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.608,"0.608","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 22:50:00,NA,"ESCALANTE R AB LAKE POWELL","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905078-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.711,"0.711","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:30:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4900751-0708-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 22:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"09:40:00","MST",NA,NA,NA,1.423,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.929,"0.929","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 16:40:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-5906850-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.383,"0.383","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 18:50:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908170-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.158,"0.158","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 21:00:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900470-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.81,"0.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 20:15:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"10:45:00","MST",NA,NA,NA,2.405,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.604,"0.604","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:45:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926380-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.406,"0.406","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 16:35:00,NA,"CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C","Sample-Routine","WATER",NA,2021-05-21,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.226,"0.226","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-21 16:50:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2821","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-RKD:202105261247:SR","Sample-Routine","WATER",NA,2021-05-26,"12:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-RKD",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-06-11,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 19:47:00,NA,"Rock Creek","River/Stream","Knights Diversion below 3rd bridge.","14060003",NA,NA,NA,NA,"40.3110798300","-110.4938520000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NONE","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"2822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:00:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"16:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 23:25:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.5,"7.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 22:00:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",12,"12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:50:00,NA,"DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2826","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996560-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"09:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",30,"30","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 16:23:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"10:05:00","MST",NA,NA,NA,27.8,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 17:05:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926361-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.369,"0.369","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:15:00,NA,"Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"2829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904720-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.919,"0.919","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:45:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905135-0622-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-22,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:35:00,NA,"Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-29-C","Sample-Routine","WATER",NA,2021-05-26,"10:26:00","MST",NA,NA,NA,60,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 17:26:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4906400-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.85,"0.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 20:40:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904990-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.884,"0.884","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:50:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997300-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"11:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 18:41:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4948930-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.499,"0.499","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 20:40:00,NA,"OTTER CK AT CR XING 2MI S E OF GREENWICH","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.4160900000","-111.9029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990996-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.203,"0.203","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:20:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"15:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.17,"6.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 22:10:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905195-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.305,"0.305","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 16:45:00,NA,"LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.06,"4.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 20:20:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905520-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.19,"7.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 17:40:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904943-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.19,"3.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:40:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903501-0518-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-18,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.538,"0.538","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:25:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903770-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.466,"0.466","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 19:45:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905740-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.377,"0.377","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 22:15:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8,"8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 20:10:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"14:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.537,"0.537","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:45:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C","Sample-Routine","WATER",NA,2021-06-23,"13:25:00","MST",NA,NA,NA,7.04,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.66,"0.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 20:25:00,NA,"UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903400-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.01,"1.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:05:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0609-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-09,"08:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 15:15:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-19,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933972",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.33,"0.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:00:00,NA,"WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970","River/Stream","Replicate of 4933970","14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905200-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.212,"0.212","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:45:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910020-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"14:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.2,"2.2","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 21:01:00,NA,"LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902000-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.17,"6.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:20:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.45,"1.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 22:20:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-5906850-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.39,"0.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 18:50:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908130-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.265,"0.265","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:40:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903260-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.709,"0.709","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:00:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210602-5937650-0602-27-C","Sample-Routine","WATER",NA,2021-06-02,"12:34:00","MST",NA,NA,NA,8,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 19:34:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"13:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.24,"0.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 20:47:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 22:20:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"09:45:00","MST",NA,NA,NA,1.488,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.906,"0.906","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 16:45:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"13:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.322,"0.322","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 20:47:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C","Sample-Routine","WATER",NA,2021-05-01,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-01 20:15:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901700-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.472,"0.472","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:40:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946980-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.5,"7.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 17:10:00,NA,"SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949583",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.111,"0.111","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 21:15:00,NA,"Deer Creek above Mountain Spring Fork and below BLM/USFS boundary","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0005700000","-112.0554900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"11:30:00","MST",NA,NA,NA,2.449,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.706,"0.706","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997250-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"12:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 19:12:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917390-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"11:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.61,"0.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:45:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905590-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.08,"1.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:30:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903400-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.847,"0.847","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:05:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996780-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"15:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 22:26:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905540-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",45.7,"45.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 16:30:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949670-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.573,"0.573","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:40:00,NA,"SEVIER R @ PANGUITCH AIRPORT RD XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8516400000","-112.4360400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903770-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 20:05:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904720-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.39,"6.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:55:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.997,"0.997","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:25:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903699-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.507,"0.507","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:30:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"10:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.94,"1.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 17:56:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C","Sample-Routine","WATER",NA,2021-06-21,"11:35:00","MST",NA,NA,NA,46.04,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.246,"0.246","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 18:35:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-10,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.099,"0.099","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 22:50:00,NA,"N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990360-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.3,"0.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:20:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C","Sample-Routine","WATER",NA,2021-06-17,"15:20:00","MST",NA,NA,NA,40.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.629,"0.629","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-17 22:20:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.085,"0.085","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 17:30:00,NA,"Oak Creek above Oak Creek Dam","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4948870-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.28,"1.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 21:40:00,NA,"OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901180-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:10:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.246,"0.246","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 19:10:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-14,"11:10:00","MST",NA,NA,NA,2.019,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.768,"0.768","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:10:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.56,"7.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 22:00:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"12:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996880",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 19:02:00,NA,"Spring Creek piped diversion above Roundy Lane","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.671,"0.671","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:24:00,NA,"MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-28,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 17:30:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902900-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.362,"0.362","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:05:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2894","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996100-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.623,"0.623","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 18:35:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"2895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-29,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 22:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996830-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 22:05:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.359,"0.359","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:00:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905070-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",22.6,"22.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:10:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996810-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"14:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 21:43:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.48,"0.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 17:40:00,NA,"CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"14:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.229,"0.229","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:25:00,NA,"HYRUM RES MIDLAKE 02","Lake",NA,"16010203",NA,NA,NA,NA,"41.6193800000","-111.8593800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901431-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.98,"3.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 19:15:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C","Sample-Routine","WATER",NA,2021-08-05,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.368,"0.368","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-05 17:30:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908170-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.413,"0.413","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 20:30:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-28,"15:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.881,"0.881","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 22:15:00,NA,"MATT WARNER RES AB DAM","Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-27,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 21:10:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C","Sample-Routine","WATER",NA,2021-06-12,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.583,"0.583","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-12 19:00:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902720-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.55,"1.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 20:15:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990987-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.13,"2.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:40:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.793,"0.793","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:15:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900511-0505-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-05,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.685,"0.685","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 20:40:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905580-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1,"1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 20:00:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5910273-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"11:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 18:54:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903820-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:10:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904240-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.397,"0.397","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:40:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C","Sample-Routine","WATER",NA,2021-05-25,"13:50:00","MST",NA,NA,NA,47.14,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.215,"0.215","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 20:50:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.783,"0.783","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C","Sample-Routine","WATER",NA,2021-06-03,"10:50:00","MST",NA,NA,NA,8.03,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.175,"0.175","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:50:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:30:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-27,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.325,"0.325","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 21:00:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905200-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.34,"0.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 15:50:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.07,"3.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:10:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.141,"0.141","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 17:45:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904840-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.5,"3.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 16:50:00,NA,"DITCH AB EA MILLER SC-12","Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905090-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.58,"6.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:00:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.085,"0.085","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:30:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C","Sample-Routine","WATER",NA,2021-06-01,"14:05:00","MST",NA,NA,NA,18.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.433,"0.433","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:05:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C","Sample-Routine","WATER",NA,2021-06-03,"10:10:00","MST",NA,NA,NA,10.03,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.138,"0.138","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:10:00,NA,"PORCUPINE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"16010203",NA,NA,NA,NA,"41.5177200000","-111.7324400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C","Sample-Routine","WATER",NA,2021-06-11,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-11 19:45:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.568,"0.568","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 21:15:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4949040-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.593,"0.593","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 20:20:00,NA,"OTTER CK AT CR XING NE OF KOOSHAREM","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5202600000","-111.8638000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900511-0610-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.872,"0.872","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 21:00:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904724-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.14,"8.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:30:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905070-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",15,"15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:45:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.599,"0.599","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 18:10:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.8,"2.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 22:50:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990373-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.64,"0.64","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:30:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-10,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 21:45:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926363-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.297,"0.297","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:55:00,NA,"South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"2940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.47,"5.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 18:50:00,NA,"DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990650-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.442,"0.442","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:00:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.867,"0.867","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:00:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-17,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.545,"0.545","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 21:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:40:00","MST",NA,NA,NA,2.303,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.9,"0.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:40:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904870-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.63,"0.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 20:20:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946000-0406-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-04-06,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:10:00,NA,"San Pitch River NPS QAQC Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908170-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.273,"0.273","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 20:30:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",12.6,"12.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 20:40:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"13:15:00","MST",NA,NA,NA,1.197,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.59,"0.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 20:15:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C","Sample-Composite Without Parents","WATER",NA,2021-09-01,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088","Licor 1% depth at 18m; 6 Photic Zone samples taken at 1m, 5m, 8m, 11m, 14m, and 18m to a max depth of 18m; sample time = 11:00; vandorn; Field data from USGS platform station # 415642111172701",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.236,"0.236","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 18:00:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"14:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.812,"0.812","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:45:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C","Sample-Routine","WATER",NA,2021-09-01,"14:08:00","MST",NA,NA,NA,37,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.167,"0.167","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 21:08:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-14,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 23:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904720-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.17,"2.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 19:35:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.589,"0.589","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:05:00,NA,"MUD CREEK AB SCOFIELD RES","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-5906850-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.328,"0.328","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:15:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.67,"0.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 23:00:00,NA,"Saratoga Springs at Cedar Valley","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.607,"0.607","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:45:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C","Sample-Routine","WATER",NA,2021-04-23,"08:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.376,"0.376","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 15:49:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C","Sample-Routine","WATER",NA,2021-06-03,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.163,"0.163","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 16:45:00,NA,"E FK LITTLE BEAR R AB PORCUPINE RES","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5182700000","-111.7138200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-21,"14:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.719,"0.719","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 21:50:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990996-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.121,"0.121","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:15:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.92,"5.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:05:00,NA,"NEWTON CREEK AB CUTLER RESERVOIR","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8388200000","-111.9718900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4998140-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"10:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 17:47:00,NA,"WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905052-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.415,"0.415","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:40:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C","Sample-Routine","WATER",NA,2021-06-30,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.297,"0.297","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 16:30:00,NA,"WHITE R NEAR BONANZA AT U45 XING","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904900-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:00:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210527-4995710-0527-4-C","Sample-Routine","WATER",NA,2021-05-27,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-27 17:50:00,NA,"DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-26-C","Sample-Routine","WATER",NA,2021-06-15,"10:22:00","MST",NA,NA,NA,20,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 17:22:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5913630-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"13:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 20:16:00,NA,"PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908152-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.03,"1.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:40:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949640-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.497,"0.497","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:55:00,NA,"SEVIER R @ SANFORD ROAD XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.9419200000","-112.4166000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904943-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.72,"2.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 18:30:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-09,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.117,"0.117","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 15:45:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-01,"09:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900430",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.652,"0.652","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:20:00,NA,"MANTUA RES AB DAM 01 Replicate of 4900440","Lake","Replicate of 4900440","16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4944252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.334,"0.334","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 16:20:00,NA,"Mammoth Creek 0.1 mile bl Mammoth Creek Road crossing","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6271100000","-112.6431000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.182,"0.182","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 22:15:00,NA,"INDIAN CK AT Newspaper Rock and SHAY CANYON","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.174,"0.174","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:00:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904990-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.975,"0.975","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:10:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.478,"0.478","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 21:20:00,NA,"Clegg's Pond OUTFALL-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904510-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.24,"2.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:50:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904724-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.84,"8.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:30:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C","Sample-Routine","WATER",NA,2021-06-23,"13:25:00","MST",NA,NA,NA,7.04,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4940720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.611,"0.611","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 20:25:00,NA,"UPPER ENTERPRISE RES AB DAM 01","Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910020-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"13:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 20:37:00,NA,"LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C","Sample-Routine","WATER",NA,2021-05-27,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.41,"1.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:25:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-18,"18:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-19 01:30:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908744-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.343,"0.343","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:35:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.719,"0.719","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:00:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903500-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.569,"0.569","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:26:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-25,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-25 22:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"2991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919971-0526-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-26,"09:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.44,"1.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 16:26:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"2992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C","Sample-Routine","WATER",NA,2021-08-22,"06:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",365,"365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-22 13:38:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"2993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903501-0622-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-22,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.69,"1.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:15:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C","Sample-Routine","WATER",NA,2021-06-22,"12:55:00","MST",NA,NA,NA,6.99,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.379,"0.379","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:55:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908100-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.391,"0.391","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:00:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-28,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.45,"4.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 16:15:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-5984855-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.79,"5.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 16:15:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4930007-0630-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-30,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"2999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901790-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.483,"0.483","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:10:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949920-0419-4-C","Sample-Routine","WATER",NA,2021-04-19,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service;National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-19 21:20:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.234,"0.234","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:00:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"13:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 20:06:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905780-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.618,"0.618","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 22:30:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-03,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 22:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990376-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.269,"0.269","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:20:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-5906850-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.62,"0.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:15:00,NA,"WOODRUFF CK BL WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.656,"0.656","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 21:50:00,NA,"Clegg's Pond OUTFALL-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908697-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.504,"0.504","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:10:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.654,"0.654","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 22:45:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3010","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996022-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"12:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 19:27:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908697-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.192,"0.192","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:30:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905140-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.251,"0.251","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:30:00,NA,"Logan R @ 1000 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904250-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.742,"0.742","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 17:25:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"11:30:00","MST",NA,NA,NA,2.449,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.782,"0.782","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903200-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"15:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:10:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902900-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.563,"0.563","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:55:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"13:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.642,"0.642","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 20:02:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990620-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 18:00:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0607-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-07,"19:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 02:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"10:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.317,"0.317","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:35:00,NA,"MANTUA RES N MIDLAKE 03","Lake",NA,"16010204",NA,NA,NA,NA,"41.5082700000","-111.9299400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"14:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.76,"0.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990700-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.1,"0.1","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:50:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905750-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.354,"0.354","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 22:00:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.511,"0.511","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:40:00,NA,"CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903200-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.83,"1.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 20:40:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901100-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 16:30:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904490-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:50:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990620-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.157,"0.157","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:05:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910302-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"12:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 19:07:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C","Sample-Routine","WATER",NA,2021-05-27,"10:15:00","MST",NA,NA,NA,3.56,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.582,"0.582","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 17:15:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"15:10:00","MST",NA,NA,NA,1.991,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.761,"0.761","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 22:10:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"11:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.504,"0.504","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 18:58:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997250-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"12:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 19:27:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3034","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996100-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"12:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.578,"0.578","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 19:44:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902050-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.22,"2.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:40:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C","Sample-Routine","WATER",NA,2021-07-07,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 19:00:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.62,"0.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:00:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905040-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.329,"0.329","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 17:30:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4953210-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.347,"0.347","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 19:30:00,NA,"COMB WASH BL FISH CK","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3841600000","-109.6684600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904920-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.5,"11.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:40:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903504-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.27,"0.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:10:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:00:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908281-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.836,"0.836","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:30:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"15:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.518,"0.518","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 22:30:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"14:10:00","MST",NA,NA,NA,2.435,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.634,"0.634","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3046","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995210-0511-LAB","Sample-Routine","WATER",NA,2021-05-11,"11:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",11.6,"11.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-11 18:42:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949650-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.095,"0.095","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:20:00,NA,"SEVIER R NEAR HATCH","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6515000000","-112.4304300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.684,"0.684","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:45:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.59,"1.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 18:35:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3050","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996560-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"08:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",24,"24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 15:54:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C","Sample-Routine","WATER",NA,2021-07-26,"11:00:00","MST",NA,NA,NA,32.05,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.203,"0.203","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 18:00:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4903150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.519,"0.519","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:30:00,NA,"NEWTON RES UPPER LAKE 03","Lake",NA,"16010202",NA,NA,NA,NA,"41.9121500000","-111.9930100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3053","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SCC:202105261506:SR","Sample-Routine","WATER",NA,2021-05-26,"15:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-SCC",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-06-11,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 22:06:00,NA,"Sowers Canyon Creek","River/Stream","River/Stream","14060003",NA,NA,NA,NA,"40.0615548300","-110.2903830000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NONE","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4906400-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.809,"0.809","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:30:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.89,"7.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 20:10:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-27,"13:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.461,"0.461","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:05:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902040-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.55,"3.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:00:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905700-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.789,"0.789","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 21:50:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949890-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.338,"0.338","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 19:10:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949718-0601-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-01,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949718",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 18:35:00,NA,"Upper Sevier Watershed Nonpoint Source Monitoring Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-25,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 20:30:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908165-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.714,"0.714","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 20:00:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904510-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.33,"2.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:50:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902710-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",22.3,"22.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:15:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.337,"0.337","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:00:00,NA,"WHITE R NEAR BONANZA AT U45 XING","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5913210-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"14:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 21:08:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901100-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.527,"0.527","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:05:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"10:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",97.2,"97.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 17:29:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4903140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.401,"0.401","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:45:00,NA,"NEWTON RES MIDLAKE 02","Lake",NA,"16010202",NA,NA,NA,NA,"41.9066000000","-111.9830100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-15,"16:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.397,"0.397","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 23:40:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"10:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.438,"0.438","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 17:10:00,NA,"CUTLER RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Other;Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.167,"0.167","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:30:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904300-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.293,"0.293","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:05:00,NA,"HIGH CK @ U91 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900470-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.919,"0.919","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:00:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"11:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.856,"0.856","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:35:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.22,"0.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 23:00:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"13:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.346,"0.346","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 20:29:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C","Sample-Routine","WATER",NA,2021-05-27,"11:20:00","MST",NA,NA,NA,5.19,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.308,"0.308","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:20:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.608,"0.608","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:15:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908350-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.772,"0.772","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:10:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905631-0610-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-10,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:15:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-23-C","Sample-Routine","WATER",NA,2021-06-02,"09:47:00","MST",NA,NA,NA,6,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 16:47:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905000-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.99,"0.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:30:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900511-0407-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-07,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.668,"0.668","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:40:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901225-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:30:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"14:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.08,"1.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:45:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"07:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4931650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.94,"0.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 14:00:00,NA,"PRICE R NEAR WOODSIDE AT US 50&6 XING","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.2645000000","-110.3429900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",15,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949890-0419-4-C","Sample-Routine","WATER",NA,2021-04-19,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service;National Park Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.72,"1.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-19 22:15:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-17,"14:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.561,"0.561","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-17 21:45:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,2.827,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.936,"0.936","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:30:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.303,"0.303","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 18:45:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C","Sample-Routine","WATER",NA,2021-06-21,"16:10:00","MST",NA,NA,NA,30,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.307,"0.307","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 23:10:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903260-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.686,"0.686","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:15:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3094","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202109141209:QLD","Quality Control Sample-Lab Duplicate","WATER",NA,2021-09-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DDC",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-09-14 19:09:00,NA,"Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.738,"0.738","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 22:45:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905050-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.5,"11.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904920-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.12,"1.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:15:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C","Sample-Routine","WATER",NA,2021-06-03,"10:10:00","MST",NA,NA,NA,10.03,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.146,"0.146","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:10:00,NA,"PORCUPINE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"16010203",NA,NA,NA,NA,"41.5177200000","-111.7324400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.248,"0.248","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 18:10:00,NA,"BIRCH CK AB BIRCH CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5035500000","-111.3368600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.254,"0.254","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:24:00,NA,"Logan R @ 1000 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903180-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.71,"1.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:45:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-27-C","Sample-Routine","WATER",NA,2021-05-20,"11:11:00","MST",NA,NA,NA,14,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-20 18:11:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904724-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.63,"9.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:35:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.03,"7.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:40:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C","Sample-Routine","WATER",NA,2021-06-28,"15:30:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.955,"0.955","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 22:30:00,NA,"MATT WARNER RES AB DAM","Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901225-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.64,"4.64","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:30:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C","Sample-Routine","WATER",NA,2021-05-26,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.96,"2.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 16:00:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C","Sample-Routine","WATER",NA,2021-06-18,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.431,"0.431","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 19:30:00,NA,"ESCALANTE R AB LAKE POWELL","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4998140-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 17:27:00,NA,"WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990650-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.428,"0.428","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:00:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902940-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.443,"0.443","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 22:40:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904800-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.737,"0.737","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0607-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-07,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:15:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3114","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1182S","Sample-Routine","WATER",NA,2021-09-21,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-WM_GWMW_E",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-09-23,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-09-21 18:15:00,NA,"white mesa ground water monitoring well; east","Well","monitoring well downgradient of White Mesa Uranium Mill, southeast","14080201",NA,NA,NA,NA,"37.4964750000","-109.4931020000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83",5470,"ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-21,"17:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 00:45:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-24,"13:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 20:41:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.377,"0.377","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:45:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-27,"09:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.481,"0.481","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 16:55:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"14:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.326,"0.326","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 21:38:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903950-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.02,"4.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:00:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908744-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.522,"0.522","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 15:40:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990376-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.3,"0.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 18:20:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990700-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.107,"0.107","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:35:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"15:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.27,"6.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 22:10:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 20:30:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904250-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.19,"1.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:25:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C","Sample-Routine","WATER",NA,2021-07-16,"10:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.401,"0.401","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-16 17:56:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908742",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.281,"0.281","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:40:00,NA,"Left Hand Fk of Blacksmith Fk bl Sow Hole confluence (UT09ST-142)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6625100000","-111.6361500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949930-0419-4-C","Sample-Routine","WATER",NA,2021-04-19,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service;National Park Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.31,"0.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-19 20:15:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-18,"09:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.731,"0.731","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 16:00:00,NA,"PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903060-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.07,"4.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 22:00:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-24,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-24 15:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905700-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.457,"0.457","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:30:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0407-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-07,"16:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.2,"0.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 23:35:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-24-C","Sample-Routine","WATER",NA,2021-09-09,"10:20:00","MST",NA,NA,NA,7,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 17:20:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946650-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.676,"0.676","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:40:00,NA,"SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-15,"16:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 23:40:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901200-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.16,"3.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:20:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0504-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-04,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 00:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905441-0504-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-04,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.219,"0.219","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 21:10:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C","Sample-Routine","WATER",NA,2021-05-21,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.21,"0.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-21 16:50:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5913630-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"13:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 20:19:00,NA,"PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3143","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996566-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"11:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",11.5,"11.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 18:02:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"10:45:00","MST",NA,NA,NA,1.959,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.703,"0.703","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:45:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905630-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:00:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4998400-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 17:06:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946450-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"11:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.79,"3.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 18:17:00,NA,"SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905192-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.19,"0.19","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:30:00,NA,"Logan River below bridge on Golf Course Road","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.092,"0.092","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:30:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949660-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949660",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.115,"0.115","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:35:00,NA,"SEVIER R EAST OF PANGUITCH","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8234000000","-112.4061500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926370-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"09:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.292,"0.292","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 16:36:00,NA,"CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"15:30:00","MST",NA,NA,NA,1.999,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.509,"0.509","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 22:30:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 19:20:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-03,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 22:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"12:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.587,"0.587","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:55:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-18,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 16:30:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903400-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.7,"0.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:30:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902710-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.3,"11.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:40:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.18,"1.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 20:20:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905441-0406-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-06,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.291,"0.291","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:15:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3161","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995075-0615-LAB","Sample-Routine","WATER",NA,2021-06-15,"10:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.72,"2.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-15 17:01:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910273-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 19:15:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904490-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.991,"0.991","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:50:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.198,"0.198","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:30:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-15,"16:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 23:50:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3166","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996566-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"10:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.68,"6.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 17:53:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3167","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995075-0413-LAB","Sample-Routine","WATER",NA,2021-04-13,"09:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.1,"3.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-13 16:56:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-15,"16:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 23:50:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"10:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 17:46:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-5984855-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.75,"7.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:15:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0504-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-04,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 00:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:45:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C","Sample-Routine","WATER",NA,2021-05-07,"16:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.596,"0.596","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-07 23:45:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C","Sample-Routine","WATER",NA,2021-06-16,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4952930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.747,"0.747","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 22:15:00,NA,"San Juan River about 4.0 miles BL Alcove Canyon (Great Bend)","River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2404600000","-110.6703700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C","Sample-Routine","WATER",NA,2021-05-19,"08:15:00","MST",NA,NA,NA,104.41,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.288,"0.288","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 15:15:00,NA,"FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-22,"12:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.41,"0.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:40:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"09:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.975,"0.975","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 16:55:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904724-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.66,"6.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:20:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"13:25:00","MST",NA,NA,NA,1.299,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.551,"0.551","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 20:25:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990997-0622-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-22,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.435,"0.435","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:05:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905440-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.212,"0.212","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:50:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"14:20:00","MST",NA,NA,NA,2.938,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.61,"0.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:20:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904330-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.15,"0.15","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 19:05:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926260-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"12:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.4,"0.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 19:44:00,NA,"HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"09:25:00","MST",NA,NA,NA,1.509,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.612,"0.612","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 16:25:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.709,"0.709","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 22:45:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",16.2,"16.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 21:00:00,NA,"OREM WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905670-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.642,"0.642","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:20:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-24,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-24 15:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904310-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.516,"0.516","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 20:20:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0518-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-18,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.417,"0.417","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 01:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903500-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.68,"1.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:00:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904340-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.71,"0.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 19:25:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.132,"0.132","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 21:00:00,NA,"N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.346,"0.346","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 21:45:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.191,"0.191","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:54:00,NA,"Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903699-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.431,"0.431","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:30:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C","Sample-Composite Without Parents","WATER",NA,2021-06-21,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088","7 Photic zone samples taken at 1m, 5m, 8m, 12m, 16m, 20m and 24m; licor 1% depth at 24m; sample time = 13:40; vandorn; field data collected using YSI EXO3",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.389,"0.389","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:40:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900510-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.592,"0.592","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 20:30:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903820-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 17:10:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.246,"0.246","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 19:45:00,NA,"MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-25,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 21:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904510-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.79,"2.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:15:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901431-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.13,"6.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:20:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C","Sample-Routine","WATER",NA,2021-05-27,"10:15:00","MST",NA,NA,NA,3.56,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.342,"0.342","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 17:15:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996870-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"14:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 21:13:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996810-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"14:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 21:49:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3208","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995210-0413-LAB","Sample-Routine","WATER",NA,2021-04-13,"11:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.89,"9.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-13 18:43:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904943-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.96,"3.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 17:30:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C","Sample-Routine","WATER",NA,2021-06-21,"17:15:00","MST",NA,NA,NA,30,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.446,"0.446","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 00:15:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904726-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.07,"4.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 20:00:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:15:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904240-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.82,"1.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 18:20:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,2.634,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.695,"0.695","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:45:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3215","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996560-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"09:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",27.6,"27.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 16:06:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"09:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.361,"0.361","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 16:50:00,NA,"MANTUA RES AB DAM 01","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-23,"12:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4940730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.632,"0.632","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 19:55:00,NA,"UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"16030006",NA,NA,NA,NA,"37.5166400000","-113.8716400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905940-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.66,"2.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:30:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.849,"0.849","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:30:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903510-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.21,"0.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:10:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5913460-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"14:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 21:14:00,NA,"MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"10:53:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 17:53:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908152-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.443,"0.443","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:20:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"14:30:00","MST",NA,NA,NA,2.259,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.605,"0.605","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:30:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-23-C","Sample-Routine","WATER",NA,2021-06-16,"09:34:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 16:34:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0608-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-08,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 15:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-10,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.15,"0.15","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 22:50:00,NA,"N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901980-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.59,"0.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:10:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908140-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.22,"0.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 18:30:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C","Sample-Routine","WATER",NA,2021-05-07,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-07 18:30:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-01,"14:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.261,"0.261","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:10:00,NA,"HYRUM RES AB DAM 01 Replicate of 5901670","Lake","Replicate of 5901670","16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-30,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 15:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.211,"0.211","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:45:00,NA,"N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901730-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.334,"0.334","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 20:40:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.131,"0.131","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 16:15:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901950-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.05,"1.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:28:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-05-02,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 00:30:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-21,"17:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 00:40:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.7,"11.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 20:05:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-27-C","Sample-Routine","WATER",NA,2021-06-15,"10:26:00","MST",NA,NA,NA,24,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 17:26:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.121,"0.121","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 17:14:00,NA,"Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908168-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.109,"0.109","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:25:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905441-0504-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-04,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.239,"0.239","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 21:10:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903080-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.49,"3.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:15:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946960-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.701,"0.701","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 16:55:00,NA,"SAN PITCH R AB MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3246","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202105261409:SR","Sample-Routine","WATER",NA,2021-05-26,"14:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-IDR",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-06-11,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 21:09:00,NA,"INDIAN CREEK","River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NONE","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3247","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996410-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"09:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.734,"0.734","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 16:34:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990680-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.666,"0.666","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:00:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903060-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.85,"4.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 20:30:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900510-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.906,"0.906","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 20:45:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210629-4995710-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"10:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-29 17:37:00,NA,"DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"14:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.553,"0.553","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:20:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990996-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.374,"0.374","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:00:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"13:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.581,"0.581","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 20:50:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.865,"0.865","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 20:30:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"12:25:00","MST",NA,NA,NA,1.415,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.685,"0.685","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:25:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"14:50:00","MST",NA,NA,NA,1.417,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.18,"1.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:50:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4932402-0519-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-05-19,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4932402",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 23:00:00,NA,"BLM Price Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-13,"19:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-14 02:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946450-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.44,"1.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:10:00,NA,"SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904740-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",15.7,"15.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:15:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904900-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.988,"0.988","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 17:45:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.751,"0.751","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:35:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908744-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.498,"0.498","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:00:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C","Sample-Routine","WATER",NA,2021-05-06,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-06 22:00:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5910250-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"12:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 19:17:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.374,"0.374","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 17:45:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904800-0608-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-08,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:20:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990680-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.151,"0.151","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 16:25:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903510-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.166,"0.166","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:10:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"09:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.74,"0.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 16:30:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.394,"0.394","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:00:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"09:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.611,"0.611","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 16:25:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C","Sample-Routine","WATER",NA,2021-06-30,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908703",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.14,"0.14","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 17:15:00,NA,"Blacksmith Fork AB SR101 road crossing at mile post 10 (UT09ST-103)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6207000000","-111.7591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210506-5937650-0506-23-C","Sample-Routine","WATER",NA,2021-05-06,"12:32:00","MST",NA,NA,NA,6,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 19:32:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"15:10:00","MST",NA,NA,NA,1.908,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1,"1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 22:10:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949640-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.423,"0.423","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 18:30:00,NA,"SEVIER R @ SANFORD ROAD XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.9419200000","-112.4166000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.03,"3.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 22:25:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903501-0406-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-06,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.654,"0.654","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:50:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994804",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.892,"0.892","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 22:00:00,NA,"Dry Creek at 145 N (Saratoga Springs)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3650400000","-111.8839300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905780-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.653,"0.653","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:00:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"10:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.554,"0.554","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:45:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,2.344,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.05,"1.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:50:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.979,"0.979","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:45:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-07,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:30:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"12:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.367,"0.367","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 19:32:00,NA,"MAIN CK AB CNFL / SPRING CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"14:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1,"1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:30:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.28,"6.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 19:55:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.559,"0.559","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:45:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-21,"10:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.436,"0.436","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 17:55:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903200-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.54,"1.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 23:00:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908160-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.295,"0.295","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:50:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946751-0406-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-06,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.572,"0.572","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:50:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904241-0609-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-09,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 18:30:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3295","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996190-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.74,"5.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 17:14:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901225-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:35:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905631-0610-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-10,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:15:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904920-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.3,"11.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:40:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902940-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.521,"0.521","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:30:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-29-C","Sample-Routine","WATER",NA,2021-05-26,"11:33:00","MST",NA,NA,NA,37,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 18:33:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904810-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.35,"8.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:00:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"14:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.19,"1.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:50:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4949950-0602-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-02,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.34,"1.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 21:40:00,NA,"OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870","River/Stream","Replicate of 4948870","16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.383,"0.383","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 21:45:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"10:15:00","MST",NA,NA,NA,1.206,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.21,"1.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:15:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997670-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"11:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 18:43:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Other;Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.941,"0.941","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 18:00:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"14:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.578,"0.578","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:45:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905580-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.736,"0.736","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 19:30:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-26,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 18:30:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:20:00","MST",NA,NA,NA,2.506,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.808,"0.808","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:20:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-04-23,"17:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-24 00:50:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.544,"0.544","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 21:00:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904740-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.35,"9.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:00:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C","Sample-Routine","WATER",NA,2021-09-05,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.105,"0.105","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-05 18:30:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-29-C","Sample-Routine","WATER",NA,2021-06-15,"10:36:00","MST",NA,NA,NA,68,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 17:36:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903820-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.856,"0.856","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 15:45:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-01,"10:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900430",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.484,"0.484","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:10:00,NA,"MANTUA RES AB DAM 01 Replicate of 4900440","Lake","Replicate of 4900440","16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996830-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"14:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 21:39:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-29-C","Sample-Routine","WATER",NA,2021-06-02,"10:07:00","MST",NA,NA,NA,30,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 17:07:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-02,"09:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 16:45:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.94,"1.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 20:45:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901700-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.529,"0.529","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 19:25:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.604,"0.604","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 17:40:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902710-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",14.9,"14.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:50:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-16,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.797,"0.797","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.5,"5.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 18:15:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-29-C","Sample-Routine","WATER",NA,2021-05-20,"11:22:00","MST",NA,NA,NA,35.3,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-20 18:22:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3329","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995210-0615-LAB","Sample-Routine","WATER",NA,2021-06-15,"12:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",14.9,"14.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-15 19:36:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903180-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:45:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.593,"0.593","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 17:30:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0407-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-07,"16:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 23:35:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994520-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"08:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.242,"0.242","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 15:39:00,NA,"LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 20:20:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905400-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.495,"0.495","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:00:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946756-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.717,"0.717","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:21:00,NA,"San Pitch R Bl Fairview WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"10:45:00","MST",NA,NA,NA,2.066,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.833,"0.833","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:45:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-28,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.278,"0.278","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 17:15:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905631-0407-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-07,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.548,"0.548","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:50:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-14,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 23:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"15:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.838,"0.838","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 22:10:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-29,"17:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.101,"0.101","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-30 00:35:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4948940-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.215,"0.215","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 21:05:00,NA,"OTTER CREEK AT THE NARROWS","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904300-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.355,"0.355","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:05:00,NA,"HIGH CK @ U91 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902040-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 17:40:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.866,"0.866","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:45:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905078-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.501,"0.501","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:30:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C","Sample-Routine","WATER",NA,2021-05-27,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.349,"0.349","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 16:00:00,NA,"WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"14:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.554,"0.554","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:20:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904720-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.868,"0.868","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:45:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-26-C","Sample-Routine","WATER",NA,2021-05-26,"10:13:00","MST",NA,NA,NA,19,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 17:13:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903260-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.569,"0.569","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:15:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901100-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:40:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"15:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.91,"0.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 22:10:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-21,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.568,"0.568","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 20:15:00,NA,"E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908281-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.37,"0.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:20:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904770-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",34.7,"34.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 18:00:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C","Sample-Routine","WATER",NA,2021-05-27,"10:55:00","MST",NA,NA,NA,3.98,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.316,"0.316","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 17:55:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3359","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996022-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"13:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.12,"1.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 20:19:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901730-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.579,"0.579","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:45:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.157,"0.157","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 21:00:00,NA,"N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3362","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996550-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"09:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",26.6,"26.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 16:37:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902941-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.578,"0.578","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 22:50:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900511-0610-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.793,"0.793","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 21:00:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905700-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.43,"0.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:30:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990640-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.748,"0.748","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 16:50:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949702-0601-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-01,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949702",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.264,"0.264","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:00:00,NA,"MAMMOTH CK AT US89 XING Replicate of 4949700","River/Stream","Replicate of 4949700","16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908281-0621-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-21,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.33,"0.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:00:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C","Sample-Routine","WATER",NA,2021-06-30,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.271,"0.271","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 16:30:00,NA,"WHITE R NEAR BONANZA AT U45 XING","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905540-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",37.6,"37.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 17:50:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-21,"15:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.268,"0.268","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:15:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905640-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:20:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"12:25:00","MST",NA,NA,NA,1.415,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.763,"0.763","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:25:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.565,"0.565","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 21:20:00,NA,"Clegg's Pond OUTFALL-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926370-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"10:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.291,"0.291","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 17:41:00,NA,"CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-16,"09:33:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 16:33:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4932810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.329,"0.329","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 19:00:00,NA,"PRICE R AB WILLOW CK (PRICE R COAL)","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7347800000","-110.8725300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.659,"0.659","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 21:50:00,NA,"Clegg's Pond OUTFALL-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"13:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.399,"0.399","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:37:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903507-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.361,"0.361","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:25:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210511-4936420-0511-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-11,"10:24:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-11 17:24:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"13:50:00","MST",NA,NA,NA,0.929,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.545,"0.545","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 20:50:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904310-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.93,"0.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 20:00:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901950-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.6,"0.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:40:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3385","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994952-0615-LAB","Sample-Routine","WATER",NA,2021-06-15,"08:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-15 15:56:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905650-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.62,"1.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 18:45:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-29,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.366,"0.366","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:20:00,NA,"PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901180-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.86,"1.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:55:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C","Sample-Routine","WATER",NA,2021-06-19,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.499,"0.499","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-19 17:15:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901432-0517-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-17,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.8,"4.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 19:20:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904920-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.15,"2.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 19:15:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908160-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.158,"0.158","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 21:00:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.423,"0.423","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 20:35:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"12:10:00","MST",NA,NA,NA,1.009,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.637,"0.637","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:10:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903180-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 22:20:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"09:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 16:40:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990555-0518-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-18,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 15:00:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.36,"0.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:37:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.65,"1.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 18:35:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C","Sample-Routine","WATER",NA,2021-06-03,"11:00:00","MST",NA,NA,NA,24.52,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.247,"0.247","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 18:00:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3401","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995467-0511-LAB","Sample-Routine","WATER",NA,2021-05-11,"16:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-11 23:15:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.321,"0.321","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:37:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913490-0616-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-16,"09:32:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 16:32:00,NA,"DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903820-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.08,"1.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:10:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",10.4,"10.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 22:40:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.219,"0.219","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 23:00:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4932810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.406,"0.406","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:30:00,NA,"PRICE R AB WILLOW CK (PRICE R COAL)","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7347800000","-110.8725300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:35:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.45,"0.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:35:00,NA,"NEWTON RES UPPER LAKE 03","Lake",NA,"16010202",NA,NA,NA,NA,"41.9121500000","-111.9930100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901432-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.39,"6.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:15:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4906400-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.886,"0.886","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:30:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.174,"0.174","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 17:45:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900852-0804-4-C","Sample-Routine","WATER",NA,2021-08-04,"11:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900852",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.337,"0.337","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-04 18:07:00,NA,"Bear River 1 km NW of Kearn Ranch (Crawford Mountain Rd and Mine Rd)","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7012900000","-111.0968100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926290-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"11:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.342,"0.342","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:48:00,NA,"CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"3414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904943-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.45,"2.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 18:30:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"12:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.852,"0.852","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:10:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901980-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.408,"0.408","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:30:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903400-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.764,"0.764","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:30:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"14:20:00","MST",NA,NA,NA,2.938,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.544,"0.544","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:20:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-28-C","Sample-Routine","WATER",NA,2021-06-16,"09:49:00","MST",NA,NA,NA,26,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 16:49:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-01,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-01 22:05:00,NA,"N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904900-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.933,"0.933","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 17:45:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902941-0517-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-17,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.454,"0.454","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:40:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-12,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.761,"0.761","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:50:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.329,"0.329","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:25:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.264,"0.264","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 19:00:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905050-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.15,"6.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 17:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4955252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 15:50:00,NA,"Johnson Creek headwaters above Cooley Gulch and ab Johnson Creek Rd xing","River/Stream",NA,"14080201",NA,NA,NA,NA,"37.8281400000","-109.4833400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C","Sample-Routine","WATER",NA,2021-06-17,"15:20:00","MST",NA,NA,NA,40.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.474,"0.474","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-17 22:20:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C","Sample-Routine","WATER",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,57.1,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.334,"0.334","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:00:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-12,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.75,"0.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:50:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908350-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.381,"0.381","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 17:40:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905000-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.651,"0.651","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904800-0608-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-08,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.775,"0.775","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:20:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990996-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.127,"0.127","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:15:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908130-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.283,"0.283","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 18:50:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905400-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.479,"0.479","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:00:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3437","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995222-0615-LAB","Sample-Routine","WATER",NA,2021-06-15,"11:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-15 18:01:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904241-0519-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-19,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.394,"0.394","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 17:45:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905940-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.65,"3.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:00:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-23,"15:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.686,"0.686","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 22:02:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C","Sample-Routine","WATER",NA,2021-05-27,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 16:00:00,NA,"WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946960-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.55,"1.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:00:00,NA,"SAN PITCH R AB MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0609-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-09,"08:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 15:15:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.8,"11.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 20:05:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904940-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",17.6,"17.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:00:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946751-0602-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-02,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.681,"0.681","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 16:40:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4953060-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.251,"0.251","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 18:30:00,NA,"LIME CK AT VALLEY OF THE GODS ROAD XING","River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-25,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 20:30:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-19,"08:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-4938550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.248,"0.248","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 15:00:00,NA,"FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP","Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3450","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995222-0413-LAB","Sample-Routine","WATER",NA,2021-04-13,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.921,"0.921","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-13 17:14:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908500-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:45:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.195,"0.195","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:00:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-22-C","Sample-Routine","WATER",NA,2021-06-15,"10:11:00","MST",NA,NA,NA,2,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 17:11:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908281-0503-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-03,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.338,"0.338","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 19:40:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 22:30:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"14:50:00","MST",NA,NA,NA,2.053,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.925,"0.925","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:50:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-27-C","Sample-Routine","WATER",NA,2021-05-26,"10:14:00","MST",NA,NA,NA,24,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 17:14:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949660-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949660",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.126,"0.126","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 18:05:00,NA,"SEVIER R EAST OF PANGUITCH","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8234000000","-112.4061500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"14:50:00","MST",NA,NA,NA,1.417,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:50:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949635-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949635",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.115,"0.115","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:55:00,NA,"Sevier River at bridge at US89 MP126 and 0.6 Mile ab Casto Wash","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7717900000","-112.3910200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-25,"11:32:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.237,"0.237","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 18:32:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,2.827,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.813,"0.813","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:30:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901600-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.893,"0.893","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:05:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.243,"0.243","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:35:00,NA,"FISH CK AB SCOFIELD RES","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946750-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.676,"0.676","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 16:40:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905440-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.679,"0.679","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 21:00:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905631-0505-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-05,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.352,"0.352","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:40:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908716",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.747,"0.747","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 17:20:00,NA,"Hayden Fork above Hayden Fork Campground (UT09ST-116)","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8286100000","-110.8550700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C","Sample-Routine","WATER",NA,2021-06-28,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4932810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.395,"0.395","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 19:00:00,NA,"PRICE R AB WILLOW CK (PRICE R COAL)","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7347800000","-110.8725300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949718-0407-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-04-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949718",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:00:00,NA,"Upper Sevier Watershed Nonpoint Source Monitoring Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"13:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.938,"0.938","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 20:00:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901180-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 16:50:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"13:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.697,"0.697","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 20:20:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-28-C","Sample-Routine","WATER",NA,2021-05-20,"11:14:00","MST",NA,NA,NA,27,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-20 18:14:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-13,"19:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-14 02:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919920-0526-4-C","Sample-Routine","WATER",NA,2021-05-26,"08:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.678,"0.678","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 15:42:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904920-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.15,"1.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:30:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902000-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.25,"6.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:10:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.816,"0.816","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 18:15:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903400-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.899,"0.899","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:05:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.13,"4.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 17:00:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"12:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:20:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905140-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.453,"0.453","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 18:30:00,NA,"Logan R @ 1000 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"13:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.552,"0.552","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 20:02:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C","Sample-Routine","WATER",NA,2021-06-01,"13:55:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.271,"0.271","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 20:55:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210506-5937650-0506-27-C","Sample-Routine","WATER",NA,2021-05-06,"12:33:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 19:33:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990680-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.139,"0.139","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 16:25:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-29-C","Sample-Routine","WATER",NA,2021-06-09,"10:47:00","MST",NA,NA,NA,19.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-22,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-09 17:47:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908744-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.198,"0.198","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:00:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210602-5937650-0602-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-02,"12:29:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 19:29:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905070-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",14.6,"14.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:45:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C","Sample-Routine","WATER",NA,2021-06-16,"10:20:00","MST",NA,NA,NA,89,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.515,"0.515","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 17:20:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904800-0504-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-04,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.673,"0.673","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:10:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210527-4995600-0527-4-C","Sample-Routine","WATER",NA,2021-05-27,"09:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-27 16:51:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902940-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.467,"0.467","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:50:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.15,"0.15","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 19:45:00,NA,"WOODRUFF CK AB WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4624400000","-111.3488200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903191-0608-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.71,"1.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:00:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3498","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995043-0413-LAB","Sample-Routine","WATER",NA,2021-04-13,"09:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.17,"5.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-13 16:29:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C","Sample-Routine","WATER",NA,2021-06-03,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.213,"0.213","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 16:45:00,NA,"E FK LITTLE BEAR R AB PORCUPINE RES","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5182700000","-111.7138200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905052-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.6,"0.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:40:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-06,"09:09:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 16:09:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3502","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996275-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"11:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.89,"7.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 18:06:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908745-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.422,"0.422","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:30:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C","Sample-Routine","WATER",NA,2021-06-14,"12:10:00","MST",NA,NA,NA,6.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.422,"0.422","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:10:00,NA,"NEWTON RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904250-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.452,"0.452","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 17:40:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908168-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.141,"0.141","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:25:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4998400-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"10:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 17:07:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990987-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.66,"2.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:00:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-07,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.082,"0.082","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:30:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3510","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202105261409:SR","Sample-Routine","WATER",NA,2021-05-26,"14:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-IDR",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-05-26 21:09:00,NA,"INDIAN CREEK","River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908745-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.412,"0.412","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 22:25:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"10:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 17:10:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C","Sample-Routine","WATER",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,57.1,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.315,"0.315","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:00:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908170-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.345,"0.345","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:50:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.203,"0.203","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:00:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.42,"2.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:00:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904490-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.569,"0.569","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:15:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.355,"0.355","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:20:00,NA,"MANTUA RES S MIDLAKE 02","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903500-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.15,"2.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:35:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C","Sample-Routine","WATER",NA,2021-06-30,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.302,"0.302","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 19:00:00,NA,"WHITE R AB CNFL AB BITTER CK","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9699700000","-109.4109500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904920-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.25,"2.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 19:15:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904720-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.21,"2.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:15:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910250-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"12:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 19:43:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910160-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 20:25:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908500-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.573,"0.573","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:30:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902720-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.787,"0.787","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:30:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-29-C","Sample-Routine","WATER",NA,2021-06-16,"10:31:00","MST",NA,NA,NA,20.7,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 17:31:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.415,"0.415","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 21:15:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-26,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.19,"3.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 15:40:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C","Sample-Routine","WATER",NA,2021-06-12,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.6,"0.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-12 19:00:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-25,"14:59:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 21:59:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997250-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 19:09:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C","Sample-Routine","WATER",NA,2021-04-02,"17:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.533,"0.533","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-03 00:10:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-15,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.508,"0.508","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:40:00,NA,"CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-18,"18:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.271,"0.271","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-19 01:30:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908281-0503-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-03,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.386,"0.386","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 19:40:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990997-0727-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-27,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.223,"0.223","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 19:10:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"14:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.84,"0.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:30:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904810-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.47,"8.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:25:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904800-0504-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-04,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.999,"0.999","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:10:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901975-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.48,"2.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 16:55:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"09:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4999102",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.265,"0.265","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 16:44:00,NA,"Nebo Creek 55 meters ab National Forest Boundary","River/Stream",NA,"16020202",NA,NA,NA,NA,"39.8694700000","-111.5856300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C","Sample-Routine","WATER",NA,2021-04-25,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.215,"0.215","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-25 21:00:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"15:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.479,"0.479","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 22:30:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"14:10:00","MST",NA,NA,NA,2.895,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.825,"0.825","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908152-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.522,"0.522","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 21:40:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901950-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.578,"0.578","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:40:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C","Sample-Routine","WATER",NA,2021-04-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4958750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.111,"0.111","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-14 22:00:00,NA,"FISHER CK AT MOUTH","River/Stream",NA,"14030004",NA,NA,NA,NA,"38.7433200000","-109.1351100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,12.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:20:00,NA,"NEWTON RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-05-02,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 00:30:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C","Sample-Routine","WATER",NA,2021-04-23,"09:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.185,"0.185","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 16:54:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3552","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996100-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"11:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)","Below Reporting Limit","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 18:27:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905540-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",36.5,"36.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 16:30:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.185,"0.185","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:00:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.61,"1.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 20:15:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905640-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.35,"1.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 19:00:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"13:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.515,"0.515","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 20:50:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-24-C","Sample-Routine","WATER",NA,2021-05-06,"09:14:00","MST",NA,NA,NA,14,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 16:14:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990680-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:00:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.154,"0.154","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 17:14:00,NA,"Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908140-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.424,"0.424","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:50:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"09:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.914,"0.914","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 16:40:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-29-C","Sample-Routine","WATER",NA,2021-06-15,"11:03:00","MST",NA,NA,NA,35,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 18:03:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905940-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.27,"2.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:20:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908168-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.131,"0.131","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 20:50:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908500-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.539,"0.539","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:40:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995251",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",19.8,"19.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 21:55:00,NA,"Orem WRF GW OUTFALL-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2768800000","-111.7440100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.228,"0.228","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 19:10:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0518-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-18,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 01:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-26,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.5,"3.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 17:30:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"10:15:00","MST",NA,NA,NA,1.911,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.578,"0.578","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-24-C","Sample-Routine","WATER",NA,2021-06-15,"10:17:00","MST",NA,NA,NA,14,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 17:17:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3573","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994952-0914-LAB","Sample-Routine","WATER",NA,2021-09-14,"08:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-14 15:38:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904724-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.23,"3.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:40:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 20:30:00,NA,"N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900510-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.775,"0.775","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 19:30:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",12,"12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:50:00,NA,"DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-18,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.278,"0.278","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 18:50:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902700-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3,"3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:15:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926370-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"09:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.234,"0.234","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 16:36:00,NA,"CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"3581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904240-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.66,"1.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 18:20:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908165-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.395,"0.395","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:20:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.921,"0.921","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:00:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C","Sample-Routine","WATER",NA,2021-05-07,"16:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.516,"0.516","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-07 23:45:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4906400-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.598,"0.598","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:30:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910273-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"11:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 18:59:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C","Sample-Routine","WATER",NA,2021-06-01,"13:55:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.259,"0.259","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 20:55:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908744-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.435,"0.435","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 22:00:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901190-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.552,"0.552","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:00:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990360-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.426,"0.426","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 18:10:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"14:35:00","MST",NA,NA,NA,2.414,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.753,"0.753","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 21:35:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"11:10:00","MST",NA,NA,NA,1.857,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.518,"0.518","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 18:10:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"10:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.094,"0.094","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 17:44:00,NA,"LITTLE HOBBLE CK AT ROUND VALLEY RD XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905650-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.58,"1.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 18:45:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994520-0502-4-C","Sample-Routine","WATER",NA,2021-05-02,"10:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.106,"0.106","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-02 17:09:00,NA,"LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901950-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.88,"0.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:28:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901432-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.99,"5.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:25:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-27,"13:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.26,"0.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:55:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-09,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.11,"0.11","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 20:20:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-23-C","Sample-Routine","WATER",NA,2021-06-09,"10:37:00","MST",NA,NA,NA,3,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-22,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-09 17:37:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903180-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.61,"1.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:35:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905440-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.679,"0.679","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:00:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905440-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.315,"0.315","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 21:00:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-21,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:10:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903191-0608-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:00:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-14,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.967,"0.967","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926352-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"15:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.89,"1.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:07:00,NA,"CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-01,"13:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-01 20:27:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C","Sample-Routine","WATER",NA,2021-05-24,"10:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.183,"0.183","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-24 17:28:00,NA,"Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.52,"4.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 16:10:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901432-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.37,"6.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:15:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1,"1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:30:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.609,"0.609","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 20:00:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-22,"12:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.384,"0.384","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:35:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901200-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.61,"3.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:25:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C","Sample-Routine","WATER",NA,2021-09-08,"12:05:00","MST",NA,NA,NA,10.88,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.53,"1.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 19:05:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901600-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.54,"0.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:50:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3618","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995043-0511-LAB","Sample-Routine","WATER",NA,2021-05-11,"09:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.24,"2.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-11 16:36:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4948868-0602-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-02,"13:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948868",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 20:03:00,NA,"EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-22 00:00:00,NA,"Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902700-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.62,"1.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 20:55:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3622","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996020-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.2,"3.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 19:45:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994550-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.164,"0.164","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 20:10:00,NA,"PARIA R AT OLD TOWN SITE","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990987-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.08,"2.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:15:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3625","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995575-0413-LAB","Sample-Routine","WATER",NA,2021-04-13,"13:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.362,"0.362","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-13 20:38:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C","Sample-Routine","WATER",NA,2021-05-27,"11:55:00","MST",NA,NA,NA,4.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.57,"0.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:55:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-24-C","Sample-Routine","WATER",NA,2021-07-13,"09:56:00","MST",NA,NA,NA,10,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 16:56:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908152-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.242,"0.242","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 21:40:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.356,"0.356","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 21:15:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4905770-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.268,"0.268","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 22:15:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.959,"0.959","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 18:50:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4905640-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.41,"1.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 23:00:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903180-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 22:20:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-05-10,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 19:30:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908744-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.563,"0.563","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:00:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905640-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:45:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"09:45:00","MST",NA,NA,NA,1.488,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.822,"0.822","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 16:45:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905040-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.411,"0.411","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:10:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908500-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.845,"0.845","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:00:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905090-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",16.5,"16.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:50:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-25,"13:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.212,"0.212","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 20:20:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902900-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.546,"0.546","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:55:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905580-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.854,"0.854","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 19:30:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.65,"4.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 16:10:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949650-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.124,"0.124","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:25:00,NA,"SEVIER R NEAR HATCH","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6515000000","-112.4304300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-22,"12:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.386,"0.386","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:35:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"11:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 18:19:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905040-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.521,"0.521","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:50:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:00:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4900751-0622-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-22,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.099,"0.099","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C","Sample-Routine","WATER",NA,2021-09-27,"10:55:00","MST",NA,NA,NA,13.1,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.289,"0.289","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 17:55:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"13:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.101,"0.101","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 20:06:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-01,"10:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900430",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.359,"0.359","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:10:00,NA,"MANTUA RES AB DAM 01 Replicate of 4900440","Lake","Replicate of 4900440","16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.72,"0.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:30:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C","Sample-Routine","WATER",NA,2021-04-01,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-01 22:00:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901050-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.843,"0.843","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:05:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905040-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.435,"0.435","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:10:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903060-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.39,"4.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 20:30:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.449,"0.449","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:20:00,NA,"MANTUA RES S MIDLAKE 02","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.937,"0.937","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 22:00:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C","Sample-Routine","WATER",NA,2021-09-29,"14:20:00","MST",NA,NA,NA,14,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.772,"0.772","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:20:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3662","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996022-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"12:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 19:14:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C","Sample-Routine","WATER",NA,2021-04-02,"17:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.452,"0.452","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-03 00:10:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926390-0520-4-C","Sample-Routine","WATER",NA,2021-05-20,"11:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.274,"0.274","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 18:33:00,NA,"CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"11:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.8,"1.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 18:08:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-29,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.383,"0.383","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:40:00,NA,"PELICAN LAKE 02 E MIDLAKE","Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"14:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.193,"0.193","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 21:31:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-06,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:30:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902720-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.825,"0.825","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 21:30:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C","Sample-Routine","WATER",NA,2021-05-27,"11:55:00","MST",NA,NA,NA,4.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.312,"0.312","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:55:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3671","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996020-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"12:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.48,"4.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 19:24:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946650-0602-4-C","Sample-Routine","WATER",NA,2021-06-02,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.801,"0.801","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-02 17:20:00,NA,"SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-24,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-24 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-26,"10:02:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 17:02:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3675","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995222-0817-LAB","Sample-Routine","WATER",NA,2021-08-17,"10:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-17 17:34:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-26,"10:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 17:43:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926352-0520-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-20,"16:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.458,"0.458","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-20 23:10:00,NA,"CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903950-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:40:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-12,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.688,"0.688","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:50:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997675-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"11:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 18:37:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908744-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.968,"0.968","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 15:40:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C","Sample-Routine","WATER",NA,2021-06-23,"13:00:00","MST",NA,NA,NA,5.98,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4940730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.616,"0.616","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 20:00:00,NA,"UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02","Lake",NA,"16030006",NA,NA,NA,NA,"37.5166400000","-113.8716400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.347,"0.347","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 17:45:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902941-0405-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-05,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.533,"0.533","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 23:00:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903060-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:20:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901790-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.654,"0.654","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:15:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.85,"6.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:40:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C","Sample-Routine","WATER",NA,2021-06-14,"12:15:00","MST",NA,NA,NA,8.96,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.413,"0.413","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:15:00,NA,"NEWTON RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904490-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.51,"0.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 18:15:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-12,"10:20:00","MST",NA,NA,NA,1.877,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.549,"0.549","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 17:20:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908280-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.206,"0.206","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:00:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903699-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.821,"0.821","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:50:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908140-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.356,"0.356","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:30:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904726-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.88,"3.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 20:00:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5913210-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"14:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 21:42:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3696","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996570-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"09:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.31,"2.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 16:09:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-07-02,"13:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-02 20:56:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904920-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:30:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0407-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-07,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 22:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902050-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.69,"1.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:50:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C","Sample-Routine","WATER",NA,2021-04-02,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.098,"0.098","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-02 19:00:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990555-0420-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-20,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 15:00:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996890-0928-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-28,"12:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 19:19:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-28,"15:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.913,"0.913","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 22:40:00,NA,"MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.126,"0.126","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 17:00:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.133,"0.133","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 22:45:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903400-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.44,"0.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 18:25:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"12:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.65,"0.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:10:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"12:25:00","MST",NA,NA,NA,1.764,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.745,"0.745","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:25:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990700-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.128,"0.128","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 17:35:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C","Sample-Routine","WATER",NA,2021-06-14,"12:15:00","MST",NA,NA,NA,8.96,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.423,"0.423","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:15:00,NA,"NEWTON RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.127,"0.127","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:00:00,NA,"N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-28,"14:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.87,"0.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 21:55:00,NA,"MATT WARNER RES E MIDLAKE 03","Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-28,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.74,"4.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-28 16:15:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.7,"11.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 19:05:00,NA,"DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.47,"2.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 21:50:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3717","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996275-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"11:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.53,"6.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 18:27:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C","Sample-Routine","WATER",NA,2021-04-08,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.106,"0.106","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-08 17:57:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901190-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.495,"0.495","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:00:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3720","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995575-0713-LAB","Sample-Routine","WATER",NA,2021-07-13,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.287,"0.287","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-13 21:55:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903060-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.34,"3.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:20:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904724-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.74,"3.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 19:20:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913490-0923-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-23,"09:49:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 16:49:00,NA,"DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905590-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.963,"0.963","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 19:15:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"14:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.608,"0.608","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:30:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-16,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-16 17:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210430-4995600-0430-4-C","Sample-Routine","WATER",NA,2021-04-30,"09:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-30 16:26:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.882,"0.882","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:50:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902900-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.358,"0.358","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:00:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946790-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.37,"0.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:05:00,NA,"SAN PITCH R @ US 89 XING N OF FAIRVIEW","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6382900000","-111.4465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990640-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.573,"0.573","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 16:50:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-28,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 18:15:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949263",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-22 00:00:00,NA,"Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946840-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:17:00,NA,"San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904965-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:20:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-03,"10:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.268,"0.268","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 17:45:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908500-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"11:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.951,"0.951","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 18:33:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4951850-0822-4-C","Sample-Routine","WATER",NA,2021-08-22,"07:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-22 14:42:00,NA,"PARIA R AT US89 XING","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3739","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202107271601:SR","Sample-Routine","WATER",NA,2021-07-27,"16:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-IDR",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-07-27 23:01:00,NA,"INDIAN CREEK","River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-09,"10:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-22,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-09 17:35:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990376-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.419,"0.419","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:30:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908130-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.259,"0.259","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:20:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.612,"0.612","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 17:35:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908152-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"16:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.446,"0.446","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 23:05:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901180-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.31,"2.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:30:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904720-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.8,"3.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 19:35:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.476,"0.476","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:45:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C","Sample-Routine","WATER",NA,2021-06-01,"14:05:00","MST",NA,NA,NA,18.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.424,"0.424","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:05:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.84,"0.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 21:15:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.54,"1.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:00:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908500-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.428,"0.428","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:00:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.479,"0.479","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:40:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904330-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.228,"0.228","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 19:15:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903501-0406-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-06,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.643,"0.643","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:50:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.302,"0.302","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 20:00:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902720-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.59,"1.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 20:15:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-29,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 23:30:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901190-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.543,"0.543","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 17:10:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-26,"10:32:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 17:32:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210602-5937650-0602-29-C","Sample-Routine","WATER",NA,2021-06-02,"12:44:00","MST",NA,NA,NA,23.8,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 19:44:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C","Sample-Routine","WATER",NA,2021-04-23,"09:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.223,"0.223","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-23 16:54:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.288,"0.288","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:35:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904490-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.7,"0.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:20:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905640-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.28,"1.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:25:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C","Sample-Routine","WATER",NA,2021-09-21,"12:15:00","MST",NA,NA,NA,83.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.479,"0.479","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 19:15:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-20,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.243,"0.243","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 22:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900510-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.563,"0.563","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 20:30:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C","Sample-Routine","WATER",NA,2021-06-16,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4952930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.555,"0.555","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 22:15:00,NA,"San Juan River about 4.0 miles BL Alcove Canyon (Great Bend)","River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2404600000","-110.6703700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919970-0526-4-C","Sample-Routine","WATER",NA,2021-05-26,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 16:20:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901050-0607-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-07,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:05:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"14:45:00","MST",NA,NA,NA,2.395,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.592,"0.592","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 21:45:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904110-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.873,"0.873","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 17:30:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.693,"0.693","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 18:15:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3774","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SCC:202105261506:SR","Sample-Routine","WATER",NA,2021-05-26,"15:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-SCC",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-05-26 22:06:00,NA,"Sowers Canyon Creek","River/Stream","River/Stream","14060003",NA,NA,NA,NA,"40.0615548300","-110.2903830000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905780-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"09:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.226,"0.226","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 16:36:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.676,"0.676","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:40:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"12:55:00","MST",NA,NA,NA,3.007,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.528,"0.528","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 19:55:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-29-C","Sample-Routine","WATER",NA,2021-06-16,"10:55:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 17:55:00,NA,"DEER CREEK RES UPPER END 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901790-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.639,"0.639","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:15:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908168-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"14:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.24,"0.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:46:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901700-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.62,"0.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 19:25:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904943-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.6,"3.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:20:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.688,"0.688","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 17:00:00,NA,"CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905670-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.05,"1.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 21:30:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904200-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.645,"0.645","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:10:00,NA,"CITY CK 3/4 MI W OF US91 AT CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9168700000","-111.8293900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-01,"15:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 22:43:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:40:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905070-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",16.4,"16.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:50:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901200-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",18.4,"18.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:15:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"09:55:00","MST",NA,NA,NA,1.642,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.965,"0.965","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 16:55:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904300-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.311,"0.311","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:55:00,NA,"HIGH CK @ U91 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3792","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996410-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"09:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.834,"0.834","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 16:59:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:40:00","MST",NA,NA,NA,2.303,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.787,"0.787","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:40:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"15:10:00","MST",NA,NA,NA,1.949,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.655,"0.655","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 22:10:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-25,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-25 22:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996890-0428-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-28,"14:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 21:41:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903504-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.285,"0.285","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:10:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905052-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:40:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C","Quality Control Sample-Field Blank","WATER",NA,2021-06-18,"18:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-19 01:35:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.568,"0.568","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 18:10:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990360-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.239,"0.239","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:20:00,NA,"DUEL CK @ 850 East crossing","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949670-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.642,"0.642","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 18:20:00,NA,"SEVIER R @ PANGUITCH AIRPORT RD XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8516400000","-112.4360400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C","Sample-Routine","WATER",NA,2021-09-05,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.094,"0.094","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-05 18:30:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-29,"10:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.355,"0.355","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:05:00,NA,"PELICAN LAKE 01 W MIDLAKE","Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.49,"0.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 17:30:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality;Other","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.567,"0.567","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 18:30:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"16:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.34,"1.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 23:25:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904330-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.157,"0.157","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 21:10:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904726-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.78,"2.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:55:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4998130-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 17:35:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903200-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.15,"1.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 22:00:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903504-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.335,"0.335","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:30:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.44,"1.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 17:55:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996890-0525-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-25,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 21:17:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.261,"0.261","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:00:00,NA,"WHITE R NEAR BONANZA AT U45 XING","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901930-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.724,"0.724","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:20:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903200-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"15:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:10:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902050-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:50:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-27,"10:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.607,"0.607","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 17:45:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905078-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.6,"1.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:30:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905078-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.231,"0.231","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:30:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949892-0419-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-19,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service;National Park Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.67,"1.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-19 22:15:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"11:30:00","MST",NA,NA,NA,2.475,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.708,"0.708","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:30:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0405-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-04-05,"17:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 00:33:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-24-C","Sample-Routine","WATER",NA,2021-05-26,"10:09:00","MST",NA,NA,NA,13,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-26 17:09:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C","Sample-Routine","WATER",NA,2021-09-22,"16:20:00","MST",NA,NA,NA,34,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.599,"0.599","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 23:20:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901225-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",21.3,"21.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 15:50:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904943-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.89,"3.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 17:30:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-29,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.358,"0.358","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:00:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908742",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.178,"0.178","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 17:40:00,NA,"Left Hand Fk of Blacksmith Fk bl Sow Hole confluence (UT09ST-142)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6625100000","-111.6361500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902040-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.98,"2.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:10:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901100-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.664,"0.664","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:05:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.537,"0.537","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 18:00:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903507-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.356,"0.356","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:00:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-28,"14:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.875,"0.875","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 21:55:00,NA,"MATT WARNER RES E MIDLAKE 03","Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908697-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.423,"0.423","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 18:10:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C","Sample-Routine","WATER",NA,2021-09-14,"12:35:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.519,"0.519","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:35:00,NA,"CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"15:10:00","MST",NA,NA,NA,1.991,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.74,"0.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 22:10:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996850-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 21:30:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926390-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"10:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.255,"0.255","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:21:00,NA,"CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"3841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C","Sample-Routine","WATER",NA,2021-08-19,"11:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.51,"1.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-19 18:22:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-28-C","Sample-Routine","WATER",NA,2021-06-15,"10:29:00","MST",NA,NA,NA,31,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",NA,"ND","Text","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-15 17:29:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902710-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",14,"14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 20:10:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908500-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.596,"0.596","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:40:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-25,"13:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.102,"0.102","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 20:37:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903507-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:55:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210909-5937650-0909-27-C","Sample-Routine","WATER",NA,2021-09-09,"13:47:00","MST",NA,NA,NA,12,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 20:47:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908152-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.411,"0.411","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 20:00:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904940-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"11:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",13.2,"13.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 18:11:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4997330-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 18:10:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3851","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996560-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",24,"24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 15:57:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.753,"0.753","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:00:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903180-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:35:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905052-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"13:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.431,"0.431","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 20:54:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904490-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.455,"0.455","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:30:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903190-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 20:25:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.979,"0.979","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 17:15:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"10:15:00","MST",NA,NA,NA,1.411,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.901,"0.901","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904800-0929-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-29,"09:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.978,"0.978","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 16:42:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903180-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:55:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-25,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 19:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908130-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.194,"0.194","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:30:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904241-0923-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-23,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.73,"1.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 18:50:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C","Sample-Routine","WATER",NA,2021-09-07,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.258,"0.258","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-07 21:30:00,NA,"Logan River below bridge on Golf Course Road","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905540-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"11:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",97.5,"97.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 18:44:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-23,"10:38:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 17:38:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946960-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.912,"0.912","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:48:00,NA,"SAN PITCH R AB MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904330-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.126,"0.126","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 19:25:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905630-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.597,"0.597","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:05:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-01,"14:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.119,"0.119","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 21:15:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.38,"4.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 18:15:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905670-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.829,"0.829","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 17:24:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900510-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.361,"0.361","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 22:45:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3874","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996566-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"11:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.67,"6.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 18:27:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-29-C","Sample-Routine","WATER",NA,2021-07-22,"10:37:00","MST",NA,NA,NA,17.6,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 17:37:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908140-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.323,"0.323","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 19:15:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905070-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",14.8,"14.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:15:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-15,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.1,"2.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:15:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.762,"0.762","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 20:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946840-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 16:20:00,NA,"San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990555-0817-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-17,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.104,"0.104","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 15:00:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-23,"09:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.789,"0.789","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 16:55:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0810-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-10,"16:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.228,"0.228","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 23:10:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-05,"09:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5953860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.408,"0.408","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-05 16:10:00,NA,"WIDE HOLLOW RES AB DAM 01","Lake",NA,"14070005",NA,NA,NA,NA,"37.7852700000","-111.6349000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4901930-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.711,"0.711","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 16:55:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-23-C","Sample-Routine","WATER",NA,2021-07-14,"12:00:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-27,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-14 19:00:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905400-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.461,"0.461","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:04:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3888","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995075-0817-LAB","Sample-Routine","WATER",NA,2021-08-17,"09:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.06,"3.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-17 16:59:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"3889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905631-0811-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-11,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.485,"0.485","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:45:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.733,"0.733","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:45:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3891","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202107281042:SR","Sample-Routine","WATER",NA,2021-07-28,"10:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-WRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-08-06,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-28 17:42:00,NA,"Whiterocks River 2","River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NONE","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-26,"16:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 23:15:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.46,"0.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:50:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C","Sample-Routine","WATER",NA,2021-07-12,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.1,"3.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 19:50:00,NA,"Dry Ck Near Utah Lake-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905770-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 18:10:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904770-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",77.6,"77.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:25:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"10:45:00","MST",NA,NA,NA,1.959,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.749,"0.749","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:45:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901100-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.02,"2.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:20:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C","Sample-Routine","WATER",NA,2021-07-14,"10:30:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.44,"1.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 17:30:00,NA,"BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908500-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"11:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.357,"0.357","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 18:33:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905040-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"14:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.408,"0.408","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 21:34:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-15,"11:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.304,"0.304","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:25:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:20:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C","Sample-Routine","WATER",NA,2021-07-26,"14:30:00","MST",NA,NA,NA,45.09,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 21:30:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"09:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.02,"3.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 16:05:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-18,"09:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.617,"0.617","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 16:00:00,NA,"PELICAN LAKE 01 W MIDLAKE Replicate of 4937130","Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908130-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.238,"0.238","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:30:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C","Sample-Routine","WATER",NA,2021-07-12,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",17.8,"17.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 20:50:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904241-0407-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-07,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.08,"1.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:45:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901700-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.03,"4.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:20:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.49,"3.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 18:00:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905700-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"16:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.434,"0.434","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:10:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-08-23,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 16:25:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C","Sample-Routine","WATER",NA,2021-08-22,"13:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.513,"0.513","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-22 20:19:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-23-C","Sample-Routine","WATER",NA,2021-07-21,"09:54:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 16:54:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"11:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.219,"0.219","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 18:32:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,2.378,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.951,"0.951","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:45:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901730-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.706,"0.706","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:25:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",10.6,"10.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 21:00:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"17:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.18,"0.18","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 00:15:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-18,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.101,"0.101","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 20:40:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-13,"10:15:00","MST",NA,NA,NA,1.408,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.722,"0.722","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5910273-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 17:55:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908152-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"16:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.283,"0.283","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 23:05:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.8,"0.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:15:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-23,"09:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.666,"0.666","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 16:55:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210713-5937650-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"12:52:00","MST",NA,NA,NA,22.4,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 19:52:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908280-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.239,"0.239","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:00:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904720-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:55:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-23,"14:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.473,"0.473","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 21:40:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-14,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.299,"0.299","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 17:15:00,NA,"BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904240-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.26,"1.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 16:35:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908744-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.184,"0.184","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 19:35:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-20,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.545,"0.545","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:55:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.472,"0.472","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:45:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C","Sample-Routine","WATER",NA,2021-07-14,"13:45:00","MST",NA,NA,NA,10.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.681,"0.681","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:45:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.8,"3.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:10:00,NA,"Dry Ck Near Utah Lake-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908130-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.545,"0.545","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:30:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904330-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.325,"0.325","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:45:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900470-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"17:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 00:35:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904110-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.875,"0.875","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 21:35:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-09,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:50:00,NA,"N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-13,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.406,"0.406","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 20:45:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C","Sample-Routine","WATER",NA,2021-09-23,"14:50:00","MST",NA,NA,NA,29,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.68,"0.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 21:50:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C","Sample-Routine","WATER",NA,2021-07-07,"11:35:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.179,"0.179","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:35:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.15,"3.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:50:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C","Sample-Routine","WATER",NA,2021-09-07,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.303,"0.303","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-07 18:00:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926390-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.17,"0.17","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:07:00,NA,"CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908281-0809-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.29,"0.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:15:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 17:30:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.667,"0.667","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:40:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C","Sample-Routine","WATER",NA,2021-09-14,"12:35:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.678,"0.678","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:35:00,NA,"CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"12:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.88,"0.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:20:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-5984855-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.3,"8.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 16:35:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-22,"13:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.172,"0.172","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-22 20:26:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902940-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.325,"0.325","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 22:20:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903080-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.72,"3.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 17:55:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904510-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.832,"0.832","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 17:50:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5910273-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"12:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 19:22:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904920-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.75,"8.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:55:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901700-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.61,"0.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:00:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901950-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.61,"0.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:40:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926203-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.575,"0.575","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:47:00,NA,"Huff Ck at Flat Rock","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903180-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.33,"1.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 17:40:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3965","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202109141209:SR","Sample-Routine","WATER",NA,2021-09-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DDC",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-09-14 19:09:00,NA,"Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908350-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.32,"0.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:40:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997250-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"11:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 18:07:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.855,"0.855","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 00:30:00,NA,"Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:50:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946450-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.66,"3.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:46:00,NA,"SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908281-0708-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-08,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.313,"0.313","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 18:25:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926390-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"10:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.214,"0.214","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 17:16:00,NA,"CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"11:15:00","MST",NA,NA,NA,1.307,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.732,"0.732","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:15:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905750-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"09:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.224,"0.224","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 16:53:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3975","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202109141254:QFB","Quality Control Sample-Field Blank","WATER",NA,2021-09-14,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-09-14 19:54:00,NA,"Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4828,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"3976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904770-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",79.6,"79.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:25:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905780-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"16:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.215,"0.215","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:35:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900822-0804-4-C","Sample-Routine","WATER",NA,2021-08-04,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900822",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.356,"0.356","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-04 20:40:00,NA,"Bear River 1.3 miles south of confluence with Otter Creek","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7433300000","-111.0784400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902700-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.28,"3.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:40:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C","Sample-Routine","WATER",NA,2021-07-07,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 21:30:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C","Sample-Routine","WATER",NA,2021-07-14,"13:45:00","MST",NA,NA,NA,10.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.631,"0.631","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:45:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903190-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:45:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"11:45:00","MST",NA,NA,NA,2.379,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.673,"0.673","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:45:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902040-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.91,"3.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:00:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990700-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.097,"0.097","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 19:25:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-17,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.086,"0.086","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-17 19:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-15,"10:23:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-15 17:23:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905770-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"16:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.154,"0.154","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 23:45:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-10,"13:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.34,"0.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-10 20:26:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"11:15:00","MST",NA,NA,NA,1.192,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.968,"0.968","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:15:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908697-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.198,"0.198","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:54:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0730-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-30,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-30 18:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"3993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"11:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.157,"0.157","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 18:32:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904800-0929-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-29,"09:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.976,"0.976","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 16:42:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"11:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 18:19:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"3996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"13:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.82,"0.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 20:09:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905590-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.964,"0.964","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 22:45:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"3998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.308,"0.308","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:25:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"3999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0811-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-11,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905750-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"16:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.158,"0.158","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:20:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905440-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.222,"0.222","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 17:45:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903770-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.45,"1.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:20:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908152-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.349,"0.349","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 22:20:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905078-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.58,"7.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:25:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908130-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.184,"0.184","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 19:35:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C","Sample-Routine","WATER",NA,2021-07-14,"13:35:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.234,"0.234","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:35:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904250-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 18:15:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"10:50:00","MST",NA,NA,NA,1.378,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.793,"0.793","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 17:50:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 17:00:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901200-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"08:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",21.3,"21.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 15:35:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904310-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.34,"1.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 19:55:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4012","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202109141209:QLD","Quality Control Sample-Lab Duplicate","WATER",NA,2021-09-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DDC",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:09:00,NA,"Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949890-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.247,"0.247","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:20:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905301-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.137,"0.137","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:45:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"14:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.789,"0.789","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 21:20:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-27,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.302,"0.302","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 17:30:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.11,"0.11","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 21:15:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908281-0927-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-27,"14:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.153,"0.153","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:12:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949670-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.769,"0.769","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:55:00,NA,"SEVIER R @ PANGUITCH AIRPORT RD XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8516400000","-112.4360400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-09,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 17:15:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C","Sample-Routine","WATER",NA,2021-09-01,"11:17:00","MST",NA,NA,NA,56.01,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.243,"0.243","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 18:17:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"11:40:00","MST",NA,NA,NA,1.866,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.801,"0.801","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:40:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926363-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.357,"0.357","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:17:00,NA,"South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-12,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.99,"1.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 20:10:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C","Sample-Routine","WATER",NA,2021-07-07,"11:40:00","MST",NA,NA,NA,13,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.195,"0.195","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:40:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-17,"16:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 23:15:00,NA,"MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990650-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.133,"0.133","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 19:15:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926380-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"09:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.249,"0.249","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 16:16:00,NA,"CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4029","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996550-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"09:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",21.8,"21.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 16:16:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.274,"0.274","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 19:15:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946756-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946756",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.921,"0.921","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 17:25:00,NA,"San Pitch R Bl Fairview WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903510-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.194,"0.194","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:35:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C","Sample-Routine","WATER",NA,2021-09-27,"11:10:00","MST",NA,NA,NA,45.12,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.288,"0.288","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 18:10:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905590-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.922,"0.922","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 22:45:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904250-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.03,"1.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:30:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-23,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 22:15:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904241-0812-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-12,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 16:40:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900751-0823-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-23,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.1,"0.1","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905640-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 21:00:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"12:50:00","MST",NA,NA,NA,2.193,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.78,"0.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:50:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900511-0929-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-29,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.655,"0.655","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:35:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4042","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996410-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.487,"0.487","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 17:24:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904870-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.284,"0.284","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:00:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4044","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1181Q","Quality Control Sample-Field Replicate","WATER",NA,2021-09-15,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-RARE - 1",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle",NA,"AMMONIA","UNFILTERED",0.881,"0.881","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-09-23,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-09-15 22:05:00,NA,"RARE - 1","Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4045","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996275-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"11:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.18,"9.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 18:49:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901100-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.28,"1.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 16:40:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C","Sample-Routine","WATER",NA,2021-09-22,"16:20:00","MST",NA,NA,NA,34,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.695,"0.695","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 23:20:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900872-0729-4-C","Sample-Routine","WATER",NA,2021-07-29,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900872",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-29 18:30:00,NA,"Hayden Fork 0.5 km ab confluence with Whiskey Creek and east of SR 150 milepost 38.6","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.7828900000","-110.8822100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.669,"0.669","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 18:50:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908350-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"12:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.377,"0.377","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:28:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.15,"0.15","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:30:00,NA,"Oak Creek above Oak Creek Dam","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4052","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202109141327:SR","Sample-Routine","WATER",NA,2021-09-14,"13:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-G4C",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-09-14 20:27:00,NA,"4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4865,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926363-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.33,"0.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:36:00,NA,"South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4054","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995210-1109-LAB","Sample-Routine","WATER",NA,2021-11-09,"10:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",17.6,"17.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-09 17:53:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926350-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.59,"1.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 21:17:00,NA,"CHALK CK AT US189 XING","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905070-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",16.8,"16.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:10:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.28,"0.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:06:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-18,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 23:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908140-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.099,"0.099","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 19:15:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C","Sample-Routine","WATER",NA,2021-09-07,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.267,"0.267","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-07 18:00:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4061","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996680-0817-LAB","Sample-Routine","WATER",NA,2021-08-17,"13:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)","Below Reporting Limit","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-17 20:12:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4062","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996022-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"12:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.93,"2.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 19:59:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901730-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.584,"0.584","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 21:00:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904940-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.84,"1.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:35:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-27,"13:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.268,"0.268","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:05:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908152-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.77,"0.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:20:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-14,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 01:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",13.1,"13.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:15:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990700-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.143,"0.143","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 19:25:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C","Sample-Routine","WATER",NA,2021-08-05,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.361,"0.361","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-05 17:30:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C","Sample-Routine","WATER",NA,2021-09-15,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.85,"0.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 17:35:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5913210-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 21:00:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904241-0812-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-12,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.34,"1.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 16:40:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905650-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.803,"0.803","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:20:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900602-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900602",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.304,"0.304","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 17:00:00,NA,"South Branch Otter Creek 300m ab road xing ab confluence with Middle Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7058400000","-111.2365700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.525,"0.525","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:15:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901180-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.03,"5.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 16:20:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C","Sample-Routine","WATER",NA,2021-09-27,"13:25:00","MST",NA,NA,NA,34,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.246,"0.246","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:25:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904110-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.561,"0.561","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:00:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905650-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:55:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-09,"14:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.138,"0.138","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 21:26:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"13:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.675,"0.675","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:20:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4083","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202109201525:SR","Sample-Routine","WATER",NA,2021-09-20,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-WRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-05,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 22:25:00,NA,"Whiterocks River 2","River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"12:20:00","MST",NA,NA,NA,2.086,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.789,"0.789","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:20:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-06,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-06 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.814,"0.814","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 17:40:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900510-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.83,"0.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:30:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996780-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"13:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 20:02:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.584,"0.584","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:52:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"4090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.607,"0.607","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:15:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905700-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.543,"0.543","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 18:30:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-23,"15:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 22:10:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904490-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.619,"0.619","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:30:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904810-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.48,"2.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:40:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-09,"08:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-09 15:28:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.923,"0.923","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:45:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-06,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.373,"0.373","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 18:15:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"16:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.14,"1.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 23:40:00,NA,"MATT WARNER RES W MIDLAKE 02","Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902941-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.622,"0.622","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:40:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905301-0928-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-28,"12:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.242,"0.242","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 19:56:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-09,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.729,"0.729","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 20:10:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905441-0928-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-28,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.274,"0.274","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 17:55:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"09:15:00","MST",NA,NA,NA,0.916,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.9,"0.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 16:15:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210729-4995710-0729-4-C","Sample-Routine","WATER",NA,2021-07-29,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-29 17:40:00,NA,"DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4105","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1175S","Sample-Routine","WATER",NA,2021-08-10,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BOR_ALP",NA,"UTEMTN-RUIN_SPG",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-08-17,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-08-10 21:15:00,NA,"Ruin spring-- highest flowing on White Mesa","Spring","Ruin spring-- highest flowing on White Mesa","14080201",NA,NA,NA,NA,"37.4998430000","-109.5225670000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83",5442,"ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Bureau of Reclamation monitoring for Animas- La Plata EIS","Collection of surface water quality data for interpretation of potential environmental impacts from increased irrigation, canal construction, surface water augmentation and trans-basin diversion; this was a 638 contract for sample collection between the Tribe''s Water Pollution Prevention Program and the BOR from 1993 to 1996, samples analyzed by Sangre De Cristo Laboratory in Alamosa, CO",NA,NA,NA,NA,NA +"4106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.87,"7.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:30:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903190-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.53,"1.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:10:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-15,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4109","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996190-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.47,"6.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 17:00:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.91,"1.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 20:45:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901930-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"08:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.533,"0.533","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 15:55:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-16,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.781,"0.781","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 19:45:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:40:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-29,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.115,"0.115","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-30 00:30:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901980-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.383,"0.383","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:40:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-27,"12:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.083,"0.083","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:25:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-22,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.36,"3.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 21:15:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-13,"10:15:00","MST",NA,NA,NA,1.408,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.662,"0.662","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.163,"0.163","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 18:28:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908160-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.182,"0.182","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 21:15:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:45:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4900751-0706-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-06,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903510-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.404,"0.404","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:15:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946650-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.65,"0.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:18:00,NA,"SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904740-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"11:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",15.3,"15.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 18:41:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900922-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900922",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.433,"0.433","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:15:00,NA,"Bear River 1.7km (1.1) mile north of Weston Lane on Mine Rd and west 140 meters","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7341200000","-111.0667100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C","Sample-Routine","WATER",NA,2021-08-31,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908713",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.261,"0.261","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 16:20:00,NA,"Malad River ab 20800 N Xing near Plymouth (UT09ST-113)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8882800000","-112.1881600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"08:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.599,"0.599","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 15:14:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"16:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 23:05:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-22,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 22:00:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996870-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"14:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 21:13:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C","Sample-Routine","WATER",NA,2021-09-01,"13:00:00","MST",NA,NA,NA,35,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.182,"0.182","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 20:00:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"11:45:00","MST",NA,NA,NA,2.379,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.691,"0.691","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:45:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990680-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.693,"0.693","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:00:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990997-0817-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-17,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.357,"0.357","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:25:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-15,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.61,"2.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:15:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.484,"0.484","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 17:40:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4139","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996566-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.99,"6.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 17:45:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902720-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.36,"2.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 20:55:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.57,"9.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:30:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C","Sample-Routine","WATER",NA,2021-08-06,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.101,"0.101","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-06 18:30:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4997300-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 18:55:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-18,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.454,"0.454","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 23:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903820-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.624,"0.624","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 17:20:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905040-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.73,"2.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 18:45:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-27-C","Sample-Routine","WATER",NA,2021-07-13,"10:02:00","MST",NA,NA,NA,22,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 17:02:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C","Sample-Routine","WATER",NA,2021-08-31,"10:35:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.08,"1.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 17:35:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"13:50:00","MST",NA,NA,NA,2.12,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.713,"0.713","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:50:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926390-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"09:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.167,"0.167","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 16:33:00,NA,"CHALK CREEK 4 MILES EAST OF UPTON","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.786,"0.786","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:15:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C","Sample-Routine","WATER",NA,2021-09-08,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 18:35:00,NA,"UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8396700000","-110.9321200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.73,"0.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 22:00:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902040-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.53,"3.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 18:35:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C","Sample-Routine","WATER",NA,2021-09-15,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.03,"4.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:10:00,NA,"Dry Ck Near Utah Lake-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0927-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-27,"18:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 01:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C","Sample-Routine","WATER",NA,2021-08-19,"11:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-19 18:22:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C","Sample-Routine","WATER",NA,2021-04-21,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949583",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.104,"0.104","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 21:15:00,NA,"Deer Creek above Mountain Spring Fork and below BLM/USFS boundary","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0005700000","-112.0554900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"12:50:00","MST",NA,NA,NA,2.751,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.776,"0.776","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:50:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",10.9,"10.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 19:00:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905192-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.287,"0.287","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 17:30:00,NA,"Logan River below bridge on Golf Course Road","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902720-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.29,"3.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:20:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903260-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.21,"1.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:55:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C","Sample-Routine","WATER",NA,2021-05-27,"10:55:00","MST",NA,NA,NA,3.98,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.354,"0.354","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 17:55:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:15:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C","Sample-Routine","WATER",NA,2021-06-21,"17:15:00","MST",NA,NA,NA,30,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.275,"0.275","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 00:15:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903191-0518-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-18,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:50:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"09:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.771,"0.771","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 16:10:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.66,"2.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 21:35:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4170","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202109141254:SR","Sample-Routine","WATER",NA,2021-09-14,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-09-14 19:54:00,NA,"Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4828,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902940-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:45:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C","Sample-Routine","WATER",NA,2021-08-30,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908734",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.194,"0.194","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-30 18:50:00,NA,"Logan River ab Diversion near Lauralin Dr in Logan (UT09ST-195)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7354100000","-111.8093100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905750-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.912,"0.912","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:45:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903190-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.67,"1.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:55:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-01,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.085,"0.085","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-01 22:05:00,NA,"N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904810-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.09,"8.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:00:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"10:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.623,"0.623","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 17:01:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904340-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:25:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949855-0920-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-20,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.104,"0.104","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:10:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949920-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.237,"0.237","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:05:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C","Sample-Routine","WATER",NA,2021-08-16,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.15,"0.15","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:50:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-27,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.797,"0.797","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:10:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905650-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.935,"0.935","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:20:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904340-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.37,"0.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 19:40:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:00:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.448,"0.448","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 18:00:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902050-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.2,"2.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:20:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4997675-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 18:30:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902940-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.575,"0.575","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:35:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901600-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.895,"0.895","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:10:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-05,"09:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5953860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.392,"0.392","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-05 16:10:00,NA,"WIDE HOLLOW RES AB DAM 01","Lake",NA,"14070005",NA,NA,NA,NA,"37.7852700000","-111.6349000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904990-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.873,"0.873","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:55:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904940-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",25.3,"25.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:25:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996850-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 21:30:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:25:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C","Sample-Routine","WATER",NA,2021-07-28,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.095,"0.095","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-28 19:30:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904965-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.56,"3.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:35:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905052-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.38,"2.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:45:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.231,"0.231","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 18:35:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908130-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.255,"0.255","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 18:40:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-21,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:05:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908697-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.372,"0.372","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 19:00:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"14:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.825,"0.825","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 21:15:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.579,"0.579","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 17:45:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4998400-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 17:14:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996810-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"14:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 21:52:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-06,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-06 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-29-C","Sample-Routine","WATER",NA,2021-06-16,"09:52:00","MST",NA,NA,NA,33.9,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-28,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-16 16:52:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905740-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.086,"0.086","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:55:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990997-0817-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-17,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.26,"0.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:25:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905670-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.34,"1.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:55:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"12:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.27,"0.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 19:30:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"12:30:00","MST",NA,NA,NA,2.283,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.883,"0.883","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:30:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-26,"14:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.08,"1.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 21:14:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210506-5937650-0506-29-C","Sample-Routine","WATER",NA,2021-05-06,"12:42:00","MST",NA,NA,NA,21.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 19:42:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903770-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.384,"0.384","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 20:00:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904510-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.76,"4.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:45:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-27,"13:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.369,"0.369","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:55:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926355-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.251,"0.251","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:30:00,NA,"South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904250-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 18:15:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"08:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.609,"0.609","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 15:14:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904724-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.87,"9.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 18:40:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-16,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 00:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905441-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.527,"0.527","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 22:35:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949930-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.162,"0.162","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 16:35:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903191-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.51,"1.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:50:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4227","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1172S","Sample-Routine","WATER",NA,2021-07-14,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-CW-N",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-07-26,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-07-14 17:55:00,NA,"Cottonwood wash north","River/Stream","Cottonwood Wash, north end of Tribal lands there. The ephemeral wash flows onto and off from the Tribal lands a few times on its journy to the San Juan River. Highly impacted by uranium mining.","14080201",NA,NA,NA,NA,"37.7415950000","-109.6886280000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904990-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.898,"0.898","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:30:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.632,"0.632","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:40:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.78,"2.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 21:45:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4906400-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.705,"0.705","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 20:40:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905090-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905090",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.4,"11.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:50:00,NA,"Logan Lagoons 002","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904900-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.29,"3.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:35:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.466,"0.466","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 19:15:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905440-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.158,"0.158","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:25:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4236","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202109141254:QFB","Quality Control Sample-Field Blank","WATER",NA,2021-09-14,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:54:00,NA,"Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4828,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.639,"0.639","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 00:30:00,NA,"Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4238","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1174S","Sample-Routine","WATER",NA,2021-08-10,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BOR_ALP",NA,"UTEMTN-ENTRANCE_SPG",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-08-17,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-08-10 22:45:00,NA,"Entrasnce seep-- nearest WM uranium mill","Spring","Entrasnce seep-- nearest WM uranium mill","14080201",NA,NA,NA,NA,"37.5321000000","-109.4920170000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83",5572,"ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Bureau of Reclamation monitoring for Animas- La Plata EIS","Collection of surface water quality data for interpretation of potential environmental impacts from increased irrigation, canal construction, surface water augmentation and trans-basin diversion; this was a 638 contract for sample collection between the Tribe''s Water Pollution Prevention Program and the BOR from 1993 to 1996, samples analyzed by Sangre De Cristo Laboratory in Alamosa, CO",NA,NA,NA,NA,NA +"4239","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995467-0817-LAB","Sample-Routine","WATER",NA,2021-08-17,"16:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.65,"1.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-17 23:41:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"14:30:00","MST",NA,NA,NA,2.259,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.585,"0.585","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:30:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"12:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.894,"0.894","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:20:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-5984855-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.02,"9.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 15:00:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-27,"12:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:25:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908745-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.587,"0.587","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:20:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905940-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"13:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.34,"2.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:21:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.563,"0.563","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 21:10:00,NA,"Clegg's Pond OUTFALL-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-16,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.311,"0.311","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 18:50:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905000-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.888,"0.888","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:45:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-28,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.263,"0.263","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-28 17:15:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-03,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-03 22:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904990-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.86,"0.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 19:00:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.534,"0.534","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 19:25:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"07:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.518,"0.518","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 14:58:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"4254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902050-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.93,"0.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:00:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904720-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:45:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996905",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.169,"0.169","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 18:35:00,NA,"Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.78,"0.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 17:00:00,NA,"CURRANT CK AT US6 XING 1.5MI W OF GOSHEN","River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"10:15:00","MST",NA,NA,NA,1.337,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.807,"0.807","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:15:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.424,"0.424","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 18:45:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901225-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 17:50:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4948002-0421-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-04-21,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4948002",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 21:20:00,NA,"BLM Richfield QA/QC Equipment Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.62,"5.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 18:50:00,NA,"DRY CK @ CR 77 XING AB UTAH LAKE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-01,"14:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.244,"0.244","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:25:00,NA,"HYRUM RES MIDLAKE 02","Lake",NA,"16010203",NA,NA,NA,NA,"41.6193800000","-111.8593800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905070-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",15.3,"15.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:15:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901950-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.76,"0.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:40:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C","Sample-Routine","WATER",NA,2021-06-21,"11:35:00","MST",NA,NA,NA,46.04,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.473,"0.473","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 18:35:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",12.6,"12.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 20:40:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C","Sample-Composite Without Parents","WATER",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190","6 Photic zone samples taken at 1m, 4m, 9m, 12m, 17m, and 20m; Licor 1% depth at 20m; sample time = 15:40",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.28,"0.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:40:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903500-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.651,"0.651","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:43:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"11:20:00","MST",NA,NA,NA,2.506,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.812,"0.812","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:20:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.962,"0.962","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:45:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949900-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.094,"0.094","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 16:15:00,NA,"ASAY CK AT US89 XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.5841500000","-112.4766000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904900-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.04,"2.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 21:45:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905301-0608-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-08,"09:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.206,"0.206","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:11:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904330-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.195,"0.195","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 19:05:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-14,"12:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.519,"0.519","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:25:00,NA,"CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902050-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.41,"3.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:50:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905590-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.869,"0.869","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 19:15:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901975-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.91,"2.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:45:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900510-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.651,"0.651","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:30:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903699-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:55:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908165-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.248,"0.248","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:30:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-16,"09:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.325,"0.325","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 16:35:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908100-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.588,"0.588","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:15:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 21:30:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908200-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.315,"0.315","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:30:00,NA,"GENES CK @ U-16 XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4998130-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"10:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 17:28:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.662,"0.662","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 23:00:00,NA,"Saratoga Springs at Cedar Valley","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"13:00:00","MST",NA,NA,NA,2.541,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.668,"0.668","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 20:00:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 19:20:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"09:40:00","MST",NA,NA,NA,1.423,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.905,"0.905","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 16:40:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.21,"1.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 17:00:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"14:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.648,"0.648","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 21:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-13,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 00:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C","Sample-Routine","WATER",NA,2021-05-26,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.02,"3.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-26 16:00:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-29,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.581,"0.581","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 21:35:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C","Sample-Routine","WATER",NA,2021-06-01,"14:00:00","MST",NA,NA,NA,11.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.321,"0.321","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 21:00:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.761,"0.761","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 21:10:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905301-0504-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-04,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.49,"0.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 16:00:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C","Sample-Routine","WATER",NA,2021-09-04,"07:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.83,"2.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 14:29:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926260-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.505,"0.505","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:10:00,NA,"HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C","Sample-Routine","WATER",NA,2021-04-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4958750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.11,"0.11","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-14 22:00:00,NA,"FISHER CK AT MOUTH","River/Stream",NA,"14030004",NA,NA,NA,NA,"38.7433200000","-109.1351100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-04-12,"09:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.592,"0.592","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 16:25:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-29-C","Sample-Routine","WATER",NA,2021-09-23,"11:10:00","MST",NA,NA,NA,2,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 18:10:00,NA,"DEER CREEK RES UPPER END 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.43,"2.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:25:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"14:30:00","MST",NA,NA,NA,1.745,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.785,"0.785","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 21:30:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904800-0406-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-06,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.961,"0.961","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:35:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.242,"0.242","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 21:45:00,NA,"N COTTONWOOD CK AT BEEF BASIN ROAD XING","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 18:15:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-16,"09:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.283,"0.283","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 16:35:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"12:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.457,"0.457","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:05:00,NA,"NEWTON RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"07:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4931650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.752,"0.752","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-29 14:00:00,NA,"PRICE R NEAR WOODSIDE AT US 50&6 XING","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.2645000000","-110.3429900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",15,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C","Sample-Routine","WATER",NA,2021-06-17,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952917",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.511,"0.511","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 00:00:00,NA,"Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C","Sample-Routine","WATER",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,12.02,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.949,"0.949","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:20:00,NA,"NEWTON RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C","Sample-Routine","WATER",NA,2021-06-30,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.326,"0.326","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 19:00:00,NA,"WHITE R AB CNFL AB BITTER CK","River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9699700000","-109.4109500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908697-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.242,"0.242","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:30:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903510-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 19:15:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901200-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.14,"3.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:20:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"09:25:00","MST",NA,NA,NA,1.509,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.616,"0.616","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 16:25:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904490-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.668,"0.668","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:20:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904720-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.914,"0.914","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 20:45:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901225-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.27,"3.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 17:30:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-25,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.436,"0.436","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 18:05:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210602-5937650-0602-23-C","Sample-Routine","WATER",NA,2021-06-02,"12:32:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 19:32:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905630-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.251,"0.251","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:30:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210629-4995600-0629-4-C","Sample-Routine","WATER",NA,2021-06-29,"09:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-29 16:53:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-26,"14:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.05,"1.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 21:14:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904943-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4,"4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:30:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C","Sample-Routine","WATER",NA,2021-07-07,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.327,"0.327","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:10:00,NA,"UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8396700000","-110.9321200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4330","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996190-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"11:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.33,"4.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 18:04:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"08:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.179,"0.179","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 15:02:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903191-0811-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-11,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.46,"1.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:15:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-14,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.954,"0.954","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 19:45:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-27,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.362,"0.362","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:50:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4998400-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"10:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.7,"3.7","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 17:28:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-16,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.447,"0.447","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-16 18:50:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903030-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.637,"0.637","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 21:10:00,NA,"NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-06-17,"14:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.395,"0.395","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-17 21:45:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C","Sample-Routine","WATER",NA,2021-04-08,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.226,"0.226","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-08 17:57:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905520-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.39,"4.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:10:00,NA,"HYRUM WWTP","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995041",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.3,"2.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 22:50:00,NA,"East side tributary to Timpanogos WWTP effluent AB Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908168-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.165,"0.165","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 20:50:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5913210-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"14:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 21:16:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.53,"0.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 18:30:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"13:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.694,"0.694","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 20:15:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C","Sample-Routine","WATER",NA,2021-06-11,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.105,"0.105","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-11 19:45:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913490-0520-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-20,"11:06:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-20 18:06:00,NA,"DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.485,"0.485","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 18:30:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990640-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.429,"0.429","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 16:45:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"15:30:00","MST",NA,NA,NA,1.999,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.519,"0.519","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 22:30:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-27,"11:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-27 18:18:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910302-0525-4-C","Sample-Routine","WATER",NA,2021-05-25,"11:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-25 18:51:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904724-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.74,"6.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:20:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"13:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 20:00:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.252,"0.252","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 19:00:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905301-0608-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-08,"09:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.23,"0.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:11:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.286,"0.286","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 18:45:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C","Sample-Routine","WATER",NA,2021-06-24,"12:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.216,"0.216","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-24 19:49:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-31,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.26,"1.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 17:50:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-5984855-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.5,"8.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 16:35:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908280-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.305,"0.305","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:45:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905441-0608-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-08,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.354,"0.354","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:00:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902710-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.3,"11.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 20:10:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C","Sample-Routine","WATER",NA,2021-06-18,"12:20:00","MST",NA,NA,NA,34.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.461,"0.461","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 19:20:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"13:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.621,"0.621","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 20:12:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904770-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.55,"4.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:15:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990680-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.771,"0.771","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:05:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C","Sample-Routine","WATER",NA,2021-09-10,"16:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.618,"0.618","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-10 23:45:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926203-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.619,"0.619","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:10:00,NA,"Huff Ck at Flat Rock","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905195-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.22,"0.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 15:45:00,NA,"LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901980-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.748,"0.748","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:10:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,2.634,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.682,"0.682","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:45:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4949950-0914-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-14,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.521,"0.521","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:50:00,NA,"OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870","River/Stream","Replicate of 4948870","16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908170-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.616,"0.616","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 21:30:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949630-0601-4-C","Sample-Routine","WATER",NA,2021-06-01,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.122,"0.122","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-01 17:40:00,NA,"SEVIER R AT U12 XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7494200000","-112.3749200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901225-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",8.43,"8.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:00:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994520-0903-4-C","Sample-Routine","WATER",NA,2021-09-03,"18:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.715,"0.715","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 01:40:00,NA,"LAST CHANCE AT BURNING HILLS RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997675-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"11:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 18:31:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C","Sample-Routine","WATER",NA,2021-04-12,"09:55:00","MST",NA,NA,NA,1.642,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-12 16:55:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.3,"0.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:25:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908140-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.439,"0.439","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 20:50:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908200-0503-4-C","Sample-Routine","WATER",NA,2021-05-03,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.255,"0.255","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-03 16:30:00,NA,"GENES CK @ U-16 XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955815",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 20:30:00,NA,"N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990997-0518-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-18,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.251,"0.251","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:25:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905780-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.358,"0.358","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 22:30:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210430-4995730-0430-4-C","Sample-Routine","WATER",NA,2021-04-30,"10:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-30 17:41:00,NA,"SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904726-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.46,"2.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:55:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.03,"2.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 18:00:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902000-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.38,"8.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 18:10:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902040-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.55,"2.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:10:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-29,"12:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:05:00,NA,"BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900751-0823-4/1-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-23,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 01:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.812,"0.812","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 19:15:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904720-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.65,"2.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 21:15:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990376-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.248,"0.248","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 19:20:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.695,"0.695","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 18:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C","Sample-Routine","WATER",NA,2021-05-12,"10:40:00","MST",NA,NA,NA,1.793,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.733,"0.733","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:40:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5910302-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"12:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 19:04:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905070-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"13:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",16.9,"16.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 20:22:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.963,"0.963","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:15:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905770-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.19,"1.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 20:30:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-13,"10:30:00","MST",NA,NA,NA,1.359,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.951,"0.951","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:30:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211208-4995710-1208-4-C","Sample-Routine","WATER",NA,2021-12-08,"09:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-08 16:58:00,NA,"DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-22,"16:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.842,"0.842","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 23:15:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"09:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 16:40:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903200-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:00:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"12:30:00","MST",NA,NA,NA,2.301,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.846,"0.846","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:30:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913490-1021-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-10-21,"09:42:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 16:42:00,NA,"DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990987-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.12,"3.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 17:20:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C","Sample-Routine","WATER",NA,2021-07-14,"13:35:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.183,"0.183","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:35:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904900-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.645,"0.645","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:40:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.573,"0.573","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:33:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901980-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.615,"0.615","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:35:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-31,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.576,"0.576","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 17:20:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4415","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996410-1109-LAB","Sample-Routine","WATER",NA,2021-11-09,"13:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.879,"0.879","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-09 20:56:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"13:50:00","MST",NA,NA,NA,2.12,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.718,"0.718","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:50:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997670-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 18:15:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904965-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.34,"3.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:35:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4419","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996560-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"09:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",25.2,"25.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 16:54:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4420","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996003-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"13:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.92,"2.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 20:07:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908168-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"14:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.133,"0.133","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:46:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902940-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.677,"0.677","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:45:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903260-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.446,"0.446","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:10:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901050-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.96,"1.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:50:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904340-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.64,"1.64","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:05:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904250-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 16:00:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900902-0728-4-C","Sample-Routine","WATER",NA,2021-07-28,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900902",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-28 18:15:00,NA,"Rabbit Creek ab Big Bend Spring at 6615 feet elevation","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.8950400000","-111.1309900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908165-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.207,"0.207","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:40:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 22:20:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904241-0721-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-21,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:20:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-06,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.401,"0.401","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 18:15:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990376-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.087,"0.087","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 19:40:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902710-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.24,"8.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 19:50:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901790-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.562,"0.562","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:00:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.539,"0.539","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:00:00,NA,"WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901180-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.1,"2.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:30:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:00:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902700-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.17,"3.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:50:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"11:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.553,"0.553","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 18:58:00,NA,"SPANISH FORK R AT HIGHWAY 91","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-29-C","Sample-Routine","WATER",NA,2021-07-22,"10:53:00","MST",NA,NA,NA,2.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 17:53:00,NA,"DEER CREEK RES UPPER END 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0921-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-21,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",13.8,"13.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:10:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.215,"0.215","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:25:00,NA,"WOODRUFF CK AB WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4624400000","-111.3488200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"07:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4937125",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.33,"1.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 14:55:00,NA,"Ouray Park Canal at Mouth ab Pelican Lake","Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.1958800000","-109.6969900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C","Sample-Routine","WATER",NA,2021-09-23,"10:05:00","MST",NA,NA,NA,56.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.648,"0.648","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 17:05:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-12,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 18:40:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:45:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-31,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.21,"1.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 17:20:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.795,"0.795","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:10:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926361-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"12:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.443,"0.443","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 19:58:00,NA,"Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902720-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.25,"2.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 20:35:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-13,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-13 15:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905780-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"09:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.315,"0.315","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 16:36:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-08-26,"16:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 23:50:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905740-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"16:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.143,"0.143","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:45:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903510-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"11:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.25,"0.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 18:43:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908100-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.61,"1.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 22:30:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-04,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.229,"0.229","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-05 00:00:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904770-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",19.9,"19.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 17:00:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990373-0420-4-C","Sample-Routine","WATER",NA,2021-04-20,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.456,"0.456","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-20 16:10:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-21,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4949971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.568,"0.568","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-21 20:15:00,NA,"E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970","River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901930-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 16:35:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905070-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",21.3,"21.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 17:10:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949635-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949635",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:21:00,NA,"Sevier River at bridge at US89 MP126 and 0.6 Mile ab Casto Wash","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7717900000","-112.3910200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905195",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.403,"0.403","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:00:00,NA,"LOGAN R AB US 89 XING BL 1ST DAM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995252",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.556,"0.556","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 21:10:00,NA,"Clegg's Pond OUTFALL-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926260-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.401,"0.401","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:30:00,NA,"HUFF CK AB CNFL/ CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"4468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-29,"17:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-30 00:35:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-29-C","Sample-Routine","WATER",NA,2021-07-21,"11:02:00","MST",NA,NA,NA,32.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 18:02:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.81,"2.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 21:30:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-05-12,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-12 17:15:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C","Sample-Routine","WATER",NA,2021-04-29,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.623,"0.623","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-29 21:00:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903950-0504-4-C","Sample-Routine","WATER",NA,2021-05-04,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.28,"1.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-04 19:30:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.88,"5.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 18:05:00,NA,"NEWTON CREEK AB CUTLER RESERVOIR","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8388200000","-111.9718900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-23-C","Sample-Routine","WATER",NA,2021-05-06,"09:12:00","MST",NA,NA,NA,7,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-06 16:12:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C","Sample-Routine","WATER",NA,2021-06-15,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.87,"2.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 21:45:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926203-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;305","Division of Water Quality","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.431,"0.431","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 18:10:00,NA,"Huff Ck at Flat Rock","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"4478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908697-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.366,"0.366","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 19:00:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990373-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.477,"0.477","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 16:10:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905940-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.77,"3.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:50:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905750-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.522,"0.522","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:45:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-06-21,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956291",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.464,"0.464","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 22:45:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290","River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4906400-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.33,"0.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 20:30:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0811-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-11,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903770-0519-4-C","Sample-Routine","WATER",NA,2021-05-19,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.298,"0.298","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 20:00:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996780-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"14:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-23 21:57:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990640-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.664,"0.664","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 17:00:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901975-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.58,"2.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 17:20:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.49,"2.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 18:30:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901600-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:35:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C","Sample-Routine","WATER",NA,2021-04-01,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.094,"0.094","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-01 22:00:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-05-19,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4933972",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.34,"0.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-19 18:00:00,NA,"WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970","River/Stream","Replicate of 4933970","14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900511-0811-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-11,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.322,"0.322","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 22:50:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904310-0609-4-C","Sample-Routine","WATER",NA,2021-06-09,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.906,"0.906","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-09 20:00:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210805-4936050-0805-23-C","Sample-Routine","WATER",NA,2021-08-05,"09:58:00","MST",NA,NA,NA,2,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-05 16:58:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905050-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.45,"2.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:20:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903190-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 22:35:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905780-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.644,"0.644","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 22:00:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904200-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.691,"0.691","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:10:00,NA,"CITY CK 3/4 MI W OF US91 AT CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9168700000","-111.8293900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904240-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.08,"1.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:40:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904870-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.496,"0.496","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:10:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-5984855-0607-4-C","Sample-Routine","WATER",NA,2021-06-07,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.76,"5.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-07 16:15:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-5984855-0517-4-C","Sample-Routine","WATER",NA,2021-05-17,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.78,"6.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-17 16:15:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"11:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.7,"4.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:35:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4505","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996570-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"09:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.57,"2.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 16:02:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904240-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:40:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C","Sample-Routine","WATER",NA,2021-05-02,"11:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.266,"0.266","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-02 18:57:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.089,"0.089","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 17:30:00,NA,"Oak Creek above Oak Creek Dam","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901200-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.28,"6.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:15:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4930007-0630-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-30,"08:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-30 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4511","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996540-0512-LAB","Sample-Routine","WATER",NA,2021-05-12,"10:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.97,"6.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-05-12 17:37:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C","Sample-Routine","WATER",NA,2021-05-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995465",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.98,"1.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-10 18:00:00,NA,"Beer Creek/Benjamin Slough","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905580-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 21:25:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901200-0622-4-C","Sample-Routine","WATER",NA,2021-06-22,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.09,"6.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-22 16:15:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C","Sample-Routine","WATER",NA,2021-06-23,"11:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.797,"0.797","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-23 18:17:00,NA,"Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4516","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996570-0616-LAB","Sample-Routine","WATER",NA,2021-06-16,"08:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.84,"1.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-16 15:36:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905640-0610-4-C","Sample-Routine","WATER",NA,2021-06-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.26,"1.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-10 19:45:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903507-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.288,"0.288","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:40:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-04-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4957002",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-14 22:00:00,NA,"BLM Moab Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.23,"0.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 18:10:00,NA,"BIRCH CK AB BIRCH CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5035500000","-111.3368600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-08,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903260-0518-4-C","Sample-Routine","WATER",NA,2021-05-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.753,"0.753","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-18 18:00:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901980-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.509,"0.509","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 17:10:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210511-4936420-0511-25-C","Sample-Routine","WATER",NA,2021-05-11,"10:27:00","MST",NA,NA,NA,10,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-05-11 17:27:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C","Sample-Routine","WATER",NA,2021-06-14,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-14 17:30:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C","Sample-Routine","WATER",NA,2021-04-13,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.96,"2.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-13 22:25:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904810-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.33,"2.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 17:15:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C","Sample-Routine","WATER",NA,2021-07-02,"09:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-02 16:17:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905650-0505-4-C","Sample-Routine","WATER",NA,2021-05-05,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.524,"0.524","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-05 18:00:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908130-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.228,"0.228","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 21:00:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-27,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.131,"0.131","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 22:05:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-5994550-0822-4-C","Sample-Routine","WATER",NA,2021-08-22,"08:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.377,"0.377","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-22 15:59:00,NA,"PARIA R AT OLD TOWN SITE","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C","Sample-Routine","WATER",NA,2021-06-21,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996913",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.247,"0.247","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-21 19:54:00,NA,"Left Fork Little Hobble Creek@Forest Service Road 121 Xing","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-22-C","Sample-Routine","WATER",NA,2021-06-02,"09:46:00","MST",NA,NA,NA,2,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-06-15,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-06-02 16:46:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210826-4995730-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-26 17:57:00,NA,"SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908350-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.457,"0.457","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 18:30:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4998400-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"09:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 16:13:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997300-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"11:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 18:57:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4539","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996680-0615-LAB","Sample-Routine","WATER",NA,2021-06-15,"13:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.279,"0.279","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-06-15 20:47:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.291,"0.291","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:40:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946650-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:20:00,NA,"SAN PITCH R 1MI W OF CHESTER ON U-117","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4542","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996275-0414-LAB","Sample-Routine","WATER",NA,2021-04-14,"11:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.69,"5.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-04-14 18:16:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905631-0407-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-04-07,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.657,"0.657","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 17:50:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908745-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.544,"0.544","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:25:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-18,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-18 16:30:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902050-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.74,"1.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:25:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904990-0406-4-C","Sample-Routine","WATER",NA,2021-04-06,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.891,"0.891","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-06 19:10:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908280-0405-4-C","Sample-Routine","WATER",NA,2021-04-05,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.323,"0.323","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-05 19:15:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-05-25,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-05-25 21:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4955790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.104,"0.104","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 22:15:00,NA,"Indian Ck 1/2 mile south of Newspaper Rock","River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"14:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 21:11:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905580-0407-4-C","Sample-Routine","WATER",NA,2021-04-07,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-04-07 18:40:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902900-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.87,"0.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:55:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903190-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.36,"1.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 21:55:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-06-15,"16:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-15 23:40:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996870-0428-4-C","Sample-Routine","WATER",NA,2021-04-28,"14:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-05-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-04-28 21:39:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904870-0608-4-C","Sample-Routine","WATER",NA,2021-06-08,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.476,"0.476","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-06-08 20:10:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905070-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"13:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",16.4,"16.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 20:22:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-24,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.592,"0.592","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 18:00:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926290-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.274,"0.274","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:32:00,NA,"CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905441-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.139,"0.139","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 22:35:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926370-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.162,"0.162","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 16:10:00,NA,"CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4563","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996020-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"13:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 20:54:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"13:10:00","MST",NA,NA,NA,2.118,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.796,"0.796","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 20:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5910250-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"12:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 19:38:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901600-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.878,"0.878","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:10:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908100-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.548,"0.548","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:40:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900470-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"17:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1,"1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 00:35:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4569","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996540-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"11:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.98,"6.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 18:09:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C","Sample-Routine","WATER",NA,2021-08-31,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.238,"0.238","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 18:30:00,NA,"FISH CK AB SCOFIELD RES","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904110-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.649,"0.649","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 21:35:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"13:30:00","MST",NA,NA,NA,1.539,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.684,"0.684","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 20:30:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-26,"13:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 20:08:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901200-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",18.5,"18.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:15:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4575","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995043-0817-LAB","Sample-Routine","WATER",NA,2021-08-17,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.41,"7.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-17 16:25:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5910302-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"11:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 18:26:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C","Sample-Routine","WATER",NA,2021-07-07,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.375,"0.375","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 17:55:00,NA,"W FK BEAR R AB WHITNEY RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8257800000","-110.9293400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.325,"0.325","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:50:00,NA,"E FK LITTLE BEAR R AB PORCUPINE RES","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5182700000","-111.7138200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-14,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.419,"0.419","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:10:00,NA,"CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905070-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",17,"17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:50:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904810-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.55,"2.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:40:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908130-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.398,"0.398","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 19:35:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900652-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900652",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.217,"0.217","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 16:30:00,NA,"South Branch Otter Creek 260m bl Otter Creek cutoff Rd xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7024000000","-111.2539400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901431-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.81,"2.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:40:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.196,"0.196","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 17:40:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"4586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-5984855-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.27,"8.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 15:00:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C","Sample-Routine","WATER",NA,2021-09-29,"12:20:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.791,"0.791","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:20:00,NA,"BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4999202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.224,"0.224","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 17:40:00,NA,"Mill B South Fork 0.9 mile above Big Cottonwood Creek confluence","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6222000000","-111.7114000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901975-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.77,"2.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:25:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.754,"0.754","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 21:00:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903200-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:25:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0719-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-19,"17:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 00:20:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4593","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996020-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.99,"2.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 19:00:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926360-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.324,"0.324","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:52:00,NA,"CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902710-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:50:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905050-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.475,"0.475","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 21:05:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905670-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.886,"0.886","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 17:24:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949640-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.42,"0.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:20:00,NA,"SEVIER R @ SANFORD ROAD XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.9419200000","-112.4166000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-23-C","Sample-Routine","WATER",NA,2021-07-13,"09:49:00","MST",NA,NA,NA,3,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 16:49:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.454,"0.454","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:45:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949630-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.177,"0.177","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:25:00,NA,"SEVIER R AT U12 XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7494200000","-112.3749200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908100-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.424,"0.424","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:35:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4603","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1177S","Sample-Routine","WATER",NA,2021-08-10,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BOR_ALP",NA,"UTEMTN-Cow Camp Spring",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-08-17,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-08-10 18:45:00,NA,"Cow Camp Spring","Spring",NA,"14080201",NA,NA,NA,NA,"37.5238671000","-109.5381037000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Bureau of Reclamation monitoring for Animas- La Plata EIS","Collection of surface water quality data for interpretation of potential environmental impacts from increased irrigation, canal construction, surface water augmentation and trans-basin diversion; this was a 638 contract for sample collection between the Tribe''s Water Pollution Prevention Program and the BOR from 1993 to 1996, samples analyzed by Sangre De Cristo Laboratory in Alamosa, CO",NA,NA,NA,NA,NA +"4604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903699-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903699",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:50:00,NA,"CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:30:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901790-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.321,"0.321","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:10:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4997250-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 18:25:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990987-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.93,"1.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:40:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908160-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.138,"0.138","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:05:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-25,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:35:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"11:30:00","MST",NA,NA,NA,2.475,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.677,"0.677","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:30:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903510-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.237,"0.237","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:35:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-01,"15:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 22:43:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"12:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.87,"0.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:30:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"09:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.663,"0.663","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:50:00,NA,"MANTUA RES S MIDLAKE 02","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908140-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.246,"0.246","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 17:35:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990640-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.66,"0.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:25:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C","Sample-Routine","WATER",NA,2021-08-06,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.092,"0.092","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-06 18:30:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908100-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.496,"0.496","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 19:40:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4620","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995043-0914-LAB","Sample-Routine","WATER",NA,2021-09-14,"09:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.26,"6.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-14 16:16:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C","Sample-Routine","WATER",NA,2021-09-24,"16:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.73,"0.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-24 23:12:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"4622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"10:05:00","MST",NA,NA,NA,1.385,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.693,"0.693","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:05:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990996-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.212,"0.212","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 19:05:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901950-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.546,"0.546","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:40:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908280-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.582,"0.582","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:10:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901180-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"08:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.37,"4.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 15:30:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990680-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.912,"0.912","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:05:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-23,"09:52:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 16:52:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996850-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 19:30:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4630","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996190-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"10:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.62,"2.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 17:21:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-23,"15:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 22:15:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4632","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996190-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.45,"5.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 17:14:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901975-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.64,"2.64","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:25:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.435,"0.435","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 21:00:00,NA,"Logan River at Water Lab lower bridge","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-16,"11:10:00","MST",NA,NA,NA,1.38,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.15,"1.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:10:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"11:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.848,"0.848","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:47:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902710-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",13.6,"13.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:45:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-08-23,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.117,"0.117","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 16:25:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.3,"3.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:10:00,NA,"Dry Ck Near Utah Lake-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904490-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.441,"0.441","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 17:35:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905650-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"12:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.709,"0.709","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:53:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C","Sample-Routine","WATER",NA,2021-08-17,"16:30:00","MST",NA,NA,NA,5.06,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 23:30:00,NA,"MATT WARNER RES AB DAM","Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908140-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.58,"0.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:20:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902050-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.35,"1.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:00:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-18,"09:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.763,"0.763","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 16:10:00,NA,"PELICAN LAKE 02 E MIDLAKE","Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-15,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 22:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-08,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 15:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908281-0927-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-27,"14:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.222,"0.222","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:12:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-06,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.367,"0.367","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:50:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0721-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-21,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 21:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.68,"2.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 22:00:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0812-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-12,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 21:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904330-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.451,"0.451","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:00:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905770-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"09:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.155,"0.155","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 16:12:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901432-0921-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-21,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.88,"2.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:50:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990640-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.827,"0.827","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 17:45:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.804,"0.804","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 00:00:00,NA,"Saratoga Springs at Cedar Valley","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902040-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.94,"4.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:30:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C","Sample-Routine","WATER",NA,2021-08-30,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.421,"0.421","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-30 16:10:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905040-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.416,"0.416","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:25:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"10:15:00","MST",NA,NA,NA,1.411,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.777,"0.777","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5910302-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 19:05:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210805-4936050-0805-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-05,"09:57:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-05 16:57:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C","Sample-Routine","WATER",NA,2021-09-15,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",18.5,"18.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 19:15:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-26,"13:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.219,"0.219","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 20:15:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.99,"1.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:31:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.636,"0.636","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 17:30:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4668","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202109141254:SR","Sample-Routine","WATER",NA,2021-09-14,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:54:00,NA,"Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4828,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-03,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-03 15:05:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908168-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:00:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905400-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.377,"0.377","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:20:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-12,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 18:40:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905000-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.749,"0.749","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:50:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904990-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:15:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901600-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.869,"0.869","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:35:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4952380-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"07:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.426,"0.426","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 14:25:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905400-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.219,"0.219","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:20:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905750-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.172,"0.172","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:15:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903510-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.158,"0.158","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 18:20:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903190-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:45:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908160-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.19,"0.19","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 21:15:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-13,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-13 15:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903820-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.456,"0.456","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:15:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C","Sample-Routine","WATER",NA,2021-07-01,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",18,"18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-01 16:30:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-06,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-06 15:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.798,"0.798","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:45:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901431-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.05,"4.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:00:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905750-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"16:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.143,"0.143","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:20:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C","Sample-Routine","WATER",NA,2021-09-27,"10:55:00","MST",NA,NA,NA,13.1,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.264,"0.264","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 17:55:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C","Sample-Routine","WATER",NA,2021-07-26,"13:45:00","MST",NA,NA,NA,32.05,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.231,"0.231","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 20:45:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905050-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.788,"0.788","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0810-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-10,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 00:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-15,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.114,"0.114","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 22:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926360-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.27,"0.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 18:05:00,NA,"CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994550-0904-4-C","Sample-Routine","WATER",NA,2021-09-04,"09:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.29,"1.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 16:34:00,NA,"PARIA R AT OLD TOWN SITE","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-5994650-0701-4-C","Sample-Routine","WATER",NA,2021-07-01,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.157,"0.157","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-01 21:15:00,NA,"DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990373-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.532,"0.532","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 17:00:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908500-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.61,"0.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:30:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901930-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.658,"0.658","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 15:50:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4700","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996410-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"10:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.96,"0.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 17:47:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-27-C","Sample-Routine","WATER",NA,2021-07-22,"10:28:00","MST",NA,NA,NA,10,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 17:28:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",15.8,"15.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 19:10:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210909-5937650-0909-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-09,"13:43:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 20:43:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.306,"0.306","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:25:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990376-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.139,"0.139","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 19:40:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C","Sample-Routine","WATER",NA,2021-07-26,"11:00:00","MST",NA,NA,NA,32.05,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.234,"0.234","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 18:00:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"12:55:00","MST",NA,NA,NA,2.261,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.765,"0.765","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:55:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.69,"2.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 22:00:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.52,"3.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 21:05:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-15,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 19:45:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"10:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.252,"0.252","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 17:58:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901980-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.342,"0.342","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:35:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-18,"08:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.642,"0.642","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 15:50:00,NA,"PELICAN LAKE 01 W MIDLAKE","Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.88,"3.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 17:25:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908712",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.138,"0.138","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:40:00,NA,"Mill Creek above North Fork (UT09ST-112)","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.9303200000","-110.7400600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905070-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",16.1,"16.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:10:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905770-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.544,"0.544","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 20:30:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902050-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.24,"2.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:20:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 17:40:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990555-0727-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-27,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 16:15:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904726-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.79,"4.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:05:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905630-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.965,"0.965","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:40:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905770-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"09:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.115,"0.115","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 16:12:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902000-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6,"6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:10:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901100-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 16:30:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-5994650-0822-4-C","Sample-Routine","WATER",NA,2021-08-22,"10:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.316,"0.316","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-22 17:52:00,NA,"DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"13:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.788,"0.788","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 20:40:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908152-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.647,"0.647","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:00:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901950-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.771,"0.771","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:30:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917520-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"14:15:00","MST",NA,NA,NA,1.385,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.907,"0.907","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 21:15:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908281-0809-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.459,"0.459","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:15:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-29-C","Sample-Routine","WATER",NA,2021-09-15,"10:45:00","MST",NA,NA,NA,17.9,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-15 17:45:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990997-0727-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-27,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990997",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.213,"0.213","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 19:10:00,NA,"N. CANYON CK @ CANYON CREEK DR Replicate of 4990996","River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905040-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"14:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.329,"0.329","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 21:34:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905301-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.509,"0.509","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:05:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C","Sample-Routine","WATER",NA,2021-07-07,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.272,"0.272","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:10:00,NA,"UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8396700000","-110.9321200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210928-4995600-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-29 15:00:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4738","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1173Q","Quality Control Sample-Field Replicate","WATER",NA,2021-07-14,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-CW-N",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","NITRATE","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","Green Analytical Laboratories",2021-07-16,NA,"Lower Reporting Limit",0.02,0.02,"Numeric","MG/L",NA,"STORET",2021-07-14 18:00:00,NA,"Cottonwood wash north","River/Stream","Cottonwood Wash, north end of Tribal lands there. The ephemeral wash flows onto and off from the Tribal lands a few times on its journy to the San Juan River. Highly impacted by uranium mining.","14080201",NA,NA,NA,NA,"37.7415950000","-109.6886280000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-09,"08:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-09 15:28:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.77,"0.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 18:10:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.249,"0.249","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 18:55:00,NA,"BIRCH CK AB BIRCH CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5035500000","-111.3368600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905078-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.6,"11.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 18:00:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0720-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-20,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904330-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.116,"0.116","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 19:10:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904870-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.471,"0.471","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 21:20:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-15,"11:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.291,"0.291","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:55:00,NA,"HYRUM RES AB DAM 01 Replicate of 5901670","Lake","Replicate of 5901670","16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C","Sample-Routine","WATER",NA,2021-07-01,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",18.2,"18.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-01 16:30:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-20,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.601,"0.601","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:55:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"13:47:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.196,"0.196","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 20:47:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4750","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202109271240:SR","Sample-Routine","WATER",NA,2021-09-27,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-IDR",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-12,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:40:00,NA,"INDIAN CREEK","River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902900-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.448,"0.448","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 21:35:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 17:00:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-06,"11:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.312,"0.312","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 18:35:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900751-0823-4/1-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-23,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.297,"0.297","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 01:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908100-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.35,"0.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 19:40:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C","Sample-Routine","WATER",NA,2021-09-27,"14:15:00","MST",NA,NA,NA,37,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.253,"0.253","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:15:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908745-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.527,"0.527","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:20:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C","Sample-Routine","WATER",NA,2021-08-16,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:50:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"09:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.865,"0.865","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 16:10:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.21,"1.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 17:20:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908281-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.366,"0.366","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:10:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904726-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904726",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.82,"4.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:05:00,NA,"Clay Slough at 7000 N crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C","Sample-Routine","WATER",NA,2021-09-24,"16:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.654,"0.654","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-24 23:12:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"4764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905940-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.03,"2.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:20:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4765","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995075-0713-LAB","Sample-Routine","WATER",NA,2021-07-13,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.58,"2.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-13 17:00:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904990-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.886,"0.886","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:30:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.797,"0.797","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 20:10:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901790-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.528,"0.528","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:00:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-07,"11:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.245,"0.245","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:25:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903500-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.67,"1.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:35:00,NA,"SUMMIT CK AB CNFL / BEAR R","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C","Sample-Routine","WATER",NA,2021-08-27,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.373,"0.373","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-27 17:45:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903180-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.45,"1.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 20:10:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902720-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.86,"2.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:05:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-29-C","Sample-Routine","WATER",NA,2021-10-20,"10:54:00","MST",NA,NA,NA,26,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 17:54:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4775","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202109271240:SR","Sample-Routine","WATER",NA,2021-09-27,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-IDR",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-09-27 19:40:00,NA,"INDIAN CREEK","River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904943-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.33,"2.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:50:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904943-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.34,"4.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:30:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-29-C","Sample-Routine","WATER",NA,2021-07-22,"09:50:00","MST",NA,NA,NA,31,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 16:50:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C","Sample-Composite Without Parents","WATER",NA,2021-09-01,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088","Licor 1% depth at 18m; 6 Photic Zone samples taken at 1m, 5m, 8m, 11m, 14m, and 18m to a max depth of 18m; sample time = 11:00; vandorn; Field data from USGS platform station # 415642111172701",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.181,"0.181","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 18:00:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.722,"0.722","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:45:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903400-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.491,"0.491","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 18:45:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-06,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.363,"0.363","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:30:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4783","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996680-0713-LAB","Sample-Routine","WATER",NA,2021-07-13,"14:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.413,"0.413","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-13 21:14:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0720-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-20,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.181,"0.181","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 01:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902941-0921-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-21,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.747,"0.747","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 22:25:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905580-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.975,"0.975","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 22:05:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901432-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.68,"2.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:35:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"16:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 23:00:00,NA,"MATT WARNER RES AB DAM","Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-23,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 20:30:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0809-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-09,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.282,"0.282","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C","Sample-Routine","WATER",NA,2021-07-02,"09:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.6,"0.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-02 16:17:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-04,"13:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.279,"0.279","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 20:57:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"11:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.373,"0.373","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 18:03:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905780-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"16:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.341,"0.341","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:35:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903260-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.577,"0.577","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:30:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904240-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:15:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905050-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.427,"0.427","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 21:05:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-03,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.13,"0.13","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-03 15:05:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908697-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.185,"0.185","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 19:00:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900772-0916-4-C","Sample-Routine","WATER",NA,2021-09-16,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900772",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.32,"0.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-16 18:00:00,NA,"Stillwater Fork 500 meters ab trailhead at Christmas Meadows Campground","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8195000000","-110.8022400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4801","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1183S","Sample-Routine","WATER",NA,2021-09-22,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-WM_GWMW_W",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle",NA,"AMMONIA","UNFILTERED",0.349,"0.349","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-09-30,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-09-22 21:30:00,NA,"white mesa ground water monitoring well; west","Well","monitoring well downgradient of White Mesa Uranium Mill, southwest","14080201",NA,NA,NA,NA,"37.4897350000","-109.5180720000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83",5491,"ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"4802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904770-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",16.2,"16.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:00:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-29-C","Sample-Routine","WATER",NA,2021-07-21,"11:34:00","MST",NA,NA,NA,34,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 18:34:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-27,"11:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.244,"0.244","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 18:45:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905630-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"13:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.481,"0.481","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:08:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"13:10:00","MST",NA,NA,NA,2.118,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.885,"0.885","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 20:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903190-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.64,"1.64","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 20:25:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990650-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.128,"0.128","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 19:15:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4944352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 18:00:00,NA,"South Fork Baker Canyon ab confluence with North Fork Baker Canyon","River/Stream",NA,"16030007",NA,NA,NA,NA,"38.2778500000","-112.5521600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",1,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-29-C","Sample-Routine","WATER",NA,2021-09-23,"10:16:00","MST",NA,NA,NA,30.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 17:16:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4811","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1176Q","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BOR_ALP",NA,"UTEMTN-RUIN_SPG",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-08-17,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-08-10 21:20:00,NA,"Ruin spring-- highest flowing on White Mesa","Spring","Ruin spring-- highest flowing on White Mesa","14080201",NA,NA,NA,NA,"37.4998430000","-109.5225670000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83",5442,"ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Bureau of Reclamation monitoring for Animas- La Plata EIS","Collection of surface water quality data for interpretation of potential environmental impacts from increased irrigation, canal construction, surface water augmentation and trans-basin diversion; this was a 638 contract for sample collection between the Tribe''s Water Pollution Prevention Program and the BOR from 1993 to 1996, samples analyzed by Sangre De Cristo Laboratory in Alamosa, CO",NA,NA,NA,NA,NA +"4812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908168-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 21:10:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4813","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996100-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.27,"0.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 18:28:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-22,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.51,"3.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 21:15:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.861,"0.861","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 18:00:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902710-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",10.3,"10.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 19:50:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-24,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.54,"0.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 17:15:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901225-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",18.8,"18.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:20:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901950-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.437,"0.437","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:55:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C","Sample-Routine","WATER",NA,2021-08-05,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.464,"0.464","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-05 23:00:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.974,"0.974","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:00:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-21,"11:21:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 18:21:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",10.4,"10.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:00:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:25:00,NA,"WOODRUFF CK AB WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4624400000","-111.3488200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905580-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.817,"0.817","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 22:05:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-28-C","Sample-Routine","WATER",NA,2021-09-23,"09:59:00","MST",NA,NA,NA,23,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 16:59:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-10,"13:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-10 20:26:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C","Sample-Routine","WATER",NA,2021-09-23,"14:50:00","MST",NA,NA,NA,29,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.609,"0.609","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 21:50:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904800-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.71,"0.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:50:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901431-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.03,"4.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:00:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902700-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.7,"2.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 20:00:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949855-0719-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:00:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908165-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.202,"0.202","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:30:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-29-C","Sample-Routine","WATER",NA,2021-09-21,"12:15:00","MST",NA,NA,NA,27.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 19:15:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-09,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951266",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:50:00,NA,"N FK VIRGIN R AT WSA BNDRY Replicate of 4951265","River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908281-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.226,"0.226","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:10:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926290-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.421,"0.421","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:28:00,NA,"CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905750-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.19,"0.19","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:15:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904330-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.486,"0.486","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:00:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C","Sample-Routine","WATER",NA,2021-08-31,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.492,"0.492","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 18:55:00,NA,"MUD CREEK AB SCOFIELD RES","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4841","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996275-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"11:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.07,"7.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 18:09:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-18,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.111,"0.111","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 20:50:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4843","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996560-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"08:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",26.2,"26.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 15:58:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-13,"10:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:10:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990987-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.92,"1.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 17:20:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-5984855-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"08:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.4,"11.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 15:20:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926290-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.251,"0.251","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:50:00,NA,"CHALK CREEK AB CNFL/ SOUTH FORK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.856,"0.856","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:15:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905780-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.497,"0.497","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:35:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.413,"0.413","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:09:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908170-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"14:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.283,"0.283","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:46:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904965-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.04,"4.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:45:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5910160-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"13:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 20:21:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-16,"11:10:00","MST",NA,NA,NA,1.38,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.785,"0.785","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:10:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905780-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.292,"0.292","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:35:00,NA,"E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.339,"0.339","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:06:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901432-0921-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-21,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.3,"2.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:50:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-27-C","Sample-Routine","WATER",NA,2021-07-22,"09:50:00","MST",NA,NA,NA,16,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 16:50:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5910160-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 20:15:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995120",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.6,"3.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:50:00,NA,"LINDON DRAIN AT CO RD XING AB UTLAKE","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.265,"0.265","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 17:40:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4862","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4994952-0817-LAB","Sample-Routine","WATER",NA,2021-08-17,"08:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.54,"1.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-17 15:58:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C","Sample-Routine","WATER",NA,2021-09-07,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905192",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.214,"0.214","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-07 21:30:00,NA,"Logan River below bridge on Golf Course Road","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4949950-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"10:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.439,"0.439","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:04:00,NA,"OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870","River/Stream","Replicate of 4948870","16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996780-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"14:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 21:38:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905940-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.22,"3.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:50:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.984,"0.984","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:15:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4868","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996540-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"10:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.09,"8.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 17:31:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C","Sample-Routine","WATER",NA,2021-09-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.114,"0.114","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-10 18:00:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.376,"0.376","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 16:25:00,NA,"WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903191-0922-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-22,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.56,"1.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 20:30:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908500-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.464,"0.464","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 17:10:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"13:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.717,"0.717","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 20:25:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C","Sample-Routine","WATER",NA,2021-09-04,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.215,"0.215","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 20:45:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.41,"4.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 16:50:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946750-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.467,"0.467","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 17:50:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4904330-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.599,"0.599","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 19:15:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0812-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-12,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 21:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904490-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.456,"0.456","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:40:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.893,"0.893","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 21:00:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C","Sample-Routine","WATER",NA,2021-07-12,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",17.6,"17.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 20:50:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949710-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.669,"0.669","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:10:00,NA,"Sevier R bl USU Farm @ Sandwash Rd Xing","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8762300000","-112.4277600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901930-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.57,"0.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:00:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908130-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.888,"0.888","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:30:00,NA,"BIG CREEK AB CONFL RANDOLPH CREEK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-29-C","Sample-Routine","WATER",NA,2021-09-23,"10:46:00","MST",NA,NA,NA,17.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 17:46:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0811-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-11,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997670-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 17:22:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904800-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.835,"0.835","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:50:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905200-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.352,"0.352","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:40:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997300-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 17:38:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904724-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.24,"2.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:20:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.04,"4.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 17:25:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4998130-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"09:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 16:34:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0720-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-20,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 01:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.99,"0.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 17:40:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C","Sample-Routine","WATER",NA,2021-09-07,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.182,"0.182","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-07 23:00:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"12:20:00","MST",NA,NA,NA,2.086,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.722,"0.722","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:20:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-13,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.774,"0.774","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:30:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-13,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 20:45:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0929-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-29,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"12:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.824,"0.824","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:30:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996870-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 19:15:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C","Sample-Routine","WATER",NA,2021-09-24,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.441,"0.441","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-24 21:17:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"4904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904240-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.14,"1.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 16:35:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905200-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.171,"0.171","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:00:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-23,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.505,"0.505","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 20:30:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.405,"0.405","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:00:00,NA,"WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904870-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.529,"0.529","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 21:20:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949892-0809-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-09,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.244,"0.244","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 18:30:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4949070-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.407,"0.407","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:50:00,NA,"OTTER CK AT U62 XING N OF KOOSHAREM","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5641400000","-111.8493600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905301-0928-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-28,"12:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.168,"0.168","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 19:56:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C","Sample-Routine","WATER",NA,2021-09-02,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.153,"0.153","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-02 16:55:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902940-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.752,"0.752","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 22:20:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902700-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.45,"3.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:40:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"17:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954775",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.184,"0.184","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 00:15:00,NA,"SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908500-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.412,"0.412","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 16:30:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904740-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.33,"2.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:45:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.485,"0.485","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:30:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997330-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 18:05:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"13:47:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.21,"0.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 20:47:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C","Sample-Routine","WATER",NA,2021-09-21,"15:15:00","MST",NA,NA,NA,45,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.503,"0.503","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 22:15:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908744-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.169,"0.169","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 19:35:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C","Sample-Routine","WATER",NA,2021-07-07,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 21:30:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.393,"0.393","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:00:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905770-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.13,"0.13","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 18:10:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"09:45:00","MST",NA,NA,NA,0.775,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.18,"1.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 16:45:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.6,"9.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 22:35:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"14:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.12,"1.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 21:11:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C","Sample-Routine","WATER",NA,2021-08-30,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908734",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.237,"0.237","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-30 18:50:00,NA,"Logan River ab Diversion near Lauralin Dr in Logan (UT09ST-195)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7354100000","-111.8093100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905640-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 21:00:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990640-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.12,"1.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 17:45:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"11:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.48,"1.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:14:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-25-C","Sample-Routine","WATER",NA,2021-09-23,"10:40:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 17:40:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903820-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.568,"0.568","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 17:30:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.169,"0.169","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 22:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-13,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 00:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996810-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 21:25:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.847,"0.847","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:47:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.486,"0.486","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:00:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.14,"1.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 17:30:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.34,"1.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:00:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0929-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-29,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990555-0727-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-27,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 16:15:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-09,"08:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.162,"0.162","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 15:30:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C","Sample-Routine","WATER",NA,2021-07-26,"14:30:00","MST",NA,NA,NA,45.09,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.186,"0.186","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 21:30:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.98,"0.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:00:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C","Sample-Routine","WATER",NA,2021-07-07,"11:30:00","MST",NA,NA,NA,4,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.19,"0.19","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:30:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905590-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 21:20:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901950-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:30:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905078-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.5,"11.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 18:00:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"13:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.959,"0.959","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:00:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-22,"16:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.72,"0.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 23:15:00,NA,"LAKE POWELL GOODHOPE BAY MIDCHANNEL","Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908500-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.393,"0.393","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 16:30:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903190-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:10:00,NA,"CLARKSTON CK AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.4,"4.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:10:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4903770-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 18:45:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0928-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-28,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210805-4936050-0805-24-C","Sample-Routine","WATER",NA,2021-08-05,"10:00:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-05 17:00:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905301-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.143,"0.143","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:05:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908140-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"13:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.118,"0.118","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:11:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-12,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.61,"2.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 20:10:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.798,"0.798","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 20:10:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-08,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 15:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901730-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:40:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"17:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 00:00:00,NA,"MATT WARNER RES E MIDLAKE 03","Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"10:05:00","MST",NA,NA,NA,1.385,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.717,"0.717","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:05:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903950-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.74,"3.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:20:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-26-C","Sample-Routine","WATER",NA,2021-07-21,"10:06:00","MST",NA,NA,NA,17,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 17:06:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905052-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.486,"0.486","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:50:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4998130-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"10:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 17:41:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 17:45:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210713-5937650-0713-23-C","Sample-Routine","WATER",NA,2021-07-13,"12:37:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 19:37:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0922-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-22,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.734,"0.734","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4975","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996550-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",23.7,"23.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 17:00:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4976","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996022-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"13:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 20:28:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904110-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.54,"0.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:00:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.51,"4.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 18:15:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0719-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-19,"17:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 00:20:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-27,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.091,"0.091","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-28 00:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900702-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900702",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.607,"0.607","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:45:00,NA,"South Fork Sixmile Ck at 6575 feet elevation 450m ab road crossing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.8119600000","-111.1800000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"4982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901200-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.74,"8.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:50:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905940-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.65,"2.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:50:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-26,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.228,"0.228","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 19:15:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908280-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"14:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.415,"0.415","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:06:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946751-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"13:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.412,"0.412","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:36:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"4987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"09:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.18,"1.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 16:30:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4988","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996566-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"10:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12,"12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 17:49:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"4989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"12:55:00","MST",NA,NA,NA,2.261,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.795,"0.795","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:55:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902720-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.21,"2.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 20:35:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,2.378,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.24,"1.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:45:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-04,"13:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.288,"0.288","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 20:57:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4998400-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"10:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 17:37:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.21,"1.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 19:00:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"13:40:00","MST",NA,NA,NA,1.861,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.811,"0.811","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 20:40:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:20:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-26,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.229,"0.229","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 19:15:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"4998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4906400-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"11:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.996,"0.996","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 18:12:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"4999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902941-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.492,"0.492","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:40:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902941-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.02,"1.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:50:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905078-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"13:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.309,"0.309","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 20:32:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C","Sample-Routine","WATER",NA,2021-09-15,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.55,"4.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:10:00,NA,"Dry Ck Near Utah Lake-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926363-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"13:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926363",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.249,"0.249","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 20:23:00,NA,"South Fk Chalk Ck at Upper Diversion","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903770-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:20:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905640-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"13:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.21,"1.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:33:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4948870-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.466,"0.466","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:50:00,NA,"OTTER CK AB DIVERSION 1MI N OF ANGLE","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"16:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.531,"0.531","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 23:15:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908160-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"15:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.32,"0.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 22:07:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903191-0922-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-22,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.41,"1.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 20:30:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.858,"0.858","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 18:10:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:25:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-21,"14:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.73,"0.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 21:50:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C","Sample-Routine","WATER",NA,2021-07-12,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.49,"0.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 18:10:00,NA,"Sage Creek about 275 meters below confl North Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7678500000","-111.1716600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.204,"0.204","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:50:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-15,"11:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.321,"0.321","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:25:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-06,"11:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.364,"0.364","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 18:35:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901200-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.44,"9.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:50:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-23-C","Sample-Routine","WATER",NA,2021-07-22,"10:22:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 17:22:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908170-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"14:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.545,"0.545","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:46:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,2.344,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.77,"0.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:50:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5910302-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 17:47:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C","Sample-Routine","WATER",NA,2021-09-29,"12:20:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.743,"0.743","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:20:00,NA,"BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901980-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.397,"0.397","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:40:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"11:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.17,"2.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:35:00,NA,"UTAH LAKE AT MIDDLE OF PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-04,"14:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5954520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.352,"0.352","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-04 21:40:00,NA,"LOWER BOWNS RESERVOIR","Lake",NA,"14070003",NA,NA,NA,NA,"38.1085900000","-111.2698900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.302,"0.302","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:50:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5027","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202109141327:SR","Sample-Routine","WATER",NA,2021-09-14,"13:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-G4C",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:27:00,NA,"4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4865,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905000-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.743,"0.743","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:50:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905040-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.87,"1.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:25:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"09:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.303,"0.303","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:00:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0809-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-09,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5032","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996570-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.45,"2.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 15:40:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949930-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"10:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.279,"0.279","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 17:21:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926203-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926203",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.417,"0.417","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 17:57:00,NA,"Huff Ck at Flat Rock","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"10:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.426,"0.426","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 17:32:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908100-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.341,"0.341","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 22:40:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"16:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.06,"1.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 23:05:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C","Sample-Routine","WATER",NA,2021-07-14,"10:30:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.265,"0.265","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 17:30:00,NA,"BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5910160-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 18:30:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908152-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.727,"0.727","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:20:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C","Sample-Routine","WATER",NA,2021-09-29,"14:20:00","MST",NA,NA,NA,14,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.926,"0.926","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:20:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901050-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.89,"1.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:25:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",14.2,"14.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:10:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-25,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.796,"0.796","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:35:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949718-0913-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-13,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949718",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 16:15:00,NA,"Upper Sevier Watershed Nonpoint Source Monitoring Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905400-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.336,"0.336","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:04:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C","Sample-Routine","WATER",NA,2021-09-08,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.204,"0.204","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 18:20:00,NA,"W FK BEAR R AB WHITNEY RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8257800000","-110.9293400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5048","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1180S","Sample-Routine","WATER",NA,2021-09-15,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-RARE - 1",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle",NA,"AMMONIA","UNFILTERED",0.83,"0.830","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-09-23,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-09-15 21:50:00,NA,"RARE - 1","Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990650-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.158,"0.158","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 19:45:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-24,"11:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.561,"0.561","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 18:00:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905301-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905301",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.144,"0.144","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:45:00,NA,"LOGAN R AT MOUTH OF CANYON Replicate of 4905200","River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210826-4995710-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"10:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-26 17:53:00,NA,"DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-15,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 19:55:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908500-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.491,"0.491","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 17:10:00,NA,"BEAR R E OF WOODRUFF","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904240-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:15:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.92,"1.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:23:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905070-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",15.2,"15.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:15:00,NA,"LOGAN LAGOONS 001","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5058","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996003-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.87,"4.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 20:00:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5906510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.224,"0.224","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:15:00,NA,"LITTLE CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.6743900000","-111.2288100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.571,"0.571","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 22:50:00,NA,"ESCALANTE R AB LAKE POWELL","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0923-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-23,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-22,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 22:00:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.816,"0.816","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:50:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904330-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.145,"0.145","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 19:10:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904724-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.27,"2.27","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:25:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C","Sample-Routine","WATER",NA,2021-09-04,"07:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.7,"3.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 14:29:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905137-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905137",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.676,"0.676","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 20:45:00,NA,"Logan River AB boat launch near SR 30 at 3600 West","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904940-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.01,"2.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:35:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-27,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-28 00:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.255,"0.255","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 19:55:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908100-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.378,"0.378","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 21:45:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5072","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995467-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.438,"0.438","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 20:35:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-07,"11:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.21,"0.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:25:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C","Sample-Routine","WATER",NA,2021-09-21,"12:15:00","MST",NA,NA,NA,83.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.457,"0.457","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 19:15:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904870-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.487,"0.487","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:00:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210729-4995730-0729-4-C","Sample-Routine","WATER",NA,2021-07-29,"10:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-29 17:44:00,NA,"SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902040-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.15,"4.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:30:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.555,"0.555","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 16:25:00,NA,"WILLARD CANAL AB WILLARD BAY RES","Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"11:55:00","MST",NA,NA,NA,10.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.41,"0.41","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:55:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C","Sample-Routine","WATER",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4999152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.186,"0.186","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 17:00:00,NA,"Daniels Creek 0.75 mile bl Whiskey Spring picnic site","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4166300000","-111.3335700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905440-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.168,"0.168","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 22:30:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-26,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994271",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.78,"3.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 17:30:00,NA,"JORDAN R AT 9000 S XING Replicate of 4994270","River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-5994550-0701-4-C","Sample-Routine","WATER",NA,2021-07-01,"11:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994550",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.101,"0.101","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-01 18:14:00,NA,"PARIA R AT OLD TOWN SITE","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"14:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.791,"0.791","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 21:20:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996810-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"12:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 19:49:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904920-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:15:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-23-C","Sample-Routine","WATER",NA,2021-09-09,"10:15:00","MST",NA,NA,NA,0.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 17:15:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908152-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.644,"0.644","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:00:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-29-C","Sample-Routine","WATER",NA,2021-09-21,"11:37:00","MST",NA,NA,NA,56.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 18:37:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-06,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.393,"0.393","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:50:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"09:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.935,"0.935","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:50:00,NA,"MANTUA RES S MIDLAKE 02","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.868,"0.868","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 19:00:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901100-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:20:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901790-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.607,"0.607","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:10:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902000-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 17:05:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904510-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.839,"0.839","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 17:50:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-21,"11:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.37,"0.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:55:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905540-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"11:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",96.9,"96.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 18:44:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"11:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.735,"0.735","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:25:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900510-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.529,"0.529","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 22:45:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-02,"08:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-02 15:12:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:40:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901730-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:40:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-09,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 15:45:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5105","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994952-0214-LAB","Sample-Routine","WATER",NA,2022-02-14,"08:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.06,"3.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-14 15:47:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"16:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.968,"0.968","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 23:40:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-09,"08:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 15:30:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903950-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.847,"0.847","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:20:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C","Sample-Routine","WATER",NA,2021-09-02,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.286,"0.286","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-02 16:55:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"10:55:00","MST",NA,NA,NA,2.426,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.635,"0.635","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:55:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210713-5937650-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"12:35:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 19:35:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C","Sample-Routine","WATER",NA,2021-09-08,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 18:35:00,NA,"UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8396700000","-110.9321200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5113","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995210-0914-LAB","Sample-Routine","WATER",NA,2021-09-14,"12:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",16.16,"16.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-14 19:23:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904490-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:40:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904965-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.62,"0.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:00:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903950-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.53,"3.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:52:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C","Sample-Routine","WATER",NA,2021-07-28,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-28 19:30:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210805-4936050-0805-26-C","Sample-Routine","WATER",NA,2021-08-05,"10:07:00","MST",NA,NA,NA,15,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-18,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-05 17:07:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904965-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.24,"4.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:45:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.476,"0.476","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:50:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908152-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.428,"0.428","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 22:20:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"10:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.266,"0.266","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 17:32:00,NA,"SPRING CK AB CNFL / MAIN CK","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-24-C","Sample-Routine","WATER",NA,2021-07-21,"10:02:00","MST",NA,NA,NA,11,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 17:02:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210909-5937650-0909-29-C","Sample-Routine","WATER",NA,2021-09-09,"13:55:00","MST",NA,NA,NA,15.3,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 20:55:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"11:15:00","MST",NA,NA,NA,1.307,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.821,"0.821","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:15:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5126","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4917712-0510-LAB","Sample-Routine","WATER",NA,2022-05-10,"15:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.61,"3.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-10 22:08:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"08:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.309,"0.309","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 15:02:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905000-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.33,"1.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 16:30:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996890-1027-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-10-27,"13:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 20:33:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908712",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.087,"0.087","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:40:00,NA,"Mill Creek above North Fork (UT09ST-112)","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.9303200000","-110.7400600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"11:20:00","MST",NA,NA,NA,1.958,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.757,"0.757","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:20:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-26,"14:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.243,"0.243","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 21:15:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5133","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996020-0413-LAB","Sample-Routine","WATER",NA,2022-04-13,"15:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.14,"3.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-13 22:04:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946960-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946960",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.14,"1.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:05:00,NA,"SAN PITCH R AB MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5910160-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"12:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 19:48:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.45,"2.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:45:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908100-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.257,"0.257","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:35:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C","Sample-Routine","WATER",NA,2021-08-22,"06:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994530",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.44,"4.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-22 13:38:00,NA,"WAHWEAP CK @ WARM CK RD XING","River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C","Sample-Routine","WATER",NA,2021-09-07,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.293,"0.293","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-07 21:15:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997250-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"11:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 18:59:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C","Sample-Routine","WATER",NA,2021-07-12,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.447,"0.447","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 18:10:00,NA,"Sage Creek about 275 meters below confl North Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7678500000","-111.1716600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904965-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904965",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.644,"0.644","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:00:00,NA,"Spring Ck BL confluence Hyrum Slough at 1800 S xing","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C","Sample-Routine","WATER",NA,2021-07-07,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951857",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 19:00:00,NA,"Yellow Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.01,"1.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 17:15:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.478,"0.478","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:50:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990620-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.187,"0.187","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 19:20:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904943-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.62,"2.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:50:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-22,"09:36:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 16:36:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903820-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.668,"0.668","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:15:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905670-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:55:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-26-C","Sample-Routine","WATER",NA,2021-07-13,"10:00:00","MST",NA,NA,NA,16,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 17:00:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C","Sample-Routine","WATER",NA,2021-07-07,"11:30:00","MST",NA,NA,NA,4,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.203,"0.203","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:30:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-26,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 16:25:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-25-C","Sample-Routine","WATER",NA,2021-10-21,"10:31:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 17:31:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990376-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.143,"0.143","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 20:00:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-27,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 22:05:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5157","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996680-1012-LAB","Sample-Routine","WATER",NA,2021-10-12,"13:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.342,"0.342","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-12 20:27:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"10:35:00","MST",NA,NA,NA,2.153,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.724,"0.724","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:35:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904920-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.26,"5.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:47:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5910250-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"12:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 19:06:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-27-C","Sample-Routine","WATER",NA,2021-10-20,"10:05:00","MST",NA,NA,NA,15,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 17:05:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903400-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.473,"0.473","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:00:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997300-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"11:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 18:17:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.916,"0.916","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:47:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-29-C","Sample-Routine","WATER",NA,2021-09-09,"10:34:00","MST",NA,NA,NA,25.3,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 17:34:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-26,"14:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.213,"0.213","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 21:15:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908280-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.368,"0.368","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 18:20:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905630-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"13:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.603,"0.603","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:08:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902000-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.84,"5.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:45:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900552-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900552",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.187,"0.187","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 19:30:00,NA,"Big Creek 100 meters below gaging station","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6104900000","-111.2539800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.718,"0.718","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:40:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908100-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.406,"0.406","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:40:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-2-C","Sample-Routine","WATER",NA,2021-10-13,"10:11:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-25,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-13 17:11:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908100-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.552,"0.552","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 21:45:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"09:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.486,"0.486","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:30:00,NA,"MANTUA RES AB DAM 01","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990996-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.222,"0.222","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:20:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-23-C","Sample-Routine","WATER",NA,2021-09-15,"10:30:00","MST",NA,NA,NA,11,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-15 17:30:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211028-4995710-1028-4-C","Sample-Routine","WATER",NA,2021-10-28,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-28 17:40:00,NA,"DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-14,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.437,"0.437","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 17:15:00,NA,"BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-23-C","Sample-Routine","WATER",NA,2021-10-13,"10:11:00","MST",NA,NA,NA,0.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-25,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-13 17:11:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905052-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.73,"2.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:45:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905940-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"13:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.97,"1.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:21:00,NA,"WELLSVILLE CK @ U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954795",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.184,"0.184","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:30:00,NA,"Oak Creek above Oak Creek Dam","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902720-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.93,"2.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:20:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-29,"12:05:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5907130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.847,"0.847","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:05:00,NA,"BIRCH CK RES #2 (UPPER) AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C","Sample-Routine","WATER",NA,2021-09-01,"09:45:00","MST",NA,NA,NA,46.13,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.263,"0.263","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:45:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905700-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.276,"0.276","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 17:05:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210928-4995710-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"09:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-29 16:08:00,NA,"DIAMOND FORK CREEK ABOVE SIXTH WATER","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-15,"11:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.341,"0.341","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:55:00,NA,"HYRUM RES AB DAM 01 Replicate of 5901670","Lake","Replicate of 5901670","16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C","Sample-Routine","WATER",NA,2021-09-08,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.267,"0.267","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 18:20:00,NA,"W FK BEAR R AB WHITNEY RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8257800000","-110.9293400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990996-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 19:05:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C","Sample-Routine","WATER",NA,2021-08-24,"11:05:00","MST",NA,NA,NA,2.95,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 18:05:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"13:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.67,"0.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 20:25:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.63,"0.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:40:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C","Sample-Routine","WATER",NA,2021-07-26,"12:40:00","MST",NA,NA,NA,57.1,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.216,"0.216","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 19:40:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-24,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.537,"0.537","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 18:30:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.756,"0.756","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:40:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.65,"9.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 19:00:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926380-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"08:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.256,"0.256","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 15:48:00,NA,"CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C","Sample-Routine","WATER",NA,2021-09-10,"08:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908701",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.628,"0.628","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-10 15:30:00,NA,"Right Hand Fk Logan R ~2.2 mi ab Logan R (UT09ST-174)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7725300000","-111.6029900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904770-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",15.8,"15.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:00:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C","Sample-Routine","WATER",NA,2021-09-15,"11:40:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.455,"0.455","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:40:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.08,"3.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 18:00:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4906400-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.481,"0.481","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:15:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-21,"12:42:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 19:42:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902040-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 17:40:00,NA,"MALAD R AB BEAR R CITY LAGOONS","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-15,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 19:45:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"12:30:00","MST",NA,NA,NA,2.283,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.969,"0.969","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:30:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904900-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.04,"2.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 21:45:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926350-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"15:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.92,"1.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:07:00,NA,"CHALK CK AT US189 XING","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4948930-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.803,"0.803","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:25:00,NA,"OTTER CK AT CR XING 2MI S E OF GREENWICH","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.4160900000","-111.9029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903260-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.467,"0.467","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 17:20:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-12,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 21:25:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901100-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 16:40:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903950-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.94,"7.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:05:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949892-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.256,"0.256","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 17:40:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904724-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 19:20:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-2-C","Sample-Routine","WATER",NA,2021-10-20,"10:01:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 17:01:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949702-0913-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-13,"09:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949702",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.243,"0.243","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 16:32:00,NA,"MAMMOTH CK AT US89 XING Replicate of 4949700","River/Stream","Replicate of 4949700","16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908168-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.208,"0.208","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:00:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946750-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.439,"0.439","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:35:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-2-C","Sample-Routine","WATER",NA,2021-10-21,"10:27:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 17:27:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-29-C","Sample-Routine","WATER",NA,2021-07-14,"12:09:00","MST",NA,NA,NA,19,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-27,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-14 19:09:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-2-C","Sample-Routine","WATER",NA,2021-10-20,"11:12:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 18:12:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5913210-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"12:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 19:18:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-14,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.377,"0.377","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:10:00,NA,"CUTLER RES E OF HIGHWAY BRIDGE 02","Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904110-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.16,"2.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 18:15:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 17:40:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.828,"0.828","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:00:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0721-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-21,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908140-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 19:50:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926355-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"11:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926355",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.278,"0.278","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 18:37:00,NA,"South Fk Chalk Ck at G&E Ranch","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C","Sample-Routine","WATER",NA,2021-09-05,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.148,"0.148","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-05 21:00:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903950-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.56,"3.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:52:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926352-0914-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-14,"13:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.52,"1.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:59:00,NA,"CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.499,"0.499","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:52:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"5237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-25-C","Sample-Routine","WATER",NA,2021-09-23,"09:57:00","MST",NA,NA,NA,15,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 16:57:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905640-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.24,"1.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:25:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908280-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.29,"0.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 18:20:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C","Sample-Routine","WATER",NA,2021-07-14,"13:40:00","MST",NA,NA,NA,9.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.519,"0.519","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:40:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908160-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.538,"0.538","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:05:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C","Sample-Routine","WATER",NA,2021-09-08,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4977052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.633,"0.633","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 17:00:00,NA,"Johnson Creek Left Hand Fork 0.4 mile bl Browns Canyon","River/Stream",NA,"17040210",NA,NA,NA,NA,"41.8873400000","-113.5314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904510-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.44,"3.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:45:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5244","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996540-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"11:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 18:42:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-09,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 21:25:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905200-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"12:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.199,"0.199","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 19:52:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C","Sample-Routine","WATER",NA,2021-07-12,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.49,"3.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 19:50:00,NA,"Dry Ck Near Utah Lake-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0719-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-19,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 00:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-13,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.841,"0.841","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:30:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C","Sample-Routine","WATER",NA,2021-09-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.103,"0.103","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-10 18:00:00,NA,"La Verkin Ck at Lee Pass Trail","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905200-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.128,"0.128","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:40:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"09:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.918,"0.918","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 16:40:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-26-C","Sample-Routine","WATER",NA,2021-09-09,"10:25:00","MST",NA,NA,NA,13,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 17:25:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908140-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.199,"0.199","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 19:50:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"13:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.783,"0.783","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:40:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904510-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.19,"3.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:55:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C","Sample-Routine","WATER",NA,2021-08-17,"16:30:00","MST",NA,NA,NA,5.06,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.05,"1.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 23:30:00,NA,"MATT WARNER RES AB DAM","Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901980-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.432,"0.432","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:30:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905700-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.308,"0.308","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 17:05:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4901930-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.4,"0.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 16:55:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C","Sample-Routine","WATER",NA,2021-07-26,"13:45:00","MST",NA,NA,NA,32.05,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.251,"0.251","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 20:45:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.431,"0.431","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:10:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5263","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4917712-0914-LAB","Sample-Routine","WATER",NA,2021-09-14,"17:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.02,"3.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 00:09:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949900-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"09:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.227,"0.227","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 16:17:00,NA,"ASAY CK AT US89 XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.5841500000","-112.4766000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-27,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.262,"0.262","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 17:30:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-21,"10:34:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 17:34:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905052-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"13:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.385,"0.385","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 20:54:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5268","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995210-0713-LAB","Sample-Routine","WATER",NA,2021-07-13,"12:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",20.4,"20.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-13 19:17:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901790-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.408,"0.408","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:10:00,NA,"BEAR R. AT HAMPTON'S FORD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904720-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:55:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904330-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.442,"0.442","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 19:25:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908170-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.11,"0.11","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 21:00:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-07-28,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-28 22:45:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901930-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.878,"0.878","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:00:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",15.9,"15.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 19:10:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905040-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.631,"0.631","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 20:15:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:45:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903060-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.06,"3.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 17:20:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990987-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990987",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.87,"1.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:40:00,NA,"North Canyon Creek in Legacy Nature Preserve","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901190-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.66,"0.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 15:45:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908744-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.443,"0.443","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:40:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"13:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.932,"0.932","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 20:40:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902720-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.14,"3.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:05:00,NA,"MALAD R AB TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C","Sample-Routine","WATER",NA,2021-09-01,"09:45:00","MST",NA,NA,NA,46.13,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.28,"0.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:45:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994804",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.775,"0.775","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 22:00:00,NA,"Dry Creek at 145 N (Saratoga Springs)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3650400000","-111.8839300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"14:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.87,"0.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 21:15:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905750-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"09:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905750",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.125,"0.125","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 16:53:00,NA,"E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901975-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.84,"2.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:15:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5910250-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 18:15:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.539,"0.539","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 17:25:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.9,"1.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:31:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905400-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.467,"0.467","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 18:00:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-26,"13:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.257,"0.257","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 20:15:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905580-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905580",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 21:25:00,NA,"LITTLE BEAR R AB WELLSVILLE LAGOONS","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.774,"0.774","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:30:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901432-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.17,"4.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:05:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-22,"13:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.221,"0.221","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-22 20:26:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4998130-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"10:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 17:12:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996830-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"12:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 19:39:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C","Sample-Routine","WATER",NA,2021-09-01,"13:00:00","MST",NA,NA,NA,35,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.343,"0.343","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 20:00:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-14,"12:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.444,"0.444","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:10:00,NA,"CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902940-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.502,"0.502","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 22:35:00,NA,"MALAD RIVER EAST OF PORTAGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901432-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.03,"4.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:05:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903510-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.392,"0.392","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:15:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"14:30:00","MST",NA,NA,NA,1.745,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.767,"0.767","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 21:30:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C","Sample-Routine","WATER",NA,2021-07-07,"11:35:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.631,"0.631","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:35:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.417,"0.417","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:50:00,NA,"E FK LITTLE BEAR R AB PORCUPINE RES","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5182700000","-111.7138200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-27-C","Sample-Routine","WATER",NA,2021-09-09,"10:27:00","MST",NA,NA,NA,19,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 17:27:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0810-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-10,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 00:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"17:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 00:00:00,NA,"MATT WARNER RES E MIDLAKE 03","Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996870-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"13:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 20:57:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901975-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.83,"2.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:15:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905770-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"16:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.191,"0.191","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 23:45:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"11:20:00","MST",NA,NA,NA,1.958,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.933,"0.933","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:20:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"11:55:00","MST",NA,NA,NA,10.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.249,"0.249","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:55:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-16,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 00:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908744-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.086,"0.086","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:40:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905640-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"13:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:33:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900511-0721-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-21,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.454,"0.454","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:30:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904940-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",25,"25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:25:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904240-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.55,"1.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 18:45:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908721",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.246,"0.246","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:40:00,NA,"Little Bear River ~0.3 mi bl Mendon Rd Xing (UT09ST-121)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7214600000","-111.9464700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"13:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.666,"0.666","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 20:09:00,NA,"SPANISH FORK R AT 5000 SOUTH","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900510-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.447,"0.447","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:25:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-13,"10:30:00","MST",NA,NA,NA,1.359,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.821,"0.821","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:30:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905590-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 21:20:00,NA,"LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908168-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908168",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.13,"0.13","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 21:10:00,NA,"MIDDLE BRANCH OTTER CK @ OTTER CK RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5329","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996410-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"09:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.879,"0.879","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 16:44:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"16:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.15,"1.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 23:40:00,NA,"MATT WARNER RES W MIDLAKE 02","Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926350-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.55,"1.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:57:00,NA,"CHALK CK AT US189 XING","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C","Sample-Routine","WATER",NA,2021-09-07,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.217,"0.217","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-07 23:00:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-04,"14:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5954520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.49,"0.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-04 21:40:00,NA,"LOWER BOWNS RESERVOIR","Lake",NA,"14070003",NA,NA,NA,NA,"38.1085900000","-111.2698900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"12:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.292,"0.292","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 19:30:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908281-0708-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-08,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908281",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.274,"0.274","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 18:25:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280","River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C","Sample-Routine","WATER",NA,2021-09-08,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4977052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.33,"0.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 17:00:00,NA,"Johnson Creek Left Hand Fork 0.4 mile bl Browns Canyon","River/Stream",NA,"17040210",NA,NA,NA,NA,"41.8873400000","-113.5314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5337","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995210-0817-LAB","Sample-Routine","WATER",NA,2021-08-17,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",14.2,"14.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-17 18:46:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.715,"0.715","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:40:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C","Sample-Routine","WATER",NA,2021-09-27,"13:25:00","MST",NA,NA,NA,34,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.26,"0.26","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:25:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5340","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-5919860-0104-LAB","Sample-Routine","WATER",NA,2022-01-04,"15:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-5919860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.92,"2.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-04 22:38:00,NA,"Beer Creek at 6400 S Road","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1144010000","-111.7929820000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.397,"0.397","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 17:25:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-10,"18:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-11 01:30:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901200-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"08:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",21.3,"21.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 15:35:00,NA,"BRIGHAM CITY WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C","Sample-Routine","WATER",NA,2021-09-15,"11:40:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5901670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.364,"0.364","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 18:40:00,NA,"HYRUM RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-29-C","Sample-Routine","WATER",NA,2021-09-21,"12:52:00","MST",NA,NA,NA,28,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 19:52:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904720-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:10:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996890-0329-4-C","Quality Control Sample-Field Replicate","WATER",NA,2022-03-29,"13:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 20:38:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4999202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.156,"0.156","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 17:40:00,NA,"Mill B South Fork 0.9 mile above Big Cottonwood Creek confluence","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6222000000","-111.7114000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-24-C","Sample-Routine","WATER",NA,2021-09-21,"11:16:00","MST",NA,NA,NA,5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 18:16:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904724-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.3,"3.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 18:40:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"13:30:00","MST",NA,NA,NA,2.251,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.736,"0.736","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:30:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"16:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.789,"0.789","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 23:40:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.761,"0.761","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 00:00:00,NA,"Saratoga Springs at Cedar Valley","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903820-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.419,"0.419","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 15:45:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903400-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.35,"0.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:00:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-26,"13:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4900755",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 20:08:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.5,"0.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 18:50:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904340-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.79,"1.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:05:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990640-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.675,"0.675","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:25:00,NA,"STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903400-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.522,"0.522","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 18:45:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"10:50:00","MST",NA,NA,NA,1.378,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.768,"0.768","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 17:50:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901431-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.96,"2.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:30:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901975-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.61,"2.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:25:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903770-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:55:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996830-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"14:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.9,"3.9","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 21:41:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990650-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.111,"0.111","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 19:45:00,NA,"BARTON CK ABOVE BOUNTIFUL BLVD","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-08-26,"16:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 23:50:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.697,"0.697","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:50:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C","Sample-Routine","WATER",NA,2021-08-27,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.255,"0.255","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-27 17:45:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901431-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.02,"3.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:30:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946751-0914-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-14,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.518,"0.518","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 17:50:00,NA,"SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750","River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C","Sample-Routine","WATER",NA,2021-09-23,"10:05:00","MST",NA,NA,NA,56.5,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.53,"0.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 17:05:00,NA,"LAKE POWELL HALLS XING/ BULLFROG MILE 95","Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902000-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.68,"5.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:45:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.23,"3.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 21:35:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905650-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.705,"0.705","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:55:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5376","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1173Q","Quality Control Sample-Field Replicate","WATER",NA,2021-07-14,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-CW-N",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-07-26,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2021-07-14 18:00:00,NA,"Cottonwood wash north","River/Stream","Cottonwood Wash, north end of Tribal lands there. The ephemeral wash flows onto and off from the Tribal lands a few times on its journy to the San Juan River. Highly impacted by uranium mining.","14080201",NA,NA,NA,NA,"37.7415950000","-109.6886280000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5377","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996275-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.85,"3.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 19:25:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904900-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.12,"3.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:35:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",13.2,"13.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:15:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4906400-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.199,"0.199","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:15:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C","Sample-Routine","WATER",NA,2021-07-26,"12:40:00","MST",NA,NA,NA,57.1,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.247,"0.247","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 19:40:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.531,"0.531","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:50:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C","Sample-Routine","WATER",NA,2021-08-31,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4932910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.393,"0.393","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 18:55:00,NA,"MUD CREEK AB SCOFIELD RES","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"09:15:00","MST",NA,NA,NA,0.916,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.904,"0.904","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 16:15:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.01,"1.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905440-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.105,"0.105","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:25:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210826-4995600-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-07,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-26 16:55:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5910302-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"11:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 18:37:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905052-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905052",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.692,"0.692","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:50:00,NA,"Swift Slough ab Logan Lagoons 002 outfall","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C","Sample-Routine","WATER",NA,2021-08-05,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.459,"0.459","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-05 23:00:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"09:18:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 16:18:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913490-0722-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-22,"09:36:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 16:36:00,NA,"DEER CREEK RES AB DAM 01 Replicate of 5913220","Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990996-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990996",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:20:00,NA,"N. CANYON CK @ CANYON CREEK DR","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C","Sample-Routine","WATER",NA,2021-08-31,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5931650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.419,"0.419","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 18:30:00,NA,"FISH CK AB SCOFIELD RES","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5910273-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 19:15:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"09:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.836,"0.836","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 16:30:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-10,"18:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-11 01:30:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904110-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.9,"1.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 18:15:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0721-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-21,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C","Sample-Routine","WATER",NA,2021-07-16,"10:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.491,"0.491","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-16 17:56:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5401","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996540-0915-LAB","Sample-Routine","WATER",NA,2021-09-15,"10:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.3,"12.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-15 17:33:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0721-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-21,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 21:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.442,"0.442","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:00:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903770-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.47,"1.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:55:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"10:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.56,"0.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 17:47:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904241-0721-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-21,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:20:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997675-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 17:14:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-14,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.492,"0.492","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 17:50:00,NA,"CUTLER RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-18,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 20:40:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904330-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.423,"0.423","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:45:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.268,"0.268","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:30:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.404,"0.404","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:40:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C","Sample-Routine","WATER",NA,2021-09-07,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.271,"0.271","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-07 21:15:00,NA,"SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.653,"0.653","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:40:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"07:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4952380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.491,"0.491","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 14:58:00,NA,"COLORADO R. BL BIG DROP #3 RAPIDS","River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"5416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.89,"7.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 19:55:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926360-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926360",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.283,"0.283","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:07:00,NA,"CHALK CK S FK 1 MI AB CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.985,"0.985","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:20:00,NA,"Saratoga Springs at Cedar Valley","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905440-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.132,"0.132","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 22:30:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-01,"14:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.164,"0.164","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 21:15:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4903770-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 18:45:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901600-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:45:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904340-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 17:25:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905200-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.147,"0.147","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:00:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905631-0721-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-21,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.562,"0.562","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:10:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949930-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.21,"0.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 16:40:00,NA,"BLUE SPRING CREEK ABOVE PANGUITCH LAKE","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4998130-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 17:41:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951265",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.129,"0.129","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 21:15:00,NA,"N FK VIRGIN R AT WSA BNDRY","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4901190-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.891,"0.891","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 16:20:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.863,"0.863","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 22:20:00,NA,"JORDAN R AT UTAH L OUTLET U121 XING","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-26,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.176,"0.176","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 16:25:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.46,"2.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 18:30:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990680-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:00:00,NA,"MILL CK AT 1100 WEST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900952-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900952",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.411,"0.411","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 20:45:00,NA,"Otter Creek BL South Branch confluence and 0.5 mile BL Otter Creek Road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7108900000","-111.1800500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994792",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.1,"1.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:20:00,NA,"Saratoga Springs at Cedar Valley","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996890-0824-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-24,"14:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 21:18:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"12:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.785,"0.785","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:00:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908280-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"14:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.187,"0.187","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:06:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-02,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-02 16:30:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900470-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"14:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:08:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.64,"1.64","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:20:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-24,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.522,"0.522","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 17:40:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C","Sample-Routine","WATER",NA,2021-08-04,"14:55:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5954520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.353,"0.353","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-04 21:55:00,NA,"LOWER BOWNS RESERVOIR","Lake",NA,"14070003",NA,NA,NA,NA,"38.1085900000","-111.2698900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908745-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.286,"0.286","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 21:55:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C","Sample-Routine","WATER",NA,2021-08-04,"14:55:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5954520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-04 21:55:00,NA,"LOWER BOWNS RESERVOIR","Lake",NA,"14070003",NA,NA,NA,NA,"38.1085900000","-111.2698900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903260-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.531,"0.531","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 17:20:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.135,"0.135","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 22:00:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908721",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.212,"0.212","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:40:00,NA,"Little Bear River ~0.3 mi bl Mendon Rd Xing (UT09ST-121)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7214600000","-111.9464700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 17:00:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997330-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"09:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-28 16:56:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902941-0921-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-21,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.388,"0.388","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 22:25:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-14,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.469,"0.469","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 17:50:00,NA,"CUTLER RES AB DAM 01","Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5453","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4917712-0214-LAB","Sample-Routine","WATER",NA,2022-02-14,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.8,"4.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-14 21:55:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"11:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.922,"0.922","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:47:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.441,"0.441","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 17:30:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901730-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.559,"0.559","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 21:00:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946980-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.714,"0.714","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:06:00,NA,"SAN PITCH R AT BRIDGE BL MORONI WWTP","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-23,"15:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952422",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 22:10:00,NA,"Bureau of Reclamation Lake Powell QAQC Blank","Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900511-0721-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-21,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.446,"0.446","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:30:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996850-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"14:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 21:14:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-28-C","Sample-Routine","WATER",NA,2021-07-21,"10:12:00","MST",NA,NA,NA,28,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 17:12:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-14,"18:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.207,"0.207","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 01:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903770-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 19:50:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.05,"2.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:23:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5465","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996570-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"09:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 16:27:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905078-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"13:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.338,"0.338","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 20:32:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5467","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996680-0914-LAB","Sample-Routine","WATER",NA,2021-09-14,"13:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.242,"0.242","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-14 20:46:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908140-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.174,"0.174","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:20:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997250-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"12:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 19:03:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903504-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.407,"0.407","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:55:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905198-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.177,"0.177","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 16:00:00,NA,"Logan River at Water Lab lower bridge","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903180-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:55:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5473","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996022-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.4,"3.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 19:09:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-20,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.101,"0.101","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 22:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903200-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.54,"1.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 20:40:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905630-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.571,"0.571","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:05:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903191-0811-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-11,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.57,"1.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:15:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903060-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.93,"2.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 17:20:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5479","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995575-0914-LAB","Sample-Routine","WATER",NA,2021-09-14,"15:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.345,"0.345","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-14 22:38:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908140-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"13:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.794,"0.794","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 20:11:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-27-C","Sample-Routine","WATER",NA,2021-09-15,"10:35:00","MST",NA,NA,NA,15,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-24,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-15 17:35:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4948868-0914-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-14,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948868",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:50:00,NA,"EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903501-0823-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-23,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.91,"1.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:40:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-27-C","Sample-Routine","WATER",NA,2021-10-13,"10:17:00","MST",NA,NA,NA,19,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-25,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-13 17:17:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-29-C","Sample-Routine","WATER",NA,2021-10-20,"10:16:00","MST",NA,NA,NA,58,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 17:16:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908165-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.2,"0.2","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:40:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5487","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996020-1110-LAB","Sample-Routine","WATER",NA,2021-11-10,"10:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.47,"3.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-10 17:22:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-25,"13:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 20:37:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904900-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.581,"0.581","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:40:00,NA,"SPRING CK @ CR 376 (MENDON) XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5490","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996570-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"11:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.83,"1.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 18:02:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908165-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.301,"0.301","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:30:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901700-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.697,"0.697","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:00:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902941-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902941",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.403,"0.403","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:50:00,NA,"MALAD RIVER EAST OF PORTAGE Replicate of 4902940","River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5494","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202205191409:SR","Sample-Routine","WATER",NA,2022-05-19,"14:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-G4C",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","TOTAL",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-27,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2022-05-19 21:09:00,NA,"4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4865,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5495","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996003-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.9,"1.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 17:50:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C","Sample-Routine","WATER",NA,2021-09-24,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.382,"0.382","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-24 21:17:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"5497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901225-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.35,"8.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:00:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5910250-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"11:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 18:56:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4948868-0720-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-20,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948868",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:55:00,NA,"EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"10:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.69,"0.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 17:01:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-02,"08:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-02 15:12:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5502","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995222-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"10:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.86,"2.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 17:12:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5503","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995222-0510-LAB","Sample-Routine","WATER",NA,2022-05-10,"10:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.616,"0.616","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-10 17:34:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902000-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 17:05:00,NA,"MALAD R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5505","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996570-1109-LAB","Sample-Routine","WATER",NA,2021-11-09,"12:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.54,"2.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-09 19:29:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-27-C","Sample-Routine","WATER",NA,2021-11-04,"11:39:00","MST",NA,NA,NA,20,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-17,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-11-04 18:39:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905640-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.869,"0.869","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 21:55:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990373-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 20:00:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997675-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"10:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 17:51:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5510","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996003-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"14:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.82,"1.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 21:06:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901600-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.33,"1.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:45:00,NA,"BEAR R S OF BEAR R CITY","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908350-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.649,"0.649","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 18:30:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997250-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"11:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 18:49:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5514","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995575-0510-LAB","Sample-Routine","WATER",NA,2022-05-10,"14:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-10 21:18:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-23,"11:09:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-06,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-23 18:09:00,NA,"DEER CREEK RES UPPER END 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901225-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",19.8,"19.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 15:50:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5517","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996003-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"13:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.85,"3.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 20:32:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908100-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.335,"0.335","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 22:40:00,NA,"BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5519","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996275-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"14:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.45,"6.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 21:23:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5520","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4917712-1012-LAB","Sample-Routine","WATER",NA,2021-10-12,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.17,"6.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-12 22:35:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904241-0923-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-23,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904241",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.58,"1.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 18:50:00,NA,"CUB R AT CASPER ICE CREAM RD Replicate of 4904240","River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C","Sample-Routine","WATER",NA,2021-07-14,"13:40:00","MST",NA,NA,NA,9.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906860",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.488,"0.488","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:40:00,NA,"WOODRUFF CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905650-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"12:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.671,"0.671","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:53:00,NA,"LITTLE BEAR R 1MI BL HYRUM RES AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.25,"0.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:20:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5525","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996003-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"14:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.85,"3.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 21:22:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4998140-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"10:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 17:23:00,NA,"WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905740-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"16:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.196,"0.196","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:45:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902900-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.365,"0.365","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 21:35:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-26-C","Sample-Routine","WATER",NA,2021-11-04,"11:38:00","MST",NA,NA,NA,14,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-17,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-11-04 18:38:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C","Sample-Routine","WATER",NA,2021-08-22,"13:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.196,"0.196","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-22 20:19:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5531","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994952-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"08:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.33,"1.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 15:41:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905700-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.462,"0.462","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 18:30:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997670-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"11:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 18:01:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5534","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995222-0607-LAB","Sample-Routine","WATER",NA,2022-06-07,"10:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.22,"1.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-07 17:36:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-2-C","Sample-Routine","WATER",NA,2021-10-20,"10:48:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 17:48:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"11:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.168,"0.168","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 18:03:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-14,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 22:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996810-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"14:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 21:16:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-25-C","Sample-Routine","WATER",NA,2021-10-21,"09:47:00","MST",NA,NA,NA,15,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 16:47:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-28-C","Sample-Routine","WATER",NA,2021-10-20,"10:11:00","MST",NA,NA,NA,22,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 17:11:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905441-0811-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-11,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.105,"0.105","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:30:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5542","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995075-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"09:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.75,"2.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 16:48:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903180-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 17:40:00,NA,"CLARKSTON CK AT 600 SOUTH AND 600 EAST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5544","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4994952-0607-LAB","Sample-Routine","WATER",NA,2022-06-07,"08:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.62,"1.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-07 15:27:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5545","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996190-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"09:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.28,"6.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 16:26:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-29-C","Sample-Routine","WATER",NA,2021-10-13,"10:20:00","MST",NA,NA,NA,25.9,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-25,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-13 17:20:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997300-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 18:30:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5548","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996550-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"09:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",18.7,"18.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 16:53:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.15,"1.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 19:45:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5913210-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 21:17:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-28-C","Sample-Routine","WATER",NA,2021-10-21,"09:48:00","MST",NA,NA,NA,22,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 16:48:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946000-0914-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-09-14,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.108,"0.108","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 16:15:00,NA,"San Pitch River NPS QAQC Blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"10:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910619",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.228,"0.228","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 17:58:00,NA,"Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-15,"08:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 15:15:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5555","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4917712-0713-LAB","Sample-Routine","WATER",NA,2021-07-13,"16:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.6,"2.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-13 23:18:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"09:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.28,"1.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:30:00,NA,"MANTUA RES AB DAM 01","Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-09,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919942",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.166,"0.166","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 21:25:00,NA,"EQUIPMENT BLANK-Spanish Fork River","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900511-0811-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-11,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.396,"0.396","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 22:50:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5559","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202205191128:SR","Sample-Routine","WATER",NA,2022-05-19,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DDC",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2022-05-19 18:28:00,NA,"Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C","Sample-Routine","WATER",NA,2021-09-01,"14:08:00","MST",NA,NA,NA,37,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.235,"0.235","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 21:08:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5561","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996566-1109-LAB","Sample-Routine","WATER",NA,2021-11-09,"15:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9,"9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-09 22:36:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997330-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"10:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 17:31:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902700-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:50:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904740-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.68,"2.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:45:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904770-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.54,"4.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:15:00,NA,"SPRING CK SC-6","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C","Sample-Routine","WATER",NA,2021-09-04,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.206,"0.206","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 20:45:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK","River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5567","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202107281042:SR","Sample-Routine","WATER",NA,2021-07-28,"10:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-WRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-07-28 17:42:00,NA,"Whiterocks River 2","River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904340-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.62,"1.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 19:30:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5569","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996560-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",25.4,"25.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 16:47:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949700-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"09:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.219,"0.219","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 16:32:00,NA,"MAMMOTH CK AT US89 XING","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901980-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901980",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.334,"0.334","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 16:30:00,NA,"BEAR R BL CUTLER RES AT UP L BRIDGE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5913460-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"13:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 20:04:00,NA,"MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901432-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901432",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.7,"2.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:35:00,NA,"SALT CK AT 4600 NORTH Replicate of 4901431","River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4900751-0706-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-06,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904724-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.51,"3.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:25:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5576","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202205191157:SR","Sample-Routine","WATER",NA,2022-05-19,"11:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2022-05-19 18:57:00,NA,"Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4828,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5577","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1187S","Sample-Routine","WATER",NA,2022-04-05,"13:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-WM_GWMW_W",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-04-13,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2022-04-05 20:07:00,NA,"white mesa ground water monitoring well; west","Well","monitoring well downgradient of White Mesa Uranium Mill, southwest","14080201",NA,NA,NA,NA,"37.4897350000","-109.5180720000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83",5491,"ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"10:55:00","MST",NA,NA,NA,2.426,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.622,"0.622","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:55:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C","Sample-Routine","WATER",NA,2021-09-27,"12:00:00","MST",NA,NA,NA,54.05,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.259,"0.259","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:00:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.937,"0.937","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 21:00:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"11:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4905790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.298,"0.298","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:40:00,NA,"PORCUPINE RES AB DAM 01","Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-27-C","Sample-Routine","WATER",NA,2021-07-14,"12:07:00","MST",NA,NA,NA,16,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-27,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-14 19:07:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5583","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996022-1110-LAB","Sample-Routine","WATER",NA,2021-11-10,"09:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.57,"2.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-10 16:59:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4949040-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.634,"0.634","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:55:00,NA,"OTTER CK AT CR XING NE OF KOOSHAREM","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5202600000","-111.8638000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"12:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.726,"0.726","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:45:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5586","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996003-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.33,"4.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 20:00:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"12:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 19:01:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5588","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996275-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"11:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.23,"8.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 18:18:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 21:40:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903060-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.05,"4.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:40:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-07-02,"13:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951766",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-02 20:56:00,NA,"Equipment blank GSENM field crew","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-06,"08:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-06 15:05:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903507-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.263,"0.263","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:40:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901180-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"08:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.8,"4.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 15:30:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904250-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.775,"0.775","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:30:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900470-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"14:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.899,"0.899","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:08:00,NA,"DAM CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905441-0811-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-11,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.103,"0.103","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:30:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5598","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996560-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"09:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",19.4,"19.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 16:03:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903501-0823-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-23,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903501",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.65,"1.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:40:00,NA,"SUMMIT CK AB CNFL / BEAR R Replicate of 4903500","River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904510-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.13,"3.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:55:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905440-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.258,"0.258","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 17:45:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-15,"08:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 15:15:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-09,"14:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4996903",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 21:26:00,NA,"Little Hobble Creek above confluence with Maple Creek (equipment blank)","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5604","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202107271601:SR","Sample-Routine","WATER",NA,2021-07-27,"16:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-IDR",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-08-06,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 23:01:00,NA,"INDIAN CREEK","River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"NONE","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.903,"0.903","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 21:00:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905700-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"16:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.478,"0.478","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:10:00,NA,"LITTLE BEAR R W OF AVON AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-26,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4917190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.259,"0.259","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 17:40:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5608","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996540-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"11:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.82,"7.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 18:36:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5609","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996003-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"12:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.59,"2.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 19:38:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905400-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.225,"0.225","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:20:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-23-C","Sample-Routine","WATER",NA,2021-11-04,"11:33:00","MST",NA,NA,NA,1,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-17,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-11-04 18:33:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904943-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904943",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.22,"3.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:40:00,NA,"S FK SPRING CK W OF HYRUM WWTP AT END OF RD","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C","Sample-Routine","WATER",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4999152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.37,"0.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 17:00:00,NA,"Daniels Creek 0.75 mile bl Whiskey Spring picnic site","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4166300000","-111.3335700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"17:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.589,"0.589","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 00:15:00,NA,"SAN JUAN R AB LAKE POWELL","River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"08:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.06,"3.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 15:35:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946840-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4946840",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.383,"0.383","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:05:00,NA,"San Pitch R ab Fairview WWTP @ Restoration Project","River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"12:15:00","MST",NA,NA,NA,2.655,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.839,"0.839","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:15:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",6.91,"6.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:30:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"17:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-4952940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.428,"0.428","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 00:15:00,NA,"SAN JUAN R AB LAKE POWELL","River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904740-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"11:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",15.3,"15.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 18:41:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-15,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-23-C","Sample-Routine","WATER",NA,2021-07-22,"09:38:00","MST",NA,NA,NA,9,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 16:38:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-29,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.097,"0.097","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-30 00:30:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5624","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996020-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"13:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.88,"5.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 20:23:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-24-C","Sample-Routine","WATER",NA,2021-10-13,"10:14:00","MST",NA,NA,NA,7,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-25,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-13 17:14:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997300-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"11:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 18:54:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-21,"11:13:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 18:13:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5628","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996566-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.59,"6.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 18:28:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5910160-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"12:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 19:39:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C","Sample-Routine","WATER",NA,2021-09-27,"12:00:00","MST",NA,NA,NA,54.05,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.234,"0.234","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:00:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5631","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996003-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.79,"2.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 20:05:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-17,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.261,"0.261","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-17 19:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5913210-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"13:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 20:32:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901225-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901225",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",18.8,"18.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:20:00,NA,"Box Elder Ck BL Confluence Brigham City Discharge","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902700-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.61,"2.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 20:00:00,NA,"MALAD R BL TREMONTON WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"10:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908716",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.997,"0.997","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 17:20:00,NA,"Hayden Fork above Hayden Fork Campground (UT09ST-116)","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8286100000","-110.8550700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5637","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996275-1110-LAB","Sample-Routine","WATER",NA,2021-11-10,"08:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.98,"6.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-10 15:25:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-26,"16:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4900754",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 23:15:00,NA,"EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901700-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.977,"0.977","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 19:20:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.9,"10.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 21:00:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.735,"0.735","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:15:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900510-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.469,"0.469","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:25:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904810-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"12:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.91,"4.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:13:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990373-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.993,"0.993","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 20:00:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-28-C","Sample-Routine","WATER",NA,2021-07-22,"09:54:00","MST",NA,NA,NA,23,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 16:54:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4998400-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"09:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 16:43:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4951855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.124,"0.124","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 17:00:00,NA,"Sheep Ck bl Spring in Bryce Cyn NP","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903950-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.85,"7.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:05:00,NA,"HYRUM SLOUGH AT ISLAND RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-29-C","Sample-Routine","WATER",NA,2021-11-04,"11:43:00","MST",NA,NA,NA,28.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-17,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-11-04 18:43:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0720-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-20,"16:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 23:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.806,"0.806","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:15:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900742-0916-4-C","Sample-Routine","WATER",NA,2021-09-16,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900742",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.309,"0.309","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-16 21:30:00,NA,"Hayden Fork 0.5 mile ab Beaverview CG and east of SR 150 milepost 41.1","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8156700000","-110.8662700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-14,"12:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5900990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.456,"0.456","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:10:00,NA,"CUTLER RES AT CNFL / CLAY SLOUGH 03","Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5654","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996540-1109-LAB","Sample-Routine","WATER",NA,2021-11-09,"15:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-09 22:10:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-24,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920450",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.415,"0.415","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 17:40:00,NA,"WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02","Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904740-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",25.1,"25.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:40:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4948930-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.799,"0.799","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:40:00,NA,"OTTER CK AT CR XING 2MI S E OF GREENWICH","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.4160900000","-111.9029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990700-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.291,"0.291","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:50:00,NA,"MILL CK @ Mueller Park Entrance","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908165-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908165",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.61,"0.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:30:00,NA,"Otter Creek at road xing BL confluence with South Branch","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990620-0817-4-C","Sample-Routine","WATER",NA,2021-08-17,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990620",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 19:20:00,NA,"STONE CK AB 1300 EAST","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.49,"3.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 21:05:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.754,"0.754","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 21:00:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5663","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4995575-0314-LAB","Sample-Routine","WATER",NA,2022-03-14,"14:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.461,"0.461","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-14 21:31:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5664","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996190-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"10:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.46,"8.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 17:37:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4997670-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 18:39:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901050-0921-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-21,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 16:45:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5667","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995043-0713-LAB","Sample-Routine","WATER",NA,2021-07-13,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.46,"4.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-13 16:10:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5668","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995467-1012-LAB","Sample-Routine","WATER",NA,2021-10-12,"16:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.67,"2.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-12 23:06:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-2-C","Sample-Routine","WATER",NA,2021-11-04,"11:32:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-17,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-11-04 18:32:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",11.7,"11.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 18:30:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901730-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.649,"0.649","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:25:00,NA,"Bear River @ SR 102","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5910160-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"12:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 19:17:00,NA,"SNAKE CK AB CNFL/PROVO R","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C","Sample-Routine","WATER",NA,2021-09-01,"11:17:00","MST",NA,NA,NA,56.01,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.186,"0.186","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 18:17:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908697-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.263,"0.263","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:54:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-29-C","Sample-Routine","WATER",NA,2021-07-21,"10:22:00","MST",NA,NA,NA,66.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 17:22:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5676","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202109141209:SR","Sample-Routine","WATER",NA,2021-09-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DDC",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Present Below Quantification Limit","AMMONIA","UNFILTERED",0.167,"0.167","Numeric","MG/L","B","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:09:00,NA,"Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949890-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.233,"0.233","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 18:05:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.397,"0.397","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 19:10:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5679","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995210-0214-LAB","Sample-Routine","WATER",NA,2022-02-14,"11:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.4,"10.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-14 18:49:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5680","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996570-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"09:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.39,"2.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 16:04:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5681","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1184S","Sample-Routine","WATER",NA,2022-01-24,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-RARE - 1",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle",NA,"AMMONIA","UNFILTERED",0.811,"0.811","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-01-26,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2022-01-24 19:30:00,NA,"RARE - 1","Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5682","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994952-0104-LAB","Sample-Routine","WATER",NA,2022-01-04,"08:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.24,"3.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-04 15:28:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904340-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904340",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.6,"1.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 19:30:00,NA,"CUB R @ 800 South ab High Creek","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4906400-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"11:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4906400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.01,"1.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 18:12:00,NA,"Blacksmith Fk @ 2900S nr Milleville UT","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903770-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 19:50:00,NA,"CUB R AT U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C","Sample-Routine","WATER",NA,2021-07-15,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4956290",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.779,"0.779","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-15 21:10:00,NA,"COLORADO RIVER AT POTASH BOAT RAMP","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.797,"0.797","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:00:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949920-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.22,"0.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 19:20:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901050-0719-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-19,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.66,"1.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:25:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-5984855-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"08:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5984855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.8,"10.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 15:20:00,NA,"WILLARD PERRY WWTP FACILITY","Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908140-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.191,"0.191","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 17:35:00,NA,"RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-14,"11:57:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-27,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-14 18:57:00,NA,"STRAWBERRY RES BRYANTS FK T-2","Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5693","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996540-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.73,"9.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 17:57:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220330-4995790-0330-4-C","Sample-Routine","WATER",NA,2022-03-30,"09:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995790",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1,"1","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-30 16:22:00,NA,"SPANISH FK R AB CNFL / DIAMOND FK CK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0246700000","-111.5029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5910302-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"11:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 18:03:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5696","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4995210-0104-LAB","Sample-Routine","WATER",NA,2022-01-04,"11:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",15.2,"15.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-04 18:43:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996044",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.02,"2.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:25:00,NA,"Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville","Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C","Sample-Routine","WATER",NA,2021-08-30,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.479,"0.479","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-30 16:10:00,NA,"GREEN R AT MINERAL BOTTOMS","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905631-0811-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-11,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.447,"0.447","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:45:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997330-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"10:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 17:54:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905050-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2.52,"2.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C","Sample-Routine","WATER",NA,2021-09-27,"14:15:00","MST",NA,NA,NA,37,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.28,"0.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 21:15:00,NA,"Bear Lake 3 mi ESE of SP Marina","Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"11:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4933352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.344,"0.344","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:12:00,NA,"Current Creek 0.75 mile below Current Creek Dam spillway","River/Stream",NA,"14060004",NA,NA,NA,NA,"40.3247400000","-111.0464800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5704","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996550-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.94,"8.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 17:14:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904110-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.17,"1.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:00:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997670-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"11:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 18:38:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.808,"0.808","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:15:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5708","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995222-0713-LAB","Sample-Routine","WATER",NA,2021-07-13,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.584,"0.584","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-13 17:35:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905135-0824-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-08-24,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905135",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 20:50:00,NA,"Logan River watershed nonpoint source QA/QC blank","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4949070-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949070",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.181,"0.181","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:08:00,NA,"OTTER CK AT U62 XING N OF KOOSHAREM","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5641400000","-111.8493600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4900751-0708-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-08,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 22:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-14,"12:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5901000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.65,"0.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:25:00,NA,"CUTLER RES BENSION MARINA BRIDGE 04","Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990555-0817-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-17,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990555",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.096,"0.096","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 15:00:00,NA,"Davis County Equipment Blank","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905540-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",132,"132","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:05:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908697-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.357,"0.357","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:05:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905770-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.219,"0.219","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 00:00:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5717","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1172S","Sample-Routine","WATER",NA,2021-07-14,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-CW-N",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","NITRATE","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/","Green Analytical Laboratories",2021-07-16,NA,"Lower Reporting Limit",0.02,0.02,"Numeric","MG/L",NA,"STORET",2021-07-14 17:55:00,NA,"Cottonwood wash north","River/Stream","Cottonwood Wash, north end of Tribal lands there. The ephemeral wash flows onto and off from the Tribal lands a few times on its journy to the San Juan River. Highly impacted by uranium mining.","14080201",NA,NA,NA,NA,"37.7415950000","-109.6886280000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901950-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.423,"0.423","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:50:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905631-0929-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-29,"13:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.411,"0.411","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:13:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949892-0920-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-20,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949892",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.361,"0.361","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 19:20:00,NA,"CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890","River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-27,"11:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.283,"0.283","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 18:45:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990376-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990376",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 20:00:00,NA,"PARRISH CK @ FIREBREAK RD XING","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-08,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.439,"0.439","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 18:50:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902900-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.573,"0.573","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:55:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905040-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.436,"0.436","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:25:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905188-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905188",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.698,"0.698","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 17:45:00,NA,"Spring Creek ab pedestrian bridge and Logan River confluence","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903260-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.366,"0.366","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 16:30:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"11:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4933352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.319,"0.319","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:12:00,NA,"Current Creek 0.75 mile below Current Creek Dam spillway","River/Stream",NA,"14060004",NA,NA,NA,NA,"40.3247400000","-111.0464800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-02,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4953981",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-02 16:30:00,NA,"UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980","River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908745-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.335,"0.335","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 21:25:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0921-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-21,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.14,"0.14","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994650-0904-4-C","Sample-Routine","WATER",NA,2021-09-04,"11:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-5994650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.17,"0.17","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 18:31:00,NA,"DEER SPRING WASH BL DEER SPR RANCH","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.558,"0.558","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:30:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901975-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901975",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.6,"2.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:25:00,NA,"WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"09:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.266,"0.266","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:00:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4904330-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.674,"0.674","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 19:15:00,NA,"HIGH CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904250-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 16:00:00,NA,"CUB R AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903260-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.847,"0.847","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:10:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931480",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.783,"0.783","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:30:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904990-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.898,"0.898","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:55:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908744-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908744",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:35:00,NA,"Logan River bl 2nd Dam (UT09ST-198)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5742","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996022-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"13:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.7,"2.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 20:06:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4905198",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.305,"0.305","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 21:00:00,NA,"Logan River at Water Lab lower bridge","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905740-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.129,"0.129","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:55:00,NA,"S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"10:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.517,"0.517","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 17:47:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903260",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.44,"0.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:25:00,NA,"BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904990-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904990",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.75,"1.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 17:15:00,NA,"SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949920-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.356,"0.356","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 20:05:00,NA,"Upper Clear Creek above Panguitch Lake","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C","Sample-Routine","WATER",NA,2021-07-07,"11:40:00","MST",NA,NA,NA,13,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.589,"0.589","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 18:40:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5750","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1186S","Sample-Routine","WATER",NA,2022-04-05,"09:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-RARE - 1",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle",NA,"AMMONIA","UNFILTERED",0.961,"0.961","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-04-13,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2022-04-05 16:02:00,NA,"RARE - 1","Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5751","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996540-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"09:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.97,"7.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 16:41:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902710-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",10.3,"10.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:45:00,NA,"TREMONTON WWTP","Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5753","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995075-0914-LAB","Sample-Routine","WATER",NA,2021-09-14,"10:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.99,"2.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-09-14 17:03:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5754","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996566-0818-LAB","Sample-Routine","WATER",NA,2021-08-18,"12:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.66,"9.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-08-18 19:02:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926361-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"13:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926361",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.319,"0.319","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 20:08:00,NA,"Fish Creek at road xing AB S. Fk Chalk Ck confluence","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5756","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4995043-0314-LAB","Sample-Routine","WATER",NA,2022-03-14,"08:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.99,"5.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-14 15:56:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903060-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903060",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.12,"4.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:40:00,NA,"THE SLOUGH 2 BLOCKS SOUTH OF U23 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"07:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4937125",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.42,"1.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 14:55:00,NA,"Ouray Park Canal at Mouth ab Pelican Lake","Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.1958800000","-109.6969900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5759","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202205191157:SR","Sample-Routine","WATER",NA,2022-05-19,"11:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","TOTAL",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-27,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2022-05-19 18:57:00,NA,"Red Bridge","River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4828,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-21,"12:04:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 19:04:00,NA,"JORDANELLE RES PROVO ARM 04","Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-21,"11:55:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952560",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.409,"0.409","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:55:00,NA,"LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE","Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4951850-0904-4-C","Sample-Routine","WATER",NA,2021-09-04,"08:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Bureau of Land Management","UTAHDWQ_WQX-4951850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-04 15:35:00,NA,"PARIA R AT US89 XING","River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996780-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"15:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 22:06:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5764","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4917712-0314-LAB","Sample-Routine","WATER",NA,2022-03-14,"15:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.8,"4.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-14 22:06:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C","Quality Control Sample-Field Blank","WATER",NA,2021-07-28,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-5995202",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-28 22:45:00,NA,"Arches National Park (Field Blank)","River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903507-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.397,"0.397","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 18:30:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905000-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.755,"0.755","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:45:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210729-4995600-0729-4-C","Sample-Routine","WATER",NA,2021-07-29,"09:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-29 16:44:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-18,"08:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.729,"0.729","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 15:50:00,NA,"PELICAN LAKE 01 W MIDLAKE","Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.762,"0.762","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:30:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902050-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.29,"3.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:50:00,NA,"Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5772","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4917712-0607-LAB","Sample-Routine","WATER",NA,2022-06-07,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.84,"2.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-07 22:50:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904800-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.757,"0.757","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:00:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000","River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5774","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4994952-0510-LAB","Sample-Routine","WATER",NA,2022-05-10,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.15,"1.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-10 15:57:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"10:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.91,"1.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 17:11:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904920-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.56,"8.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 19:55:00,NA,"S FK SPRING CK E OF PELICAN POND @ RD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.401,"0.401","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:20:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901930-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.481,"0.481","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 17:00:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"12:30:00","MST",NA,NA,NA,2.301,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917710",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.954,"0.954","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 19:30:00,NA,"UTAH LAKE 1 MI NE OF LINCOLN POINT #03","Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5780","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996570-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.95,"1.95","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 16:40:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905050-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.743,"0.743","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"10:35:00","MST",NA,NA,NA,2.153,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.663,"0.663","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:35:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210909-5937650-0909-23-C","Sample-Routine","WATER",NA,2021-09-09,"13:45:00","MST",NA,NA,NA,7,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-21,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-09 20:45:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5784","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996190-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"11:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.52,"5.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 18:01:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5785","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4917712-0104-LAB","Sample-Routine","WATER",NA,2022-01-04,"15:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.89,"6.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-04 22:03:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903400-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.774,"0.774","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 18:25:00,NA,"BEAR R BL CNFL / SUMMIT CK AT 2400 WEST","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5787","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996275-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"11:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.91,"4.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 18:32:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900511-0929-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-29,"14:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900511",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 21:35:00,NA,"MAPLE CK AB MANTUA RES Replicate of 4900510","River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996680",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.966,"0.966","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 20:25:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 18:50:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5791","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4995043-0104-LAB","Sample-Routine","WATER",NA,2022-01-04,"09:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.15,"6.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-04 16:06:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901100-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:45:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905040-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905040",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.66,"1.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:25:00,NA,"LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997250-0824-4-C","Sample-Routine","WATER",NA,2021-08-24,"12:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-09-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-08-24 19:29:00,NA,"SPRING CK AB CNFL / PROVO R NR HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5795","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996003-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.61,"1.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 20:25:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.214,"0.214","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:09:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901950-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.669,"0.669","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:50:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901930-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"08:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 15:55:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901700-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4.06,"4.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:20:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-08,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930007",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 15:00:00,NA,"Clean Lakes equipment blank Kemmerer","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.92,"1.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 17:20:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4998130-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 17:35:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",5.5,"5.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 19:30:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5804","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996275-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"10:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.89,"6.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 17:02:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904720-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904720",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.01,"1.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:10:00,NA,"CLAY SLOUGH AB BEAR R @ CR XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.51,"3.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:10:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-26,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4990006",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 18:30:00,NA,"EQUIPMENT BLANK-Jordan River Big Bend project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5808","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996020-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"09:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.09,"6.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 16:09:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902900-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4902900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.748,"0.748","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 21:55:00,NA,"Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901950-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.718,"0.718","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:55:00,NA,"WEST SIDE CANAL BL CUTLER RES","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0719-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-19,"17:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 00:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990373-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Davis County","UTAHDWQ_WQX-4990373",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.882,"0.882","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 17:00:00,NA,"PARRISH CK @ 900 W","River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901190-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.586,"0.586","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 15:45:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"11:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5906510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.265,"0.265","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:15:00,NA,"LITTLE CK RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"41.6743900000","-111.2288100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908160-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"15:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908160",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.209,"0.209","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 22:07:00,NA,"South Fork Otter Creek @ Otter Creek Road","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5816","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996560-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",24.1,"24.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 15:45:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907150",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.167,"0.167","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 18:55:00,NA,"BIRCH CK AB BIRCH CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5035500000","-111.3368600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.38,"1.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 17:20:00,NA,"UTAH LAKE GOSHEN BAY SOUTHWEST END","Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",5.17,"5.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 19:30:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904110-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904110",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:00:00,NA,"HYRUM SLOUGH AT 300 NORTH IN HYRUM","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-22,"10:21:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 17:21:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901930-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"08:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.737,"0.737","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 15:00:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903504-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903504",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.128,"0.128","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 18:55:00,NA,"Summit Creek at 400 West crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905078-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",7.05,"7.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 18:25:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901050-0921-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-21,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 16:45:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904510-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.61,"3.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:45:00,NA,"HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5827","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995043-0607-LAB","Sample-Routine","WATER",NA,2022-06-07,"09:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.6,"5.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-07 16:23:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4944352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.18,"1.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 18:00:00,NA,"South Fork Baker Canyon ab confluence with North Fork Baker Canyon","River/Stream",NA,"16030007",NA,NA,NA,NA,"38.2778500000","-112.5521600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",1,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904240-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",2,"2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 18:45:00,NA,"CUB R AT CASPER ICE CREAM RD","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-17,"16:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.05,"1.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 23:00:00,NA,"MATT WARNER RES AB DAM","Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5831","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996566-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"11:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.09,"9.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 18:11:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.906,"0.906","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 18:00:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"09:45:00","MST",NA,NA,NA,0.775,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.887,"0.887","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 16:45:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"10:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917335",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.08,"1.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 17:20:00,NA,"Utah Lake at Lindon Marina Beach NE of launch ramps","Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220225-4995600-0225-4-C","Sample-Routine","WATER",NA,2022-02-25,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-25 18:50:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"11:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.588,"0.588","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 18:50:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211028-4995600-1028-4-C","Sample-Routine","WATER",NA,2021-10-28,"09:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-28 16:52:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917390-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"12:10:00","MST",NA,NA,NA,2.394,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.12,"1.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 19:10:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.338,"0.338","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 19:10:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949855-0809-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-09,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Forest Service","UTAHDWQ_WQX-5949855",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 00:00:00,NA,"Panguitch Lake QAQC Blank","Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-18,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.149,"0.149","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 20:50:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-28-C","Sample-Routine","WATER",NA,2021-09-21,"11:31:00","MST",NA,NA,NA,22,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 18:31:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-17,"16:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5937852",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 23:15:00,NA,"MATT WARNER RES AB DAM Replicate of 5937850","Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900751-0823-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-23,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-12,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-12 21:25:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"12:50:00","MST",NA,NA,NA,2.193,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.648,"0.648","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:50:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5847","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4917712-0413-LAB","Sample-Routine","WATER",NA,2022-04-13,"13:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.09,"5.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-13 20:29:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5848","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995075-0712-LAB","Sample-Routine","WATER",NA,2022-07-12,"10:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.79,"2.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-12 17:04:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0811-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-11,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5850","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996560-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",22.2,"22.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 16:30:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5851","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1189S","Sample-Routine","WATER",NA,2022-04-06,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UMU_106",NA,"UTEMTN-WM_GWMW_E",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-04-13,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2022-04-06 19:30:00,NA,"white mesa ground water monitoring well; east","Well","monitoring well downgradient of White Mesa Uranium Mill, southeast","14080201",NA,NA,NA,NA,"37.4964750000","-109.4931020000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83",5470,"ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Mountain Ute Tribe''s Clean Water Act Section 106 Program","Collection of water quality data for assessment of beneficial use and water quality standards attainment, background contaminant levels, and protection of public health and welfare",NA,NA,NA,NA,NA +"5852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903510-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.153,"0.153","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 18:20:00,NA,"SUMMIT CK @ USFS BNDY","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905078-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",6.99,"6.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:25:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-21,"09:52:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 16:52:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-24-C","Sample-Routine","WATER",NA,2021-10-20,"10:02:00","MST",NA,NA,NA,4,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 17:02:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5856","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996566-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"11:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.91,"5.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 18:59:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5857","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995210-0413-LAB","Sample-Routine","WATER",NA,2022-04-13,"09:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.9,"10.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-13 16:48:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.447,"0.447","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:10:00,NA,"WINTER QUARTERS CREEK ABOVE CNFL / MUD CK","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-27-C","Sample-Routine","WATER",NA,2021-07-21,"10:08:00","MST",NA,NA,NA,22,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-02,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-21 17:08:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5860","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996540-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"10:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.8,"10.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 17:49:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C","Sample-Routine","WATER",NA,2021-09-27,"11:10:00","MST",NA,NA,NA,45.12,"m",NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.318,"0.318","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 18:10:00,NA,"BEAR LAKE 1 MI OFF SHORE FROM N EDEN","Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-23,"14:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Bureau of Reclamation","UTAHDWQ_WQX-5952700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.448,"0.448","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 21:40:00,NA,"LAKE POWELL OFF DAVIS GULCH","Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5863","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996550-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",20.4,"20.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 16:20:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210928-4995730-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"09:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-29 16:12:00,NA,"SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4997330-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"10:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 17:42:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"16:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.536,"0.536","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 23:15:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-09,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5919971",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.71,"0.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 20:10:00,NA,"SPANISH FORK R AT 5000 SOUTH Replicate of 5919970","River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C","Sample-Routine","WATER",NA,2021-08-25,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931545",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.559,"0.559","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 18:00:00,NA,"MUD CREEK AT COUNTY RESTORATION SITE","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C","Sample-Routine","WATER",NA,2021-09-10,"08:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908701",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.28,"0.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-10 15:30:00,NA,"Right Hand Fk Logan R ~2.2 mi ab Logan R (UT09ST-174)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7725300000","-111.6029900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908170-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908170",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.163,"0.163","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 20:50:00,NA,"OTTER CK 5.7 MI UP OTTER CK RD AB RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211028-4995730-1028-4-C","Sample-Routine","WATER",NA,2021-10-28,"10:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-28 17:44:00,NA,"SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903507-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.961,"0.961","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 17:55:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905631-0929-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-29,"13:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.405,"0.405","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 20:13:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5874","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996550-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"11:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",18.4,"18.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 18:53:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905050-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.49,"2.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 18:00:00,NA,"Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5876","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996022-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"13:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.45,"1.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 20:46:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5877","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-UFD:202205231220:SR","Sample-Routine","WATER",NA,2022-05-23,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-UFD",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2022-05-23 19:20:00,NA,"Ft. Duchesne","River/Stream","Uintah River at US 40 Bridge","14060003",NA,NA,NA,NA,"40.3019500000","-109.8531500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",5018,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4948940-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"10:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.177,"0.177","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 17:21:00,NA,"OTTER CREEK AT THE NARROWS","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-29-C","Sample-Routine","WATER",NA,2021-10-21,"10:57:00","MST",NA,NA,NA,2,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 17:57:00,NA,"DEER CREEK RES UPPER END 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994950",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 21:40:00,NA,"SPRING CK BL LEHI MILL POND","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5881","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996275-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.44,"5.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 19:30:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905000-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.892,"0.892","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 16:30:00,NA,"LITTLE BEAR R @ CR376 XING (MENDON RD)","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903820-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903820",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.899,"0.899","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 17:30:00,NA,"BEAR R W OF RICHMOND AT U142 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905670-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"15:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 22:55:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5885","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996680-0413-LAB","Sample-Routine","WATER",NA,2022-04-13,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.447,"0.447","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-13 18:25:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5886","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995210-0510-LAB","Sample-Routine","WATER",NA,2022-05-10,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.1,"12.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-10 18:46:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5887","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996680-0607-LAB","Sample-Routine","WATER",NA,2022-06-07,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.353,"0.353","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-07 21:17:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5888","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995467-0510-LAB","Sample-Routine","WATER",NA,2022-05-10,"15:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.05,"3.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-10 22:38:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5889","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996003-0413-LAB","Sample-Routine","WATER",NA,2022-04-13,"14:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.32,"3.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-13 21:46:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5890","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996570-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"08:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.5,"2.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 15:51:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5891","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996550-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"09:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",21,"21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 16:07:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5892","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996566-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"14:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.97,"8.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 21:04:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996810-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 21:10:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-29-C","Sample-Routine","WATER",NA,2021-10-21,"10:34:00","MST",NA,NA,NA,18,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 17:34:00,NA,"DEER CREEK RES MIDLAKE 02","Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4948940-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4948940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 21:10:00,NA,"OTTER CREEK AT THE NARROWS","River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C","Sample-Routine","WATER",NA,2021-09-09,"10:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5910280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.93,"1.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-09 17:11:00,NA,"SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901050-0810-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-10,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.72,"1.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:50:00,NA,"BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100","River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5898","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996410-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.646,"0.646","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 16:20:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5899","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202205191409:SR","Sample-Routine","WATER",NA,2022-05-19,"14:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-G4C",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2022-05-19 21:09:00,NA,"4 Corners","River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",4865,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903200-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.51,"1.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 21:00:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5901","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995210-0607-LAB","Sample-Routine","WATER",NA,2022-06-07,"11:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.3,"12.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-07 18:52:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995578",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.92,"0.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 17:45:00,NA,"SPANISH FORK RIVER AT UTAH LAKE INLET","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905631-0721-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-21,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905631",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.633,"0.633","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 17:10:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630","River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-24,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920470",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.569,"0.569","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 18:30:00,NA,"WILLARD BAY RES 100M OFF N END OF SE DIKE 04","Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5905","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4994958-0607-LAB","Sample-Routine","WATER",NA,2022-06-07,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994958",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)","Below Reporting Limit","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-07 15:57:00,NA,"American Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3430690000","-111.8034880000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5906","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996275-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"11:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.5,"7.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 18:54:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5907","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996100-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"13:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)","Below Reporting Limit","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 20:14:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5908","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995467-0413-LAB","Sample-Routine","WATER",NA,2022-04-13,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.47,"3.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-13 21:05:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949650-0913-4-C","Sample-Routine","WATER",NA,2021-09-13,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4949650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.158,"0.158","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 16:50:00,NA,"SEVIER R NEAR HATCH","River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6515000000","-112.4304300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-24,"10:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4920440",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.362,"0.362","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 17:15:00,NA,"WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01","Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"13:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.733,"0.733","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:20:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5912","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994952-1108-LAB","Sample-Routine","WATER",NA,2021-11-08,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.35,"2.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-08 15:57:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5919910",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.38,"4.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 16:50:00,NA,"DRAIN AT 4000 WEST 5000 SOUTH","Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5914","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-UFD:202205231220:SR","Sample-Routine","WATER",NA,2022-05-23,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-UFD",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","TOTAL",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-27,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2022-05-23 19:20:00,NA,"Ft. Duchesne","River/Stream","Uintah River at US 40 Bridge","14060003",NA,NA,NA,NA,"40.3019500000","-109.8531500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84",5018,"ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C","Sample-Routine","WATER",NA,2021-09-08,"12:05:00","MST",NA,NA,NA,10.88,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.73,"1.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 19:05:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917414",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.752,"0.752","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 21:00:00,NA,"Utah Lake Saratoga Springs Marina Boat Ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917305",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 17:00:00,NA,"Utah Lake at American Fork Marina near boat ramp","Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-22,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-03,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-22 17:50:00,NA,"DEER CREEK RES UPPER END 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997300-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"11:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 18:36:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4996780-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 20:15:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.425,"0.425","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:28:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"5922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C","Sample-Routine","WATER",NA,2021-09-21,"15:15:00","MST",NA,NA,NA,45,"m",NA,NA,NA,NA,NA,"306","Bureau of Reclamation","UTAHDWQ_WQX-5952590",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.531,"0.531","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 22:15:00,NA,"LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM","Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211208-4995600-1208-4-C","Sample-Routine","WATER",NA,2021-12-08,"09:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-08 16:02:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4998140-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"10:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 17:04:00,NA,"WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905441-0928-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-28,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905441",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.253,"0.253","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 17:55:00,NA,"BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440","River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5926","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4994952-0712-LAB","Sample-Routine","WATER",NA,2022-07-12,"09:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.45,"1.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-12 16:07:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0923-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-23,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 23:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901431-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901431",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2.33,"2.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 18:40:00,NA,"SALT CK AT 4600 NORTH","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903080-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903080",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",4,"4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 17:55:00,NA,"THE SLOUGH AT U23 XING IN NEWTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5930","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996100-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"15:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.458,"0.458","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 22:13:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5931","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4995075-0104-LAB","Sample-Routine","WATER",NA,2022-01-04,"09:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.11,"3.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-04 16:53:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5932","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996566-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"09:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.81,"7.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 16:51:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5933","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996540-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"13:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.65,"9.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 20:14:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5934","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996100-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.23,"0.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 19:09:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5935","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996410-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"10:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.778,"0.778","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 17:39:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904310-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 19:55:00,NA,"SPRING CK E OF LEWISTON @ U61 XING","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.45,"9.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 19:00:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C","Sample-Routine","WATER",NA,2021-08-31,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4908713",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.389,"0.389","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 16:20:00,NA,"Malad River ab 20800 N Xing near Plymouth (UT09ST-113)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8882800000","-112.1881600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5939","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1188S","Sample-Routine","WATER",NA,2022-04-06,"09:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UMU_106",NA,"UTEMTN-RARE - 1",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-04-13,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2022-04-06 16:36:00,NA,"RARE - 1","Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Mountain Ute Tribe''s Clean Water Act Section 106 Program","Collection of water quality data for assessment of beneficial use and water quality standards attainment, background contaminant levels, and protection of public health and welfare",NA,NA,NA,NA,NA +"5940","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202205171545:SR","Sample-Routine","WATER",NA,2022-05-17,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-IDR",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-31,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2022-05-17 22:45:00,NA,"INDIAN CREEK","River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5941","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995075-1108-LAB","Sample-Routine","WATER",NA,2021-11-08,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.2,"3.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-08 16:47:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-25,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931467",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-25 19:00:00,NA,"Equipment Blank - Mud Ck Restoration Project","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"10:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917310",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.755,"0.755","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:00:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A","Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"09:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994175",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.25,"3.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 16:05:00,NA,"Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.261,"0.261","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 19:55:00,NA,"BIG CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"13:30:00","MST",NA,NA,NA,2.251,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.704,"0.704","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:30:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908350-0927-4-C","Sample-Routine","WATER",NA,2021-09-27,"12:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.299,"0.299","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-27 19:28:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997670-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"11:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 18:21:00,NA,"MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997330-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 17:50:00,NA,"PROVO R BL JORDANELLE RES. ON OLD US4O XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5950","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996566-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"10:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.49,"5.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 17:52:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5951","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996680-0712-LAB","Sample-Routine","WATER",NA,2022-07-12,"13:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)","Below Reporting Limit","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-12 20:24:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"11:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4994970",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 18:14:00,NA,"HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM","Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900802-0805-4-C","Sample-Routine","WATER",NA,2021-08-05,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-4900802",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.292,"0.292","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-05 18:40:00,NA,"Old Canyon 1.33 miles ab confluence with Little Creek","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6462200000","-111.2811100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"5954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904724-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904724",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.17,"3.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 19:20:00,NA,"Clay Slough at SR-218 (6200 N) crossing","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5955","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996100-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"11:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.283,"0.283","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 18:37:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-01,"10:40:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Other","UTAHDWQ_WQX-4907088",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.187,"0.187","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 17:40:00,NA,"Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5910250-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"12:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-08-09,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-27 19:27:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-27-C","Sample-Routine","WATER",NA,2021-09-21,"11:27:00","MST",NA,NA,NA,16,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 18:27:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904810-0721-4-C","Sample-Routine","WATER",NA,2021-07-21,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",8.63,"8.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 16:25:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905770-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.229,"0.229","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-21 00:00:00,NA,"DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996830-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"13:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 20:59:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905630-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905630",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.467,"0.467","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:40:00,NA,"LITTLE BEAR R NR WELLSVILLE @SR101 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926352-0812-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-12,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926352",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 21:17:00,NA,"CHALK CK AT US189 XING COOP Replicate of 4926350","River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"5964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905200-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"12:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.332,"0.332","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 19:52:00,NA,"LOGAN R AT MOUTH OF CANYON","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996890-1207-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-12-07,"13:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 20:46:00,NA,"PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210","River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900510",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.714,"0.714","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 17:45:00,NA,"MAPLE CK AB MANTUA RES","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4998130-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"10:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 17:31:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904810-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"12:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.69,"4.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 19:13:00,NA,"SPRING CK SC-9","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905078-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"10:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905078",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.57,"7.57","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 17:25:00,NA,"Receiving stream ab Logan Lagoons at 2600 W Xing","Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5970","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996190-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"10:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.16,"5.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 17:07:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5971","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995222-0712-LAB","Sample-Routine","WATER",NA,2022-07-12,"10:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.614,"0.614","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-12 17:37:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5972","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996566-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"11:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.78,"8.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 18:08:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905540-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",128,"128","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 19:05:00,NA,"E. A. MILLER CO. EFFLUENT","Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1,"1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:30:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4995038",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",9.65,"9.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 22:35:00,NA,"Timpanogos Effluent below constructed duck ponds","Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5910020-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910020",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 20:00:00,NA,"LOWER CHARLESTON CANAL AB CNFL / DANIELS CK","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996830-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"14:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 21:07:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905400-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.197,"0.197","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:20:00,NA,"BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5979","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995043-0214-LAB","Sample-Routine","WATER",NA,2022-02-14,"09:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.75,"5.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-14 16:18:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996810-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 21:05:00,NA,"PROVO RIVER AT OLMSTEAD DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"11:25:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917715",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.746,"0.746","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:25:00,NA,"Utah Lake 1 mile southeast of Bird Island","Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5982","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996020-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"12:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.78,"1.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 19:26:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996566",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.5,"11.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 18:30:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5984","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996100-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"12:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 19:12:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210713-5937650-0713-27-C","Sample-Routine","WATER",NA,2021-07-13,"12:43:00","MST",NA,NA,NA,11,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-07-23,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-07-13 19:43:00,NA,"RED FLEET RES AB DAM 01","Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5986","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202205191128:SR","Sample-Routine","WATER",NA,2022-05-19,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-DDC",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","TOTAL",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-27,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2022-05-19 18:28:00,NA,"Duchesne River South of Randlett","River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5910273-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"11:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 18:12:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C","Sample-Routine","WATER",NA,2021-09-15,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.911,"0.911","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 17:35:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C","Sample-Routine","WATER",NA,2021-09-01,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4907200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.199,"0.199","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 18:28:00,NA,"SWAN CK AB BEAR LAKE","River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"5990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903191-0720-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-20,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903191",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 20:50:00,NA,"CLARKSTON CK AT U142 XING Replicate of 4903190","River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",7.35,"7.35","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 19:55:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5992","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1185Q","Quality Control Sample-Field Replicate","WATER",NA,2022-01-24,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"UTEMTN-RARE - 1",NA,NA,NA,NA,"UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Water Bottle",NA,"AMMONIA","UNFILTERED",0.76,"0.760","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-01-26,NA,"Lower Reporting Limit",0.1,0.1,"Numeric","MG/L",NA,"STORET",2022-01-24 19:35:00,NA,"RARE - 1","Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"5993","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996570-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"08:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.05,"2.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 15:43:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908745-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908745",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.755,"0.755","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 21:55:00,NA,"Malad River @ 2400 N Xing in Plymouth (UT09ST-145)","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903200-0811-4-C","Sample-Routine","WATER",NA,2021-08-11,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903200",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.45,"1.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-11 20:25:00,NA,"CLARKSTON CK AT 500 NORTH IN CLARKSTON","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901700-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.643,"0.643","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 19:20:00,NA,"BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5997","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996190-0714-LAB","Sample-Routine","WATER",NA,2021-07-14,"10:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.43,"8.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-14 17:38:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"5998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"12:15:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.777,"0.777","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 19:15:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"5999","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996680-0214-LAB","Sample-Routine","WATER",NA,2022-02-14,"13:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.353,"0.353","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-14 20:07:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904940-0929-4-C","Sample-Routine","WATER",NA,2021-09-29,"11:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904940",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",14.1,"14.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 18:11:00,NA,"S FK SPRING CK @ US 89 XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996850-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"13:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 20:58:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6002","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996100-1110-LAB","Sample-Routine","WATER",NA,2021-11-10,"08:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.847,"0.847","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-10 15:48:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6003","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994952-0713-LAB","Sample-Routine","WATER",NA,2021-07-13,"08:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.13,"1.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-07-13 15:36:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4901190-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.58,"0.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 16:20:00,NA,"BOX ELDER CK AB BRIGHAM CITY WWTP","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C","Sample-Routine","WATER",NA,2021-08-16,"11:40:00","MST",NA,NA,NA,1.866,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.898,"0.898","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 18:40:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.844,"0.844","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 18:40:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-26-C","Sample-Routine","WATER",NA,2021-09-21,"11:18:00","MST",NA,NA,NA,11,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-04,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-09-21 18:18:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-29-C","Sample-Routine","WATER",NA,2021-10-20,"11:19:00","MST",NA,NA,NA,27,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 18:19:00,NA,"JORDANELLE RES NORTH ARM 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908280-0809-4-C","Sample-Routine","WATER",NA,2021-08-09,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908280",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.305,"0.305","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-09 20:10:00,NA,"BEAR R @ RANDOLPH/CRAWFORD MTN RD XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901180-0921-4-C","Sample-Routine","WATER",NA,2021-09-21,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901180",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",4.42,"4.42","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-21 16:20:00,NA,"BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6011","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202109201525:SR","Sample-Routine","WATER",NA,2021-09-20,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-WRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Reported","NITRATE","UNFILTERED",NA,NA,"ND or NA",NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",2021-09-20 22:25:00,NA,"Whiterocks River 2","River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"6012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-17,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4910009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-17 21:00:00,NA,"EQUIPMENT BLANK-Utah Lake","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901930-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"08:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901930",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.901,"0.901","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 15:50:00,NA,"HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD","Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4997300-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"10:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 17:54:00,NA,"PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"13:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917500",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.886,"0.886","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 20:10:00,NA,"UTAH LAKE 3 MI WNW OF LINCOLN BEACH","Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6016","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-RKD:202205171417:SR","Sample-Routine","WATER",NA,2022-05-17,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-RKD",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-06-02,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2022-05-17 21:17:00,NA,"Rock Creek","River/Stream","Knights Diversion below 3rd bridge.","14060003",NA,NA,NA,NA,"40.3110798300","-110.4938520000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"6017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C","Sample-Routine","WATER",NA,2021-09-23,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-5995700",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.181,"0.181","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 17:40:00,NA,"SQUARE TOWER SPRING","Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"6018","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996680-0314-LAB","Sample-Routine","WATER",NA,2022-03-14,"12:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.381,"0.381","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-14 19:38:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C","Sample-Routine","WATER",NA,2021-08-18,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996540",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",11.1,"11.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 19:00:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220330-4995600-0330-4-C","Sample-Routine","WATER",NA,2022-03-30,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-30 15:57:00,NA,"SPANISH FORK RIVER AT MOARK DIVERSION","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"09:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302;306","National Park Service","UTAHDWQ_WQX-4930010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.388,"0.388","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 16:28:00,NA,"GREEN R AB CNFL / COLORADO R","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N",NA,NA,NA,NA,NA,NA,NA +"6022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C","Sample-Composite Without Parents","WATER",NA,2021-09-01,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190","Licor 1% depth at 15m; 6 Photic zone samples taken at 1m, 4m, 7m, 10m, 13m, and 15m; sample time = 12:50; no hydrodata",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.198,"0.198","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 19:50:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5913210-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 20:45:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.07,"1.07","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 17:50:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-07-16,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"301","Division of Water Quality","UTAHDWQ_WQX-5989995",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.377,"0.377","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-16 17:00:00,NA,"UCASE equipment blank- statewide","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Probabilistic","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA +"6026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4998130-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"10:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 17:22:00,NA,"Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6027","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995210-1012-LAB","Sample-Routine","WATER",NA,2021-10-12,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.9,"12.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-12 18:46:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-31,"10:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5931190",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.876,"0.876","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 17:50:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000","Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C","Sample-Routine","WATER",NA,2021-07-06,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4954780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.112,"0.112","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-06 22:00:00,NA,"Pleasant Ck at Pleasant Ck Road xing at South Draw","River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996780-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"14:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 21:22:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6031","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996550-1109-LAB","Sample-Routine","WATER",NA,2021-11-09,"13:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",21.1,"21.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-09 20:39:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6032","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996275-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"11:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.67,"2.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 18:39:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904870-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.31,"0.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 18:28:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905142-0824-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-08-24,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4905142",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.428,"0.428","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 18:45:00,NA,"Logan R @ 1000 West Replicate of 4905140","River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"6035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5913460-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"13:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.9,"1.9","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 20:12:00,NA,"MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6036","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996680-1108-LAB","Sample-Routine","WATER",NA,2021-11-08,"11:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)","Below Reporting Limit","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-08 18:11:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C","Sample-Routine","WATER",NA,2021-09-20,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931513",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.449,"0.449","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-20 18:40:00,NA,"Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"6038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C","Sample-Routine","WATER",NA,2021-07-13,"13:30:00","MST",NA,NA,NA,1.539,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917520",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.673,"0.673","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 20:30:00,NA,"UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12","Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-16,"13:00:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917708",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.711,"0.711","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-16 20:00:00,NA,"Utah Lake at Lincoln Marina (Beach)","Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917390",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.882,"0.882","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:45:00,NA,"UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR","Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6041","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-5919860-1110-LAB","Sample-Routine","WATER",NA,2021-11-10,"11:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-5919860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.04,"4.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-10 18:09:00,NA,"Beer Creek at 6400 S Road","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1144010000","-111.7929820000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904490-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904490",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.447,"0.447","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 17:35:00,NA,"BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"12:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4952400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",1.23,"1.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 19:01:00,NA,"COLORADO R AB CNFL / GREEN R","River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C","Sample-Composite Without Parents","WATER",NA,2021-09-01,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Other","UTAHDWQ_WQX-4917190","Licor 1% depth at 15m; 6 Photic zone samples taken at 1m, 4m, 7m, 10m, 13m, and 15m; sample time = 12:50; no hydrodata",NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.29,"0.29","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 19:50:00,NA,"Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6045","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995075-0214-LAB","Sample-Routine","WATER",NA,2022-02-14,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.2,"3.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-14 16:50:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6046","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996020-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"13:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.432,"0.432","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 20:13:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6047","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996410-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"10:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.796,"0.796","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 17:02:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6048","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4995210-0314-LAB","Sample-Routine","WATER",NA,2022-03-14,"10:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.65,"8.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-14 17:59:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6049","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996550-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"09:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",16.6,"16.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 16:29:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C","Sample-Routine","WATER",NA,2021-07-27,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931645",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.344,"0.344","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:20:00,NA,"Fish Ck AB Scofoeld Resevoir at Rainbow Blvd","River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"6051","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994952-1012-LAB","Sample-Routine","WATER",NA,2021-10-12,"08:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.63,"1.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-12 15:42:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6052","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996100-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"10:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.292,"0.292","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 17:11:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6053","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996550-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"09:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",22.1,"22.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 16:17:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6054","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996540-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"10:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.66,"9.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 17:46:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"10:30:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917365",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.741,"0.741","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:30:00,NA,"Utah Lake 2 miles west of Vineyard","Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6056","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995075-0510-LAB","Sample-Routine","WATER",NA,2022-05-10,"09:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.59,"2.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-10 16:59:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-29-C","Sample-Routine","WATER",NA,2021-10-21,"09:52:00","MST",NA,NA,NA,30.5,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 16:52:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5910273-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"11:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 18:52:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4998400-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"10:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 17:04:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901100-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4901100",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",2,"2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 16:45:00,NA,"BEAR R NEAR CORINNE AT U83 XING","River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4998400-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"10:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 17:07:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C","Sample-Routine","WATER",NA,2021-08-31,"10:35:00","MST",NA,NA,NA,5.01,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5931000",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.6,"0.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-31 17:35:00,NA,"SCOFIELD RES SW PERRY BOAT CAMP 04","Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6063","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996560-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"09:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",18.8,"18.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 16:19:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996780-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"14:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 21:18:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-27,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.375,"0.375","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:05:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"6066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904740-0810-4-C","Sample-Routine","WATER",NA,2021-08-10,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904740",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",24.7,"24.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 20:40:00,NA,"SPRING CK 1/2 MI S US89 XING SC-3","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6067","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202205181011:SR","Sample-Routine","WATER",NA,2022-05-18,"10:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106",NA,"NTHRNUTE-WRB",NA,NA,NA,NA,"UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","Water Bottle","Not Detected","AMMONIA","UNFILTERED",NA,NA,"ND or NA","MG/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry","https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-31,NA,"Practical Quantitation Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2022-05-18 17:11:00,NA,"Whiterocks River 2","River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Ute Indian Tribe Water Quality Department","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA +"6068","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996190-1109-LAB","Sample-Routine","WATER",NA,2021-11-09,"14:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.93,"8.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-09 21:26:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6069","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996570-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"08:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.58,"1.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 15:48:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6070","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995575-0214-LAB","Sample-Routine","WATER",NA,2022-02-14,"14:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.494,"0.494","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-14 21:04:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908152-0708-4-C","Sample-Routine","WATER",NA,2021-07-08,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908152",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.642,"0.642","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-08 20:00:00,NA,"Sage Ck 20 meters BL confl N Fork","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C","Sample-Routine","WATER",NA,2021-07-07,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5907800",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.275,"0.275","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-07 17:55:00,NA,"W FK BEAR R AB WHITNEY RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8257800000","-110.9293400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6073","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996410-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"09:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.09,"1.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 16:49:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6074","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996020-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"12:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.84,"3.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 19:51:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6075","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995575-1108-LAB","Sample-Routine","WATER",NA,2021-11-08,"13:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.3,"0.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-08 20:18:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6076","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996560-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"09:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",23.8,"23.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 16:09:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996870-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"13:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 20:33:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903507-0922-4-C","Sample-Routine","WATER",NA,2021-09-22,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4903507",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.419,"0.419","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-22 18:30:00,NA,"Summit Creek at 200 East crossing in Smithfield","River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C","Sample-Routine","WATER",NA,2021-09-10,"16:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","National Park Service","UTAHDWQ_WQX-4950920",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.675,"0.675","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-10 23:45:00,NA,"North Ck at Planned Gage in Park","River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"13:40:00","MST",NA,NA,NA,1.861,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.868,"0.868","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 20:40:00,NA,"UTAH LAKE 1 MI EAST OF PELICAN POINT","Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6081","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995043-1109-LAB","Sample-Routine","WATER",NA,2021-11-09,"09:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.47,"8.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-09 16:11:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6082","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995075-1012-LAB","Sample-Routine","WATER",NA,2021-10-12,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.31,"2.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-12 17:05:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C","Sample-Routine","WATER",NA,2021-07-14,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-5906900",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.266,"0.266","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-14 19:45:00,NA,"WOODRUFF CK AB WOODRUFF CK RES","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4624400000","-111.3488200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0927-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-27,"18:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 01:30:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C","Sample-Routine","WATER",NA,2021-09-13,"11:15:00","MST",NA,NA,NA,1.192,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4917433",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.949,"0.949","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-13 18:15:00,NA,"Utah Lake SP @ Marina","Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-27,"11:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-5931481",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.509,"0.509","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-27 18:05:00,NA,"Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480","River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"6087","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996540-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"11:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.88,"7.88","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 18:13:00,NA,"MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4998140-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"10:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 17:26:00,NA,"WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING","Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6089","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995043-0510-LAB","Sample-Routine","WATER",NA,2022-05-10,"09:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.52,"7.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-10 16:26:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6090","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996190-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"12:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.03,"7.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 19:26:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6091","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996022-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"10:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.6,"1.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 17:27:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5910250-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"11:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 18:33:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6093","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996100-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"12:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.755,"0.755","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 19:01:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6094","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4995075-0314-LAB","Sample-Routine","WATER",NA,2022-03-14,"09:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.86,"2.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-14 16:29:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997675-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"11:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 18:07:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6096","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4917712-1108-LAB","Sample-Routine","WATER",NA,2021-11-08,"14:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.52,"7.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-08 21:47:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6097","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995575-1012-LAB","Sample-Routine","WATER",NA,2021-10-12,"14:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.601,"0.601","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-12 21:48:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-09-01,"09:20:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4900430",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.67,"0.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-01 16:20:00,NA,"MANTUA RES AB DAM 01 Replicate of 4900440","Lake","Replicate of 4900440","16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-15,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4930009",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-15 19:55:00,NA,"Clean Lakes equipment blank Vertigrator","Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6100","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996410-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.689,"0.689","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 17:10:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6101","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996680-0104-LAB","Sample-Routine","WATER",NA,2022-01-04,"13:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.421,"0.421","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-04 20:12:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6102","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996100-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"13:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.805,"0.805","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 20:58:00,NA,"HOBBLE CK AT I-15 BDG 3MI S OF PROVO","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.77,"3.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 17:15:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926370-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"08:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926370",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.185,"0.185","Numeric","MG/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 15:56:00,NA,"CHALK CK EAST FK AB CNFL/ CHALK CK","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"6105","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996550-1013-LAB","Sample-Routine","WATER",NA,2021-10-13,"09:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",23,"23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-13 16:32:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6106","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995222-1012-LAB","Sample-Routine","WATER",NA,2021-10-12,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-12 17:40:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6107","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995467-0216-LAB","Sample-Routine","WATER",NA,2022-02-16,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995467",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.22,"2.22","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-02-16 20:20:00,NA,"Beer Creek at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6108","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-5919860-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-5919860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.66,"2.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 21:00:00,NA,"Beer Creek at 6400 S Road","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1144010000","-111.7929820000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C","Quality Control Sample-Field Replicate","WATER",NA,2021-07-13,"10:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917320",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.713,"0.713","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 17:10:00,NA,"UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-08-18,"09:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4937140",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.816,"0.816","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-18 16:10:00,NA,"PELICAN LAKE 02 E MIDLAKE","Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6111","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996560-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"11:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",19.7,"19.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 18:12:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6112","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4995222-0104-LAB","Sample-Routine","WATER",NA,2022-01-04,"10:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.05,"4.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-04 17:34:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-24-C","Sample-Routine","WATER",NA,2021-11-04,"11:35:00","MST",NA,NA,NA,8,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-17,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-11-04 18:35:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-26-C","Sample-Routine","WATER",NA,2021-10-13,"10:16:00","MST",NA,NA,NA,13,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-10-25,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-13 17:16:00,NA,"STARVATION RES AB DAM 01","Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211208-4995730-1208-4-C","Sample-Routine","WATER",NA,2021-12-08,"10:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-08 17:03:00,NA,"SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908350-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908350",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.427,"0.427","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 18:40:00,NA,"BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926380-0812-4-C","Sample-Routine","WATER",NA,2021-08-12,"08:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"305","Division of Water Quality","UTAHDWQ_WQX-4926380",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.246,"0.246","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-12 15:38:00,NA,"CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND","River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Non-Point Source (NPS) Monitoring","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA +"6118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220330-4995640-0330-4-C","Sample-Routine","WATER",NA,2022-03-30,"09:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-30 16:12:00,NA,"DIAMOND FK CK AB SPANISH FK R AT US6 89 XING","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0269000000","-111.5040800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6119","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996022-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"12:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.31,"2.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 19:18:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6120","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996022-0413-LAB","Sample-Routine","WATER",NA,2022-04-13,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.23,"3.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-13 22:20:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6121","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996570-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"08:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.99,"1.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 15:53:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6122","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995575-0607-LAB","Sample-Routine","WATER",NA,2022-06-07,"15:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.379,"0.379","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-07 22:19:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-2-C","Sample-Routine","WATER",NA,2021-10-21,"09:43:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 16:43:00,NA,"DEER CREEK RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6124","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996570-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"09:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996570",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.92,"1.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 16:11:00,NA,"MILLRACE CK AB PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996850-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"13:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 20:50:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5913460-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"13:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 20:18:00,NA,"MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6127","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995075-0607-LAB","Sample-Routine","WATER",NA,2022-06-07,"09:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995075",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.85,"2.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-07 16:54:00,NA,"Lindon Drain at Utah Lake Inlet","Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-26-C","Sample-Routine","WATER",NA,2021-10-20,"10:04:00","MST",NA,NA,NA,10,"m",NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-20 17:04:00,NA,"JORDANELLE RES AB DAM 01","Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5910302-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"11:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 18:44:00,NA,"London Ditch at US 40 Xing","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5910250-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 19:10:00,NA,"PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-07-13,"11:10:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-4917770",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.709,"0.709","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-13 18:10:00,NA,"UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY","Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996780-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"14:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 21:29:00,NA,"PROVO RIVER AT MURDOCK DIVERSION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6133","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996020-0511-LAB","Sample-Routine","WATER",NA,2022-05-11,"10:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.67,"2.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-11 17:41:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0928-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-28,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-29 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C","Sample-Routine","WATER",NA,2021-08-24,"11:05:00","MST",NA,NA,NA,2.95,"m",NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4920460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",0.571,"0.571","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-24 18:05:00,NA,"WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03","Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-2-C","Sample-Routine","WATER",NA,2021-10-21,"10:53:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-01,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-21 17:53:00,NA,"DEER CREEK RES UPPER END 03","Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4996830-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"13:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 20:03:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997675-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"11:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 18:14:00,NA,"Big Dutch Pete Stream bl Mayflower in Jordanelle State Park","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905670-0720-4-C","Sample-Routine","WATER",NA,2021-07-20,"15:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905670",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",1.11,"1.11","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-20 22:55:00,NA,"LITTLE BEAR R BL WHITE TROUT FARM AT CR XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6140","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996022-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"12:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 19:29:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0810-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-08-10,"16:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900753",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-10 23:10:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 2","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6142","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996680-0510-LAB","Sample-Routine","WATER",NA,2022-05-10,"13:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996680",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.31,"0.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-05-10 20:09:00,NA,"PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6143","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996022-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"12:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996022",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3,"3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 19:59:00,NA,"Dry Creek AB Spanish Fork Discharge Confl","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6144","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996566-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"11:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996566",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.69,"7.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 18:07:00,NA,"PROVO STATION 6-WLA","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908697-0719-4-C","Sample-Routine","WATER",NA,2021-07-19,"12:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4908697",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.232,"0.232","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-19 19:05:00,NA,"Big Creek 0.25 mile above gaging station at road xing","River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6146","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995575-0413-LAB","Sample-Routine","WATER",NA,2022-04-13,"12:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.9,"0.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-13 19:33:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5910273-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"11:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 18:36:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996850-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 20:45:00,NA,"N FK PROVO R AB CNFL / PROVO R AT WILDWOOD","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6149","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995210-0712-LAB","Sample-Routine","WATER",NA,2022-07-12,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995210",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",11.2,"11.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-12 18:46:00,NA,"Powell Slough WMA North Outfall to Utah Lake","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6150","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996410-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"09:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.97,"0.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 16:48:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6151","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996275-0105-LAB","Sample-Routine","WATER",NA,2022-01-05,"11:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996275",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.2,"5.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-01-05 18:41:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6152","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996020-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"12:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.97,"8.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 19:49:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6153","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996020-0608-LAB","Sample-Routine","WATER",NA,2022-06-08,"14:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996020",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.37,"6.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-06-08 21:04:00,NA,"SPANISH FORK WWTP","Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6154","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995043-0712-LAB","Sample-Routine","WATER",NA,2022-07-12,"09:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.93,"3.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-12 16:37:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6155","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996550-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"09:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996550",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",16.6,"16.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 16:17:00,NA,"MILLRACE CK BL PROVO WWTP","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6156","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996410-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"12:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.869,"0.869","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 19:04:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6157","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996560-0316-LAB","Sample-Routine","WATER",NA,2022-03-16,"09:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",28,"28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-16 16:02:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0922-4-C","Quality Control Sample-Equipment Blank","WATER",NA,2021-09-22,"17:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4900751",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","TOTAL",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-23 00:00:00,NA,"EQUIPMENT BLANK Bear River Watershed Crew 1","River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6159","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995575-0712-LAB","Sample-Routine","WATER",NA,2022-07-12,"14:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)","Below Reporting Limit","NITRATE","TOTAL",NA,NA,"ND or NA",NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-12 21:44:00,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996830-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"13:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 20:59:00,NA,"LOWER S FK PROVO R AT GAGING STATIION","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996870-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"13:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 20:43:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6162","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4917712-0712-LAB","Sample-Routine","WATER",NA,2022-07-12,"15:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4917712",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.69,"2.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-12 22:18:00,NA,"Unnamed flow at 4000 West @ mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905640-0823-4-C","Sample-Routine","WATER",NA,2021-08-23,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4905640",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.963,"0.963","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-23 21:55:00,NA,"WELLSVILLE CK AB CNFL/ LITTLE BEAR R","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996870-1027-4-C","Sample-Routine","WATER",NA,2021-10-27,"13:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-11-08,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-10-27 20:29:00,NA,"LITTLE DEER CK AB CNFL / PROVO RIVER","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6165","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996003-1110-LAB","Sample-Routine","WATER",NA,2021-11-10,"10:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996003",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.71,"2.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-10 17:33:00,NA,"Dry Creek Below Spanish Fork Discharge","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C","Sample-Routine","WATER",NA,2021-08-26,"08:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",3.48,"3.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-08-26 15:35:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5910273-1207-4-C","Sample-Routine","WATER",NA,2021-12-07,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2021-12-20,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2021-12-07 18:46:00,NA,"London Ditch @ 1200 North Heber","Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6168","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996410-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996410",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.664,"0.664","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 16:47:00,NA,"IRONTON CANAL AB KUHNIS BYPRODUCTS","Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6169","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995043-1012-LAB","Sample-Routine","WATER",NA,2021-10-12,"09:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.13,"8.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-10-12 16:23:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C","Sample-Routine","WATER",NA,2021-09-14,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4996275",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",9.58,"9.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-14 19:00:00,NA,"Spring Creek at I-15 Frontage Road","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6171","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994952-0314-LAB","Sample-Routine","WATER",NA,2022-03-14,"08:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994952",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.39,"2.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-03-14 15:26:00,NA,"Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6172","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995222-1108-LAB","Sample-Routine","WATER",NA,2021-11-08,"10:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995222",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.7,"3.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-08 17:39:00,NA,"Creek at Vineyard","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4998400-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"09:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 16:58:00,NA,"PROVO R AB WOODLAND AT USGS GAGE NO.10154200","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C","Sample-Integrated Vertical Profile","WATER",NA,2021-09-08,"11:50:00","MST",NA,NA,NA,NA,NA,NA,0,"m",2,"m","302","Division of Water Quality","UTAHDWQ_WQX-5907780",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.749,"0.749","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-08 18:50:00,NA,"WHITNEY RES AB DAM 01","Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6175","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995043-0411-LAB","Sample-Routine","WATER",NA,2022-04-11,"09:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995043",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.81,"6.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-04-11 16:07:00,NA,"Timpanogos WWTP at Utah Lake mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6176","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996190-0713-LAB","Sample-Routine","WATER",NA,2022-07-13,"10:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996190",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.17,"8.17","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2022-07-13 17:03:00,NA,"SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE","River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5913460-0228-4-C","Sample-Routine","WATER",NA,2022-02-28,"12:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-03-11,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-02-28 19:44:00,NA,"MAIN CK AB DEER CK RES AT US 189 XING","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6178","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996560-1109-LAB","Sample-Routine","WATER",NA,2021-11-09,"12:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4996560",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",24.2,"24.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",2021-11-09 19:48:00,NA,"PROVO WWTP","Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5913210-0329-4-C","Sample-Routine","WATER",NA,2022-03-29,"13:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"306","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)","Not Detected","NITROGEN","DISSOLVED",NA,NA,"ND or NA","MG/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,"Chem-Tech Ford",2022-04-12,NA,"Lower Reporting Limit",1,1,"Numeric","MG/L",NA,"STORET",2022-03-29 20:37:00,NA,"PROVO RIVER BL DEER CREEK RES","River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Cooperative Monitoring","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA +"6180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904870-0928-4-C","Sample-Routine","WATER",NA,2021-09-28,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4904870",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","TOTAL",0.3,"0.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-09-28 18:28:00,NA,"HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING","River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C","Sample-Routine","WATER",NA,2021-07-26,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"302","Division of Water Quality","UTAHDWQ_WQX-4994270",NA,NA,NA,NA,"DWQ-001","UTAHDWQ_WQX","Water Grab Sampling","Miscellaneous (Other)",NA,"NITROGEN","DISSOLVED",3.85,"3.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"Lower Reporting Limit",0.2,0.2,"Numeric","MG/L",NA,"STORET",2021-07-26 17:15:00,NA,"JORDAN R AT 9000 S XING","River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Targeted","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA +"6182","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991810-0624-LAB","Sample-Routine","WATER",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",17.8,"17.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6183","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994270-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.04,"4.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6184","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992540-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.65,"1.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6185","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991800-0624-LAB","Sample-Routine","WATER",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.74,"4.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6186","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992320-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.33,"7.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6187","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990790-0902-LAB","Sample-Routine","WATER",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.93,"5.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6188","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4990780-0520-LAB","Sample-Routine","WATER",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10,"10","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6189","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992880-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.37,"2.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6190","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4990890-0520-LAB","Sample-Routine","WATER",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.77,"3.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6191","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4993580-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6192","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992320-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.18,"7.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6193","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991800-0722-LAB","Sample-Routine","WATER",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.77,"4.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6194","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992480-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",11.6,"11.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6195","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991860-0520-LAB","Sample-Routine","WATER",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.66,"3.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6196","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4990770-0520-LAB","Sample-Routine","WATER",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.63,"3.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6197","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994170-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.81,"3.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6198","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991940-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.63,"3.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6199","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992480-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",14.2,"14.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6200","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992070-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.02,"6.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6201","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992950-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.471,"0.471","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6202","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992950-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.13,"0.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6203","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992320-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.12,"5.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6204","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992540-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.14,"1.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6205","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991900-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.03,"6.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6206","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994600-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6207","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992500-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",20.9,"20.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6208","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992540-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.55,"1.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6209","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991810-0722-LAB","Sample-Routine","WATER",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.7,"12.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6210","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992290-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.12,"5.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6211","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994160-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.75,"8.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6212","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992070-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.71,"4.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6213","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994730-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.214,"0.214","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6214","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992500-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",17.4,"17.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6215","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994100-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5,"5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6216","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991900-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.73,"5.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6217","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994270-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.12,"4.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6218","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991900-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.59,"4.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6219","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992290-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.21,"8.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6220","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992500-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",15.4,"15.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6221","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994600-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.16,"1.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6222","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992500-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",17.5,"17.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6223","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994730-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.105,"0.105","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6224","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994100-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.53,"3.53","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6225","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994600-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.875,"0.875","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6226","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994160-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.87,"6.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6227","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991860-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.1,"6.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6228","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994600-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6229","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992480-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6230","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992880-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.87,"3.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6231","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992070-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.87,"5.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6232","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991940-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.78,"4.78","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6233","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992540-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.52,"1.52","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6234","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991800-0902-LAB","Sample-Routine","WATER",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.36,"5.36","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6235","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994600-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.25,"1.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6236","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992950-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.125,"0.125","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6237","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991290-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.83,"5.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6238","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992540-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.51,"1.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6239","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994100-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.14,"6.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6240","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992320-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.91,"5.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6241","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991820-0520-LAB","Sample-Routine","WATER",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.55,"3.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6242","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992950-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.287,"0.287","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6243","ADVENTURESCIENTISTS","Adventure Scientists(Volunteer)*","ADVENTURESCIENTISTS-5868d02d-2c40-42eb-82b9-9b8fb856d739-39.11.110.11","Field Msr/Obs","WATER",NA,2021-06-06,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS-WSR-1",NA,"ADVENTURESCIENTISTS-39.11.110.11",NA,NA,NA,NA,NA,NA,NA,"Water Bottle",NA,"NITRATE","NONE",0.3502,"0.3502","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"LAB ANALYSIS","ADVENTURESCIENTISTS","RMRS LAB",NA,"SR 099",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Green Wild and Scenic River-39.11.110.11","River/Stream",NA,"14060008",NA,NA,NA,NA,"39.1146823000","-110.1090854000",NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UNKNOWN","Wild and Scenic Rivers","Adventure Scientists' Wild and Scenic Rivers project",NA,NA,NA,NA,NA +"6244","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4990780-0121-LAB","Sample-Routine","WATER",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6245","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992290-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.77,"5.77","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6246","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994600-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6247","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992500-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",16.4,"16.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6248","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992070-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.09,"5.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6249","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994160-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.05,"8.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6250","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992290-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.2,"6.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6251","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991290-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.94,"4.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6252","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992480-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",18,"18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6253","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991860-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.97,"7.97","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6254","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991820-1216-LAB","Sample-Routine","WATER",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.6,"5.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6255","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4993580-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.489,"0.489","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6256","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994170-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.98,"2.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6257","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994270-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.85,"3.85","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6258","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990770-0902-LAB","Sample-Routine","WATER",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.54,"6.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6259","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991900-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.79,"6.79","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6260","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991940-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.68,"6.68","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6261","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991810-0923-LAB","Sample-Routine","WATER",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",15.8,"15.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6262","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992950-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.62,"0.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6263","ADVENTURESCIENTISTS","Adventure Scientists(Volunteer)*","ADVENTURESCIENTISTS-16af0477-56b0-449e-9e64-cc758c44bb37-39.11.110.11","Field Msr/Obs","WATER",NA,2021-06-06,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS-WSR-1",NA,"ADVENTURESCIENTISTS-39.11.110.11",NA,NA,NA,NA,NA,NA,NA,"Water Bottle",NA,"NITRATE","NONE",0.3636,"0.3636","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"LAB ANALYSIS","ADVENTURESCIENTISTS","RMRS LAB",NA,"SR 098",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Green Wild and Scenic River-39.11.110.11","River/Stream",NA,"14060008",NA,NA,NA,NA,"39.1146823000","-110.1090854000",NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UNKNOWN","Wild and Scenic Rivers","Adventure Scientists' Wild and Scenic Rivers project",NA,NA,NA,NA,NA +"6264","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4993580-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.32,"1.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6265","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4990780-0325-LAB","Sample-Routine","WATER",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.4,"3.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6266","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991800-0923-LAB","Sample-Routine","WATER",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.84,"4.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6267","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991820-0902-LAB","Sample-Routine","WATER",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.06,"5.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6268","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4993580-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.931,"0.931","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6269","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990790-0923-LAB","Sample-Routine","WATER",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.7,"5.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6270","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991900-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.37,"7.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6271","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994270-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.98,"3.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6272","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991940-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.66,"4.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6273","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994100-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.47,"3.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6274","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4990770-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.82,"7.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6275","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994100-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.61,"3.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6276","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991290-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.44,"5.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6277","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994160-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.16,"8.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6278","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991800-0121-LAB","Sample-Routine","WATER",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.99,"7.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6279","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992070-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.89,"6.89","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6280","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4990890-0624-LAB","Sample-Routine","WATER",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5,"5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6281","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4993580-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.65,"0.65","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6282","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4990790-0624-LAB","Sample-Routine","WATER",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.76,"5.76","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6283","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992070-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.56,"3.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6284","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992480-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",17.1,"17.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6285","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991900-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.72,"4.72","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6286","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991860-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.02,"7.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6287","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4990790-1118-LAB","Sample-Routine","WATER",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.2,"7.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6288","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992500-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",17.5,"17.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6289","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991940-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.86,"6.86","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6290","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994600-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6291","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991900-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.66,"4.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6292","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991290-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.6,"6.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6293","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994160-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",11.1,"11.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6294","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991860-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.73,"5.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6295","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4993580-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.138,"0.138","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6296","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994730-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.01,"1.01","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6297","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991810-1021-LAB","Sample-Routine","WATER",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",15.7,"15.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6298","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4993580-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.102,"0.102","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6299","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991860-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.21,"5.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6300","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991820-0325-LAB","Sample-Routine","WATER",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.24,"5.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6301","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992290-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.21,"7.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6302","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991940-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.99,"5.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6303","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991860-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.93,"5.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6304","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994790-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Utah Lake","River/Stream",NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6305","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992880-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.49,"4.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6306","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994170-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.18,"4.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6307","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994160-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.33,"8.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6308","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992880-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.98,"3.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6309","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992320-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.81,"6.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6310","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994160-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",11.1,"11.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6311","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994270-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.1,"4.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6312","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991290-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6313","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994270-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.08,"3.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6314","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994730-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.9,"0.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6315","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994730-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.34,"0.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6316","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991900-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.08,"5.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6317","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991900-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.33,"4.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6318","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992070-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.3,"4.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6319","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4990890-1216-LAB","Sample-Routine","WATER",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.15,"5.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6320","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994160-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.08,"9.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6321","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4990770-1118-LAB","Sample-Routine","WATER",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.67,"9.67","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6322","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4990890-0121-LAB","Sample-Routine","WATER",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.13,"7.13","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6323","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991290-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.45,"8.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6324","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994100-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.21,"6.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6325","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992950-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.9,"0.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6326","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4990890-1118-LAB","Sample-Routine","WATER",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.59,"7.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6327","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991940-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.56,"5.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6328","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991800-1021-LAB","Sample-Routine","WATER",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.62,"5.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6329","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994790-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.074,"0.074","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Utah Lake","River/Stream",NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6330","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994730-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.138,"0.138","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6331","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992290-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.4,"6.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6332","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4990780-0624-LAB","Sample-Routine","WATER",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",13.3,"13.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6333","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990890-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.6,"4.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6334","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992880-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.6,"2.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6335","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991810-0422-LAB","Sample-Routine","WATER",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",15.4,"15.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6336","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991290-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.91,"4.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6337","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992320-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.84,"6.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6338","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4993580-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.04,"1.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6339","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994270-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.8,"4.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6340","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994600-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6341","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992950-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6342","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994170-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.8,"3.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6343","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4990890-0325-LAB","Sample-Routine","WATER",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.18,"6.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6344","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994790-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Utah Lake","River/Stream",NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6345","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992320-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.93,"5.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6346","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4990770-0225-LAB","Sample-Routine","WATER",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.66,"6.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6347","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991290-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.2,"6.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6348","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992950-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.617,"0.617","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6349","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992950-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.437,"0.437","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6350","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992540-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.31,"1.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6351","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991810-0225-LAB","Sample-Routine","WATER",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.04,"8.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6352","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991820-0224-LAB","Sample-Routine","WATER",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.6,"7.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6353","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991860-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.1,"5.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6354","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991290-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.9,"4.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6355","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991290-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.3,"5.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6356","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994270-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.21,"3.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6357","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992540-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.25,"2.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6358","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994600-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6359","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992950-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.8,"0.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6360","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4993580-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.2,"1.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6361","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4990790-0127-LAB","Sample-Routine","WATER",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.3,"5.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6362","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990770-0923-LAB","Sample-Routine","WATER",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.09,"5.09","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6363","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991900-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.46,"5.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6364","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4990770-0722-LAB","Sample-Routine","WATER",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.51,"4.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6365","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991800-0224-LAB","Sample-Routine","WATER",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.5,"7.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6366","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992950-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.242,"0.242","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6367","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992320-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6368","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4990780-0422-LAB","Sample-Routine","WATER",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.7,"10.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6369","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992290-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.3,"6.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6370","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991940-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.32,"4.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6371","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992540-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6372","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4990770-0324-LAB","Sample-Routine","WATER",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.1,"4.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6373","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991800-0127-LAB","Sample-Routine","WATER",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.1,"6.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6374","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992880-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.9,"3.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6375","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994160-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.9,"9.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6376","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992290-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.75,"9.75","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6377","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994600-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.6,"1.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6378","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992540-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.43,"1.43","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6379","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4990790-0520-LAB","Sample-Routine","WATER",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.73,"4.73","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6380","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4990890-0224-LAB","Sample-Routine","WATER",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.6,"8.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6381","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4993580-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.93,"1.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6382","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4990890-0225-LAB","Sample-Routine","WATER",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.83,"7.83","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6383","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992480-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.2,"12.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6384","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992880-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.54,"3.54","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6385","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992540-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.93,"1.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6386","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991860-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.3,"5.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6387","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4990770-0121-LAB","Sample-Routine","WATER",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.94,"6.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6388","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991800-1118-LAB","Sample-Routine","WATER",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.61,"7.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6389","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994170-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.62,"1.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6390","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994170-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.15,"4.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6391","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992500-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",21.1,"21.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6392","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991820-0624-LAB","Sample-Routine","WATER",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.1,"6.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6393","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4990780-0127-LAB","Sample-Routine","WATER",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.6,"8.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6394","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992880-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.82,"1.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6395","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4990790-0121-LAB","Sample-Routine","WATER",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.96,"7.96","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6396","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994100-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.46,"4.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6397","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994100-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.55,"5.55","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6398","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994730-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6399","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994100-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.2,"7.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6400","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994170-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.4,"4.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6401","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992540-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2,"2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6402","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991940-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.04,"5.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6403","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992500-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",15.5,"15.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6404","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4990890-0422-LAB","Sample-Routine","WATER",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.99,"4.99","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6405","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991900-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.4,"5.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6406","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991820-0225-LAB","Sample-Routine","WATER",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.21,"7.21","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6407","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994730-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.7,"0.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6408","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994790-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Utah Lake","River/Stream",NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6409","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992880-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.81,"4.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6410","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990780-0902-LAB","Sample-Routine","WATER",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.8,"8.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6411","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991940-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6,"6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6412","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992950-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.6,"0.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6413","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994170-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.1,"3.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6414","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991810-1216-LAB","Sample-Routine","WATER",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6415","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992320-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.02,"9.02","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6416","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991820-0923-LAB","Sample-Routine","WATER",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.37,"4.37","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6417","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992290-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.14,"6.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6418","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991860-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7,"7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6419","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992070-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.4,"5.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6420","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992880-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.61,"3.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6421","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994270-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.2,"3.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6422","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992290-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.51,"6.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6423","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991800-0422-LAB","Sample-Routine","WATER",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.1,"6.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6424","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994160-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.1,"8.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6425","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994170-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.48,"2.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6426","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4990790-1216-LAB","Sample-Routine","WATER",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.31,"6.31","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6427","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994160-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.06,"4.06","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6428","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992480-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",16.9,"16.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6429","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995575-0817-LAB","Sample-Routine","WATER",NA,2021-08-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4995575",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.269,"0.269","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,"Timpanogos Special Service District",NA,NA,"Minimum Reporting Level",0.23,0.23,"Numeric","MG/L",NA,"STORET",NA,NA,"Spanish Fork River at mouth","River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6430","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991290-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.69,"4.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6431","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991810-0324-LAB","Sample-Routine","WATER",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6432","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994730-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.936,"0.936","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6433","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992070-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.8,"3.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6434","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992320-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.3,"8.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6435","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992480-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",18.5,"18.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6436","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991800-0520-LAB","Sample-Routine","WATER",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.98,"3.98","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6437","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992880-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.3,"3.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6438","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991820-0324-LAB","Sample-Routine","WATER",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.4,"3.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6439","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991860-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.47,"6.47","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6440","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994100-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.5,"5.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6441","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992540-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.9,"1.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6442","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991940-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.34,"5.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6443","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992070-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.46,"7.46","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6444","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992290-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.5,"5.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6445","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994170-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.92,"1.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6446","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992480-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",19.7,"19.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6447","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992480-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",15.1,"15.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6448","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992320-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.2,"6.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6449","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4990780-0722-LAB","Sample-Routine","WATER",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.12,"3.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6450","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4993580-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6451","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4990770-0127-LAB","Sample-Routine","WATER",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.9,"4.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6452","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991800-0324-LAB","Sample-Routine","WATER",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.8,"3.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6453","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4990890-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.1,"5.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6454","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4993580-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.9,"0.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6455","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994730-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6456","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992480-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",13.5,"13.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6457","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992320-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.1,"7.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6458","ADVENTURESCIENTISTS","Adventure Scientists(Volunteer)*","ADVENTURESCIENTISTS-631e5ad4-caea-4dd8-a8cc-db34a0f8216c-38.52.109.99","Field Msr/Obs","WATER",NA,2021-05-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS-WSR-1",NA,"ADVENTURESCIENTISTS-38.52.109.99",NA,NA,NA,NA,NA,NA,NA,"Water Bottle",NA,"NITRATE","NONE",0.344,"0.344","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"LAB ANALYSIS","ADVENTURESCIENTISTS","RMRS LAB",NA,"SR 091",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Green Wild and Scenic River-38.52.109.99","River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5242627000","-109.9945675000",NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UNKNOWN","Wild and Scenic Rivers","Adventure Scientists' Wild and Scenic Rivers project",NA,NA,NA,NA,NA +"6459","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4990780-0324-LAB","Sample-Routine","WATER",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.4,"7.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6460","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4990790-0325-LAB","Sample-Routine","WATER",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.16,"5.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6461","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994730-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6462","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994100-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5,"5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6463","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4990780-0224-LAB","Sample-Routine","WATER",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.3,"6.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6464","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992540-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.7,"1.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6465","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990890-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.18,"5.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6466","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992500-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",14.1,"14.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6467","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992480-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",13.8,"13.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6468","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991810-0127-LAB","Sample-Routine","WATER",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",16,"16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6469","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992500-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",18.5,"18.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6470","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992950-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.5,"0.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6471","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991940-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.3,"4.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6472","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4990790-0722-LAB","Sample-Routine","WATER",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.33,"5.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6473","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994270-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.87,"3.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6474","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4990790-0324-LAB","Sample-Routine","WATER",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.4,"3.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6475","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991900-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.4,"4.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6476","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994160-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.4,"7.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6477","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994730-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.1,"0.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6478","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991290-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.9,"5.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6479","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994600-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.9,"0.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6480","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991940-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.5,"5.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6481","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992880-0323-LAB","Sample-Routine","WATER",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.3,"4.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6482","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994170-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.71,"2.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6483","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991820-0121-LAB","Sample-Routine","WATER",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.25,"8.25","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6484","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4990790-0224-LAB","Sample-Routine","WATER",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.9,"6.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6485","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994270-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.92,"2.92","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6486","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992070-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.04,"5.04","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6487","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992500-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",15.4,"15.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6488","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994790-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.1,"0.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Utah Lake","River/Stream",NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6489","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4993580-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.427,"0.427","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6490","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994600-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.93,"1.93","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6491","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991900-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.8,"5.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6492","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992070-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.03,"7.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6493","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994600-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.855,"0.855","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6494","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994160-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.45,"8.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6495","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994600-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.39,"1.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6496","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4993580-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6497","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994170-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.87,"2.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6498","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991820-0428-LAB","Sample-Routine","WATER",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.3,"5.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6499","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992540-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.59,"1.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6500","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992880-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.49,"1.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6501","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994100-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.2,"5.2","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6502","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992480-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.3,"12.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6503","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992950-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6504","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992320-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.3,"7.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6505","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994170-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.12,"3.12","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6506","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991860-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.38,"5.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6507","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994170-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.7,"2.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6508","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994270-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.1,"3.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6509","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991900-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.8,"4.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6510","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4990890-0324-LAB","Sample-Routine","WATER",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.5,"4.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6511","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992480-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",14.5,"14.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6512","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992290-0519-LAB","Sample-Routine","WATER",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.23,"4.23","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6513","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992500-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",16.6,"16.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6514","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992070-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.5,"4.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6515","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991800-0225-LAB","Sample-Routine","WATER",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.49,"6.49","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6516","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4990790-0422-LAB","Sample-Routine","WATER",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.44,"6.44","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6517","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994730-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.331,"0.331","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6518","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991860-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.24,"7.24","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6519","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991820-1021-LAB","Sample-Routine","WATER",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.18,"5.18","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6520","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994100-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.03,"5.03","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6521","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992320-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.14,"6.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6522","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4993580-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.937,"0.937","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6523","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994160-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8,"8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6524","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994160-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.91,"8.91","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6525","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991820-0422-LAB","Sample-Routine","WATER",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.16,"5.16","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6526","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992320-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",10.5,"10.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6527","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4990770-1216-LAB","Sample-Routine","WATER",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.48,"7.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6528","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994790-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.1,"0.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Utah Lake","River/Stream",NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6529","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992950-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.679,"0.679","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6530","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992500-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",11.9,"11.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6531","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991290-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.58,"7.58","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6532","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991810-1118-LAB","Sample-Routine","WATER",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.3,"12.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6533","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4990790-0225-LAB","Sample-Routine","WATER",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.61,"7.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6534","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991820-1118-LAB","Sample-Routine","WATER",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.32,"7.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6535","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990780-0923-LAB","Sample-Routine","WATER",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.62,"8.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6536","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992290-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.3,"6.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6537","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991810-0224-LAB","Sample-Routine","WATER",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",14.6,"14.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6538","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992480-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",14.5,"14.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6539","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992880-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.9,"2.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6540","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4990780-1118-LAB","Sample-Routine","WATER",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9.14,"9.14","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6541","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991940-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.69,"4.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6542","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994600-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.5,"1.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6543","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4990890-0722-LAB","Sample-Routine","WATER",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.39,"4.39","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6544","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991810-0325-LAB","Sample-Routine","WATER",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",13.3,"13.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6545","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994270-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.05,"4.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6546","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991290-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.7,"6.7","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6547","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4990790-1021-LAB","Sample-Routine","WATER",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.62,"0.62","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6548","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994100-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.45,"6.45","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6549","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992290-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.33,"6.33","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6550","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4990790-0428-LAB","Sample-Routine","WATER",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.6,"5.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Above SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6551","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991860-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.4,"5.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6552","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4990780-0225-LAB","Sample-Routine","WATER",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.71,"7.71","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6553","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4990770-0224-LAB","Sample-Routine","WATER",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.6,"6.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6554","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992320-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992320",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.64,"7.64","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"2100 S Above Diversion","River/Stream",NA,NA,NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6555","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992950-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992950",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.626,"0.626","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Big Cottonwood at Confluence","River/Stream",NA,NA,NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6556","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994170-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.38,"3.38","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6557","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992540-0126-LAB","Sample-Routine","WATER",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.3,"1.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6558","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991800-0325-LAB","Sample-Routine","WATER",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.69,"5.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6559","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4990780-0428-LAB","Sample-Routine","WATER",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",8.3,"8.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6560","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991810-0902-LAB","Sample-Routine","WATER",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.9,"12.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6561","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4990770-0428-LAB","Sample-Routine","WATER",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.6,"4.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6562","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991820-0127-LAB","Sample-Routine","WATER",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.8,"5.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6563","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994100-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.4,"4.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6564","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991940-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.3,"4.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6565","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991900-0120-LAB","Sample-Routine","WATER",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.69,"6.69","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6566","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991800-0428-LAB","Sample-Routine","WATER",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.5,"5.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6567","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994730-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.4,"1.4","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6568","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991810-0428-LAB","Sample-Routine","WATER",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",15.3,"15.3","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6569","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992500-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",21.1,"21.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6570","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991810-0520-LAB","Sample-Routine","WATER",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.8,"12.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6571","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994730-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.5,"0.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6572","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992070-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.1,"0.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6573","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991820-0722-LAB","Sample-Routine","WATER",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991820",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.94,"4.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Center Street","River/Stream",NA,NA,NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6574","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992880-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.1,"3.1","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6575","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994160-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994160",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.66,"7.66","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"South Valley WWTP","River/Stream",NA,NA,NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6576","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992880-0922-LAB","Sample-Routine","WATER",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992880",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.08,"2.08","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"3300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6577","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4993580-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4993580",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.6,"0.6","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Little Cottonwood Creek","River/Stream",NA,NA,NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6578","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994270-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.63,"3.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6579","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991290-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.56,"3.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6580","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994270-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",2.59,"2.59","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6581","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991860-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.81,"7.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6582","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992070-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.32,"5.32","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6583","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4990780-1216-LAB","Sample-Routine","WATER",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.87,"7.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6584","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994790-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994790",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.05,"0.05","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Utah Lake","River/Stream",NA,NA,NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6585","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994270-0721-LAB","Sample-Routine","WATER",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994270",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.56,"3.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"9000 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6586","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991940-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991940",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.74,"5.74","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6587","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992480-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992480",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.56,"1.56","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Below CVWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6588","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992540-0427-LAB","Sample-Routine","WATER",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992540",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.8,"0.8","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Mill Creek Above CV at 300 W","River/Stream",NA,NA,NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6589","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4990890-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990890",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.48,"3.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Burnham 1000 ft above","River/Stream",NA,NA,NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6590","ADVENTURESCIENTISTS","Adventure Scientists(Volunteer)*","ADVENTURESCIENTISTS-f2d680ef-dfe5-4b9b-b0e8-0d14d2d62221-39.11.110.11","Field Msr/Obs","WATER",NA,2021-02-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS-WSR-1",NA,"ADVENTURESCIENTISTS-39.11.110.11",NA,NA,NA,NA,NA,NA,NA,"Water Bottle",NA,"NITRATE","NONE",0.3356,"0.3356","Numeric","MG/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"LAB ANALYSIS","ADVENTURESCIENTISTS","RMRS LAB",NA,"SR 080",NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Green Wild and Scenic River-39.11.110.11","River/Stream",NA,"14060008",NA,NA,NA,NA,"39.1146823000","-110.1090854000",NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UNKNOWN","Wild and Scenic Rivers","Adventure Scientists' Wild and Scenic Rivers project",NA,NA,NA,NA,NA +"6591","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992290-0421-LAB","Sample-Routine","WATER",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.15,"6.15","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6592","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991860-0623-LAB","Sample-Routine","WATER",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991860",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.81,"7.81","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1800 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6593","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992500-1020-LAB","Sample-Routine","WATER",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",16.9,"16.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6594","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991290-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.28,"6.28","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Surplus Canal @ Airport","River/Stream",NA,NA,NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6595","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992290-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992290",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.63,"6.63","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1700 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6596","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991900-0520-LAB","Sample-Routine","WATER",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991900",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.19,"4.19","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"300 N","River/Stream",NA,NA,NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6597","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4990770-1021-LAB","Sample-Routine","WATER",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",7.34,"7.34","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6598","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991800-1216-LAB","Sample-Routine","WATER",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991800",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.48,"5.48","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Legacy","River/Stream",NA,NA,NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6599","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4990770-0325-LAB","Sample-Routine","WATER",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",4.87,"4.87","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6600","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994730-0224-LAB","Sample-Routine","WATER",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994730",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",0.984,"0.984","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Narrows","River/Stream",NA,NA,NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6601","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4990770-0422-LAB","Sample-Routine","WATER",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990770",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.61,"5.61","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"State Canal Below SDSD","River/Stream",NA,NA,NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6602","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994600-0901-LAB","Sample-Routine","WATER",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994600",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",1.51,"1.51","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"14600 S (Bluffdale Road)","River/Stream",NA,NA,NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6603","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992500-0223-LAB","Sample-Routine","WATER",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992500",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",27.5,"27.5","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"Central Valley WWRF","River/Stream",NA,NA,NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6604","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992070-1215-LAB","Sample-Routine","WATER",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4992070",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",5.84,"5.84","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"1300 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6605","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994170-0324-LAB","Sample-Routine","WATER",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994170",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",3.82,"3.82","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"7800 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6606","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991810-0121-LAB","Sample-Routine","WATER",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4991810",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",12.9,"12.9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD South Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6607","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994100-1117-LAB","Sample-Routine","WATER",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4994100",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",6.94,"6.94","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"6400 S","River/Stream",NA,NA,NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA +"6608","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4990780-1021-LAB","Sample-Routine","WATER",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC",NA,"WFWQC_UT-4990780",NA,NA,NA,NA,"WFWQC-01","WFWQC_UT","Water Grab Sample","Water Sampler (Other)",NA,"NITRATE","TOTAL",9,"9","Numeric","MG/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography","https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,NA,"STORET",NA,NA,"SDSD North Plant","River/Stream",NA,NA,NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","HARN",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS N","Wasatch Front Water Quality Council","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA diff --git a/vignettes/WQPDataHarmonization.Rmd b/vignettes/WQPDataHarmonization.Rmd index 3548f527..ab7263e1 100644 --- a/vignettes/WQPDataHarmonization.Rmd +++ b/vignettes/WQPDataHarmonization.Rmd @@ -5,18 +5,17 @@ date: "May 1, 2022" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{WQP Data Harmonization} - %\VignetteEncoding{UTF-8} %\VignetteEngine{knitr::rmarkdown} + %\usepackage[utf8]{inputenc} + editor_options: chunk_output_type: console --- ```{r setup, include = FALSE} -#This code is used to build (knit) an HTML vignette knitr::opts_chunk$set( collapse = TRUE, - comment = "#>", - echo = TRUE + comment = "#>" ) ``` @@ -24,9 +23,9 @@ knitr::opts_chunk$set( Install and load dependency packages. Current versions of TADA and dataRetrieval can be installed from GitHub instead of CRAN. -```{r, echo = FALSE} +```{r, results = 'hide', message = FALSE, warning = FALSE} list.of.packages <- c("plyr","dplyr","ggplot2","RColorBrewer","Rcpp","devtools", - "data.table","grDevices","magrittr","stringr","testthat","usethis","utils","stats","rmarkdown","knitr","remotes") + "data.table","grDevices","magrittr","stringr","testthat","usethis","utils","stats","rmarkdown","knitr","remotes", "tidyverse", "lubridate", "dplyr") new.packages <- list.of.packages[!(list.of.packages %in% installed.packages()[,"Package"])] if(length(new.packages)) install.packages(new.packages) @@ -47,9 +46,12 @@ library(stats) library(rmarkdown) library(knitr) library(devtools) +library(tidyverse) +library(lubridate) +library(dplyr) remotes::install_github("USGS-R/dataRetrieval", dependencies=TRUE) -remotes::install_github("USEPA/TADA") +remotes::install_github("USEPA/TADA", dependencies=TRUE) library(dataRetrieval) library(TADA) @@ -73,11 +75,24 @@ Water Quality Portal downloads have the same columns each time, but be aware tha In this vignette, we will walk through some of the things to look for when deciding to use different organizations data from the WQP. -```{r, echo = FALSE} +Tips on the WQP (https://www.waterqualitydata.us/) data retrieval filters: + +statecode +startDatee +countycode +siteid +siteType +CharacteristicName +ActivityMediaName +endDate + +Tip 1) All the query filters for the WQP work as an AND but within the fields there are ORs. So for example, characteristics – if you choose pH & DO – it’s an OR. Similarly, if you choose VA and IL, it’s an OR. But the combo of fields are ANDs, such as State/VA AND Characteristic/DO". "Characteristic" and "Characteristic Type" on the WQP also work as an AND. +Tip 2) The "siteid" is a general term WQP uses to describe both Site IDs from USGS databases and Monitoring Location Identifiers (from the Water Quality Portal). Each monitoring location in the Water Quality Portal (WQP) has a unique Monitoring Location Identifier, regardless of the database from which it derives. The Monitoring Location Identifier from the WQP is the concatenated Organization Identifier plus the Site ID number. Site IDs that only include a number are only unique identifiers for monitoring locations within USGS NWIS or EPA's WQX databases separately. + +```{r} #You can edit this to define your own WQP query inputs below -TADAProfile <- TADAdataRetrieval(statecode = "UT", - characteristicName = c("Ammonia", "Nitrate", "Nitrogen"), - startDate = "01-01-2021") + +TADAProfile <- TADAdataRetrieval(statecode = "UT", characteristicName = c("Ammonia", "Nitrate", "Nitrogen"), startDate = "01-01-2021") #Alternatively, use the data.table::fread function to read in a web service call for any WQP profile. new_fullphyschem <- data.table::fread("https://www.waterqualitydata.us/data/Result/search?countrycode=US&statecode=US%3A49&siteid=UTAHDWQ_WQX-4925610&startDateLo=01-01-2015&startDateHi=12-31-2016&mimeType=csv&zip=no&sorted=yes&dataProfile=fullPhysChem&providers=NWIS&providers=STEWARDS&providers=STORET") @@ -86,7 +101,7 @@ new_fullphyschem <- data.table::fread("https://www.waterqualitydata.us/data/Resu Review all column names in the TADA Profile ```{r} -colnames(new_fullphyschem) +colnames(TADAProfile) ``` ## Depth unit conversions @@ -223,7 +238,7 @@ Here is a list of other fields to review: 2. **MeasureQualifierCode** Contains information about data flags 3. Other codes may designate suspect data or other flags which may be described in detail in **ResultLaboratoryCommentText** or another column -```{r} +```{r, fig.width=6, fig.height=2, fig.fullwidth=TRUE} FilterFieldReview("ActivityTypeCode", TADAProfileClean13) ``` @@ -237,7 +252,7 @@ We've completed our review of the ActivityTypeCode field. Let's move on to a different field and see if there are any values that we want to remove -- we'll look at the values in the ResultStatusIdentifier field. -```{r} +```{r, fig.width=6, fig.height=2, fig.fullwidth=TRUE} FilterFieldReview("ActivityMediaSubdivisionName", TADAProfileClean14) ``` @@ -267,7 +282,7 @@ Selecting a parameter generates the list below, which is subset by the selected Then choose a field from the list. In this example we'll remove certain values from the HydrologicEvent field. -```{r} +```{r, fig.width=6, fig.height=2, fig.fullwidth=TRUE} FilterParFieldReview("HydrologicEvent", TADAProfileClean15, "NITROGEN") ``` @@ -285,7 +300,7 @@ current working directory when download = TRUE, the default is download = FALSE. The HarmonizeData function then compares the input dataset to the TADA Harmonization Reference Table. The purpose of the function is to make similar data consistent and therefore easier to compare and analyze. Optional outputs include: 1) the dataset with Harmonization columns appended, 2) the datset with CharacteristicName, ResultSampleFractionText, MethodSpecificationName, and ResultMeasure.MeasureUnitCode converted to TADA standards or 3) the four fields converted with most Harmonization Reference Table columns appended. Default is transform = TRUE and flag = TRUE. Here are some examples of how the HarmonizeData function can be used: -1. **ResultSampleFractionText** specifies forms of constituents. In some cases, a single **CharacteristicName** will have both "Total" and "Dissolved" forms specified, which should not be combined. In these cases, each CharacteristicName and ResultSampleFractionText combination is given a different identier. This identifer can be used later on to identify comparable data groups for calculating statistics and creating figures for each combination. +1. **ResultSampleFractionText** specifies forms of constituents. In some cases, a single **CharacteristicName** will have both "Total" and "Dissolved" forms specified, which should not be combined. In these cases, each CharacteristicName and ResultSampleFractionText combination is given a different identifier. This identifier can be used later on to identify comparable data groups for calculating statistics and creating figures for each combination. 2. Some variables have different names but represent the same constituent (e.g., "Total Kjeldahl nitrogen (Organic N & NH3)" and "Kjeldahl nitrogen"). The HarmonizeData function gives a consistent name (and identifier) to synonyms. ```{r}